@charset "utf-8";
/*
theme Name: ORIGINAL
Author: Plusers
Description: original theme
version： 2.0.0
*/

/*cssのリセット
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
*/
/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}

body {
  /*フォントの指定*/
  font-family: 'YuGothic','游ゴシック','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic ProN',sans-serif;
  /*行間の指定*/
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #333;
  font-weight: bold;
  margin-top: 100px;/*ヘッダーと同じ高さのマージンを追加*/
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1,h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:visited{
  text-decoration: none;
}

a:hover{
  color: #24a569;
}

figcaption{
  text-align: center;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
/*ヘッダーメニュー*/

nav{
 width: 100%;
 height: 80px;
 position: relative;
 background: #018994;
 padding-top: 15px;
}

nav a{
   color: #ffffff;
}

.gnavi{
    list-style: none;
}

.gnavi li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
}


/*===================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#ffffff;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#ffffff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 80px;
 padding: 0 1em;
}

/*トグル部分*/
.navbar_toggle{
 z-index:9999;
}

.navbar_toggle_icon {
 position: relative;
 display: block;
 height: 2px;
 width: 30px;
 background: #ffffff;
 -webkit-transition: ease .5s;
 transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
 top: 0;
}

.navbar_toggle_icon:nth-child(2) {
 margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
 top: 0;
}
/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
 top: 10px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
 top: -10px;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

/*ナビゲーション部分*/
.h_menu{
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
 -webkit-transition:ease .5s;
 transition:ease .5s;
 z-index:1000;
}

.h_menu ul li{
 padding: 2em;
 border-bottom: 1px solid #CCC;
 background: #ffffff;
}

.h_menu ul li a{
  color: #000000;
}

/*OPEN時の動き*/
.h_menu.open {
 -webkit-transform:translateX(0);
 transform:translateX(0);
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}

/*パンくずリスト*/
.breadcrumbs{
  padding: 10px 0;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.breadcrumbs a{
  color: #000000;
  border-bottom-style: solid;
  border-bottom-color: #018994;
  border-bottom-width: 1px;
}

.breadcrumbs ul{
  padding: 0;
  margin: 0;
}

.breadcrumbs li{
  display: inline;
}

.breadcrumbs li::after{
  content: '>';
  display: inline-block;
  padding: 0 10px; /*左右に余白*/
}

.breadcrumbs li:last-child::after{
  display: none;
}

.tl1-top{
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 300%;
    line-height: 1;
    text-align: center;
}

.tl1 {
  margin-top: 100px;
  margin-bottom: 50px;
  font-size: 300%;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
}

.tl1:before,.tl1:after{
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #444444;
  display: block;
}

.tl1::before{
  margin-right: .4em;
}

.tl1:after{
  margin-left: .4em;
}

img {
  max-width: 100%;
  height: auto;
}

/*料金プラン*/
.items {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.items .item {
  width: 30%;
}


/*業務内容*/

.flex-container{
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
  flex-wrap: wrap;
  align-content: space-around;
  list-style: none;
  padding-left: 0;
}

.flex-container img {
  width: 30%;
}


.menu-list{
  background-image: url("images/m_bg1.png");
  background-repeat: no-repeat;
  background-position: center;
  width:225px;
  height: 345px;
}

.menu-list:nth-child(2){
  background-image: url("images/m_bg2.png");
}

.menu-list:nth-child(3){
  background-image: url("images/m_bg3.png");
}

.menu-list:nth-child(4){
  background-image: url("images/m_bg4.png");
}

.menu-list:hover{
  opacity: 0.7 ;
}

.flex-text{
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  color: #fff;
  letter-spacing: 0.4rem;
  text-align: center;
  font-size: 30px;
  padding-top: 150px;
}

.flex-text2{
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  color: #fff;
  letter-spacing: 0.4rem;
  text-align: center;
  font-size: 30px;
  padding-top: 130px;
}

.flex-text3{
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  color: #fff;
  letter-spacing: 0.4rem;
  text-align: center;
  font-size: 30px;
  padding-top: 110px;
}

.textarea{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 20px;
  line-height: 2;
}

.movie{
  margin-top: 50px;
}

.btnarea{
  margin: 100px auto 150px auto;
  text-align: center;
}

.btn{
  font-size:110%;
  color: #000000;
  padding: 20px 100px;
  text-decoration: none;
  background-color: #ffffff;
  border: solid;
}

/*ご相談・お見積書ボックス*/
.toi-box{
  max-width: 1000px;
  margin: 50px auto;
  border: solid;
  border-width: 2px;
  padding: 0 20px 20px 20px;
}

.tl2{
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 300%;
  line-height: 1;
  text-align: center;
}

.marker_line {
  background: linear-gradient(transparent 70%, #f5ab31 0%);
}

.marker_line02 {
  background: linear-gradient(transparent 70%, #00ccff 0%);
}

.toi-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
  margin-top: 20px;
  }

.toi-item{
  width: 30%;
  height: 110px;
  background: #24a569;
  text-align: center;
  color: #ffffff;
  font-size: 110%;
  padding-top: 10px;
}

.toi-item:nth-of-type(2){
  background: #ddd949;
  color: #000000;
}

.toi-item p{
  text-align: center;
  font-size:80%;
  margin-top: 5px;
}

.toi-btn{
  width: 80%;
  color:#24a569;
  background-color: #ffffff;
  text-align: center;
  margin: 10px auto;
  padding: 10px;
}

.toi-btn a{
  color: #000000;
}

.toi-btn2{
  width: 80%;
  color:#000000;
  background-color: #ffffff;
  text-align: center;
  margin: 10px auto 0;
  padding: 10px;
}

.toi-btn2 a{
  color: #000000;
}

.toi-btn3{
  width: 80%;
  color:#000000;
  background-color: #ffffff;
  text-align: center;
  margin: 10px auto 0;
  padding: 10px;
}

.toi-btn3 a{
  color: #000000;
}

header{
  background-color: #018994;
  position: fixed;/*ヘッダーを固定*/
  z-index: 9999;/*一番前に表示されるように設定*/
  top: 0;/*画面一番上で固定*/
  width: 100%;/*ヘッダーが横幅いっぱいになるように指定*/
  transition: all .3s ease;
}

.container{
  width: 100%;
  background-color: #f9f8f4;
}

/*コンテンツのサイズ指定*/
.header-inner{
  box-sizing: border-box;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #018994;
  height: 100px;
  position: relative;
}

.container-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0;
  background-color: #f9f8f4;
}

.container:after {
  display: block;
  clear: both;
  content: '';
}

.contents {
  width: 900px;
  padding: 15px;
  background-color: #ffffff;
}

.contents_s {
  width: 900px;
  padding: 15px;
  background-color: #ffffff;
}

.content{
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.sidebar {
  width: 250px;
  height: auto !important;
  background-color: #ffffff;
  padding: 15px;
}

.footer {
  background-color: #018994;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 1.25rem;
}

.footer-inner {
  box-sizing: border-box;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding: 1.25rem 0;
  background-color: #018994;
}

.footer-address{
  display: flex;
}

.address-box{
  width: 50%;
}

.address-box p{
  color: #ffffff;
}

.line{
  border-bottom: solid;
  border-bottom-color: #ffffff;
  margin: 20px 0;
}

.list-name{
  display: inline-block;
  width: 165px;
  box-sizing: border-box;
  padding: 5px 8px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background-color: #24a569;
}

.list-text{
  display: inline-block;
  padding: 5px 8px;
}

.select-text{
  display: inline-block;
  padding: 5px 8px;
}



/*フッターメニュー*/
.foot-wrap .menu-left, .menu-center, .menu-right {
    display: inline-block;
    width: 30%;
    margin-right: auto;
    margin-left: auto;
}

.foot-wrap ul {
    list-style: none;
    padding: 0;
    line-height:40px;
}

.foot-wrap {
    color: #ffffff;
    text-align: center;
}

.foot-wrap a {
    text-decoration: none;
    color: #ffffff;
}
.foot-wrap a:hover {
    color: #008;
}

.footer-nav,
.copyright {
  text-align: center;
}

.footer-nav {
  font-size: 0;
  margin-bottom: 3rem;
}

.footer-nav li {
  font-size: 1rem;
  display: inline-block;
  margin-right: 1.5rem;
}

.footer-nav li a {
  text-decoration: none;
  color: #fff;
}

.footer-nav li a:hover {
  opacity: .6;
}

.address-box p a {
    color: #ffffff;
}

.copyright{
  margin-top: 20px;
}

.copyright p {
  font-size: 1rem;
  color: #fff;
}
.sidebar-wrapper {
  margin-bottom: 0.5rem;
}

.sidebar-title {
  font-size: 1.1rem;
  box-sizing: border-box;
  margin: 0 0 1.2rem;
  padding: .5rem;
  color: #000;
  border-bottom: 4px solid #03162f;
}

.sidebar-inner{
  position: -webkit-sticky; /* Safari対応 */
  position: sticky;
  top: 50px;
}

.sekou-menu-title{
  font-size: 1.1rem;
  box-sizing: border-box;
  margin: 0 0 1.2rem;
  padding: .5rem;
  color: #000;
  border-bottom: 4px solid #03162f;
}

ul.sekou-menu{
  margin-bottom: 20px;
}

.sekou-menu-list{
  line-height: 2rem;
}

.sekou-menu-list a{
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding: 1.3rem;
  color: #333;
}

/*メニューウィジェット*/
.widget_nav_menu li{
  line-height: 2rem;
}

.widget_nav_menu li a {
font-size: 1rem;
font-weight: bold;
position: relative;
padding: 1.3rem;
color: #333;
}

.widget_nav_menu li a::before {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
top: 50%;
left: 0;
content: '\f105';
transform: translateY(-50%);
color: #03162f;
}


  /* アイキャッチ画像のサイズを設定 */
  #pageTitleImage img {
      width:100%;
      height:auto;
  }


th{
  text-align: left;
  color: #ffffff;
  background-color: #24a569;
  line-height: 3.5rem;
  padding: 10px;
  width: 20%;
  border-style: solid;
  border-color: #f5f5f5;
  border-width: 2px;
}

td{
  border-style: solid;
  border-color: #f5f5f5;
  border-width: 2px;
  padding: 10px;
}

/*Q&A*/
.wp-block-coblocks-accordion-item__title{
  font-size: 16px;
  line-height:2.5;
  text-decoration: underline;
  }

.wp-block-coblocks-accordion-item__content{
  padding: 40px 0;
  }

/*問い合わせ・見積依頼*/

/*Contact Form 7カスタマイズ*/
/************************************
** 入力フォーム（Form）
************************************/
input[type="text"],
input[type="url"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #333;
  /*display: block;*/
  font-size: 16px;
  line-height: 1.42857;
  padding: 6px 12px;
  -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-form p{
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 80%;
}

.inquiry{
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

/*見出し欄*/
.inquiry th{
 text-align:left;
 font-size:14px;
 color:#444;
 padding-right:5px;
 width:30%;
 background:#f7f7f7;
 border:solid 1px #d7d7d7;
}
/*通常欄*/
.inquiry td{
 font-size:13px;
 border:solid 1px #d7d7d7;
}
/*横の行とテーブル全体*/
.entry-content .inquiry tr,.entry-content table{
 border:solid 1px #d7d7d7;
}
/*必須の調整*/
.haveto{
 font-size:7px;
 padding:5px;
 background:#e72726;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*任意の調整*/
.any{
 font-size:7px;
 padding:5px;
 background:#1b2e6e;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item{
 display:block;
}
/*送信ボタンのデザイン変更*/
#formbtn{
 display: block;
 padding:1em 0;
 margin:30px auto 0;
 width:250px;
 background:#24a569;
 color:#fff;
 font-size:18px;
 font-weight:bold;
 border-radius:2px;
 border: none;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover{
 background:#f5f5f5;
 color:#24a569;
}

/*投稿ページ*/
.sekou-title{
  display:  flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.sekou-ti{
  line-height: 2.5rem;
  color: #24a569;
  border-style: solid;
  border-color: #24a569;
  border-width: 2px;
  font-size:18px;
  text-align: center;
 }

.sekou-image{
  display:  flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

}

.sekou-im{
  width: 350px;
}

.sekou-im:nth-of-type(1){
  width:150px;
  margin-right: 200px;
  margin-bottom: 20px;
}

.sekou-im:nth-of-type(2){
  width:150px;
  margin-right: 200px;
  margin-bottom: 20px;
}

.sekou-im:nth-of-type(4){
  width: 40px;
  margin: 0 30px;
}

.sekou-h1{
  font-size: 18px;
  color: #ffffff;
  background: #24a569;
  line-height: 2.5rem;
  margin-top: 40px;
  margin-bottom: 30px;
  padding-left: 10px;
}

.sekou-details{
  display: flex;
  flex-wrap: wrap;
}

.sekou-dt{
  width: 15%;
  background: #eca636;
  line-height:2.5rem;
  padding-left: 10px;
  margin-bottom: 10px;
}

.sekou-dt:nth-child(even) {
  width: 70%;
  background: #ffffff;
}

.sekou-state{
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
}

.sekou-st{
  width: 30%;
  text-align: center;
  margin-bottom: 10px;
}

.sekou-st:nth-child(4){
  margin-bottom:30px;
}

.sekou-st:nth-child(5){
  margin-bottom:30px;
}

.sekou-st:nth-child(6){
  margin-bottom:30px;
}

.category li a{
  background: #018994;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px;
}

.pagenavi{
  width: 250px;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  margin: 100px auto;
}

.prev-link{
  width: 100px;
  height: 35px;
  text-align: center;
  padding-top: 15px;
  background: #24a569;
}

.next-link{
  width: 100px;
  height: 35px;
  text-align: center;
  padding-top: 15px;
  background: #24a569;
}

.pagenavi a{
  color: #ffffff;
}

.pagenavi a:visited{
  color: #ffffff;
}

.item-title{
  color: #018994;
  font-size:24px;
  text-align:center;
  margin-bottom: 50px;
}

.item-title2{
  color: #018994;
  font-size:24px;
  text-align:center;
  margin-bottom: 20px;
}

.item-img{
  display: inline-block;
  position: relative;
}

.item-img:after{
  position: absolute;
  content: "";
  box-shadow: 0 15px 10px rgba(0,0,0, .5); /* シャドウ */
  transform: rotate(3deg); /* 回転させる */
  right: 5px;
  left: auto;
  top: auto;
  bottom: 15px;
  z-index: -1;
  width: 50%;
  height: 20%;
}

.flex-notice{
  display: flex;
  width:70%;
  margin: 20px auto;
  flex-wrap: wrap;
  height: 200px;
}

.flex-nt:nth-child(odd){
  width:30%;
}

.flex-nt:nth-child(even){
  width:70%;
}

/*施工一覧ページ*/
.sekou-container{
  width: 90%;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin-right: auto;
  margin-left: auto;
}

.list-box{
  margin-bottom: 20px;
  box-shadow: 5px 2px 5px #ccc;
}


.list-box h2{
  font-size: 18px;
  margin: 20px;
  text-align: center;
}

.list-box h2 a{
  color: #000000;
}

.list-box h2 a:hover{
  color: #24a569;
}

.post-categories li{
  font-size: 80%;
  padding: 5px;
  float: left;
}

/*料金プラン*/
.plan-box{
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.plan-item{
  width: 48%;
}

.plan-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f5f5f5;
}

.plan-details p{
  width: 28%;
  margin: 10px;
}

.plan-details p:nth-child(4){
  font-size: 150%;
  margin-top: 0;
}

.plan-details p:nth-child(5){
  font-size: 150%;
  margin-top: 0;
}

.plan-details p:nth-child(6){
  font-size: 150%;
  margin-top: 0;
}

.tl3 {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 250%;
  line-height: 1;
  text-align: center;
  border-bottom-style: solid;
  border-bottom-width: 5px;
  border-bottom-color: #f5ab31;
}

.plan-text{
  text-align: center;
  font-size:200%;
  color: #018994;
  margin-top: 80px;
}

.t-plan{
  width: 100%;
}

.t-plan th{
  width: 30%;
  text-align: center;
  line-height: 0.5rem;
  border: none;
  background: #f5ab31;
}

.t-plan td{
  width: 70%;
  text-align: right;
}

/*フェードイン表示*/
.fade{
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*ページネーション*/
.pagination{
  margin-top: 50px;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 900px;
}
.pagination li {
  margin: 5px;
}
.page-numbers {
  border: 2px solid;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}
.page-numbers:hover {
  color: #ffffff;
  background-color: #24a569;
  border-color: #000000;
}
.page-numbers.current {
  color: #fff;
  background-color: #24a569;
  border-color: #000000;
}


/* 事例ページ三角 */
.pc { display: block !important; }
.sp { display: none !important; }

/*見積シミュレーション*/
label{
  font-size: 18px;
  padding-left: 10px;
}

.area_title{
  font-size:24px;
  border-bottom: solid 1pt;
  margin-left: 10px;
  padding-left: 10px;
}

.side_title{
  font-size: 18px;
  text-align: center;
  background-color: #24a569;
  color: #ffffff;
}

.area_title-s{
  font-size:16px;
  border-bottom: solid 1pt;
  margin-top:20px;
}

.simimage{
  margin-top: 50px;
  text-align: center;
}

.flex-info{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

.info-item{
  width:50%;
  text-indent: 1em;
}

.info-itemtext{
  width:50%;
  text-align: right;
}

.total_title{
  font-size:16px;
  margin-top:30px;
}

.total{
  text-align: right;
  font-size: 22px;
  border-bottom: solid 2pt;
  margin: 20px 0;
}

.t01{
  background-image: url("../t-style/images/t_01.png");
}

.open_paint{
  margin-top: 10px;
  font-size: 15px;
  text-indent: 1em;
}

.paint_label{
  line-height: 80px;
}

.ul_text{
  margin-left: 20px;
}

/*　ランディングページ　*/
.container-lp{
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.area-lp{
  width: 1200px;
  margin: 10px auto;
}

.flex-partsbox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}

.parts-item{
  width: 30%;
}

.parts-text{
  text-align: center;
  font-size: 22px;
}

.image_top{
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.lp-text{
  font-size: 18pt;
  margin-top: 50px;
}

.lp-h2{
  width: 1000px;
  font-size: 18pt;
  margin: 50px auto;
}

.lp-h3{
  font-size: 40px;
  text-align: center;
}

.flex-pont{
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
}

.point-item{
  width: 45%;
  font-size: 14pt;
}

.point-text{
  padding-left: 20px;
}

.lp-flow{
  font-size: 20pt;
  width: 1000px;
  color: #ffffff;
  background-color: #018994;
  margin: 30px auto;
  line-height: 2;
  text-indent: 1em;
  }

.lp-title{
  font-size: 40px;
  text-align: center;
  margin: 30px auto;
  color: #ffffff;
  background-color: #24a569;
  }

.lp-sekouh{
  color: #ffffff;
  background-color: #018994;
  padding: 5px 10px;
}

.lp-sekout{
  width: 1000px;
  font-size: 22pt;
  margin:30px auto;
  background-image: url("../t-style/images/lp-image16.png");
  background-repeat: no-repeat;
  line-height: 80px;
  padding-left: 20px;
}

.flex-sekou{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sekou-item:nth-child(odd){
  background-color: #eca636;
  width: 25%;
  padding-left: 10px;
  margin-bottom: 5px;
}

.sekou-item:nth-child(even){
  width: 65%;
  padding-left: 10px;
}

.flex-qa{
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  font-size: 22px;
  margin: 0 auto;
}

.qa-itemq{
  width: 10%;
  text-align: center;
  font-size: 30px;
  color: #018994;
}

.qa-itema{
  width: 10%;
  text-align: center;
  font-size: 30px;
  color: #eca636;
}

.qa-itemt{
  width: 90%;
  margin-bottom: 40px;
  padding-top: 6px;
}

.qa-itemta{
  width: 90%;
  margin-bottom: 60px;
  padding-top: 6px;
}

/*----タブレット用(ipad横)------------*/
@media(max-width: 1024px) {

.flex-container{
    width:741px;
}

.contents_s {
  width: 741px;
}

.toi-btn2{
  font-size: 15px;
}

.toi-item p{
  font-size: 12px;
}

.menu-list{
  width:185.25px;
}

.flex-text{
  font-size: 24px;
}

.flex-text2{
  font-size: 25px;
}

.flex-text3{
  font-size: 25px;
}

.sekou-im{
  width: 320px;
}

.sekou-im:nth-of-type(2){
  margin-right: 165px;
}


}

/*----レスポンシブメニュー------------*/

@media screen and (min-width: 1024px) {
nav{
 display: flex;
 flex-direction: row;
}

.navbar_toggle{
 display: none;
}

.h_menu{
 width: 100%;
 -webkit-transform: translateX(0);
 transform: translateX(0);
}

.h_menu ul{
 height: 80px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}

.h_menu ul li{
 padding: 0 1em;
 border-bottom: none;
 background: none;
}

.h_menu ul li a{
  color: #ffffff;
}

.header-inner{
  padding: 0 15px;
}

.br-pc{
  display:none;
}

.pc_none{
  display:none!important;
}

}

/*----タブレット用（横)------------*/
@media(max-width: 1024px) {
  .plan-details p {
    width: 27%;
  }

  .area-lp{
    width: 100%;
  }

  .container-lp{
    width: 100%;
    overflow:hidden;
  }

  .flex-partsbox{
    width: 100%;
  }

  .flex-partsbox{
    width: 100%;
  }

  .flex-pont{
    width: 100%;
  }

  .lp-h2{
    width: 100%;
  }

  .lp-flow{
    width: 100%;
  }

  .lp-sekout{
    width: 100%;
  }

  .flex-qa{
    width: 100%;
  }

  .point_text_2{
    font-size: 20px;
  }

}

/*----タブレット用------------*/
@media(max-width: 800px) {
  .sidebar {
    width: 100%;
    margin-right: 0;
  }

  .container-inner {
    width: 100%;
    flex-direction: column;
  }

  .contents {
      width: 90%;
      margin: 0 auto;
      padding: 15px 10px;
      margin-bottom: 1rem;
  }

  .contents_s {
    width: 90%;
    margin: 0 auto;
    padding: 15px 10px;
    margin-bottom: 1rem;
  }

  .content{
      width: 100%;
    }

  .site-title a img {
    height: 40px;
  }

  .flex-container {
      width: 691.19px;
  }

  .menu-list {
    width: 172.79px;
  }

 .footer-nav {
   margin-bottom: 1.5rem;
 }

 .footer-nav ul {
   text-align: left;
 }

.footer-nav li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 1rem;
  }
.footer-nav li:nth-of-type(2n) {
  margin-right: 0;
}

.toi-btn2 {
    font-size: 11px;
  }

.toi-item p {
    font-size: 10px;
  }

.sekou-im{
  width: 290px;
}

.sekou-im:nth-of-type(2){
  margin-right: 136px;
}

.sp_none{
  display:none!important;
}

.pc_none{
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
  background-color: #ffffff;
}

.sidebar{
  width: 680px;
  margin: 0px auto;
}

.plan-details p {
  width: 26%;
}

}


/*------スマートフォン用--------*/
@media(max-width: 600px) {
  html {
    font-size: 15px;
  }

.sidebar{
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
}

  .header-inner,
  .container,
  .footer-inner {
    padding: 0;
  }

.container-inner {
  width: 100%;
  flex-direction: column;
}

.contents {
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
}

.contents_s {
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
}

.content{
  width: 100%;
}

.items {
		flex-direction: column;
  }

.items .item {
    width: 100%;
  }

.flex-container{
  width: 100%;
  flex-direction: column;
}

.toi-container{
  flex-direction: column;
}

.toi-item{
  width: 100%;
}

.tl1-top {
  font-size: 200%;
}

.tl2{
  font-size: 150%;
  margin-bottom: 10px;
}

.flex-notice{
  width: 100%;
}

.site-title-wrap {
  text-align: center;
}

/*業務内容*/
.menu-list{
  background-image: url("images/mb_bg1.png");
  background-repeat: no-repeat;
  background-position: center;
  width:100%;
  height:150px;
}

.menu-list:nth-child(2){
  background-image: url("images/mb_bg2.png");
}

.menu-list:nth-child(3){
  background-image: url("images/mb_bg3.png");
}

.menu-list:nth-child(4){
  background-image: url("images/mb_bg4.png");
}

.flex-text{
  padding-top: 55px;
}

.flex-text2{
  padding-top: 35px;
}

.flex-text3{
  padding-top: 35px;
}

/*フッターメニュー*/
  .foot-wrap .menu-left, .menu-center, .menu-right {
     display: flex;
     flex-direction: column;
     width: 100%;
     margin: 0 auto;
 }

.footer-address{
  flex-direction: column;
}

.address-box{
  width: 100%;
  text-align: center;
}

 .foot-wrap .cpr {
     display: inline;
 }

 /*Contact Form 7カスタマイズ*/
 .inquiry th,.inquiry td {
  display:block!important;
  width:100%!important;
  border-top:none!important;
  -webkit-box-sizing:border-box!important;
  -moz-box-sizing:border-box!important;
  box-sizing:border-box!important;
 }
 .inquiry tr:first-child th{
  border-top:1px solid #d7d7d7!important;
 }
 /* 必須・任意のサイズ調整 */
 .inquiry .haveto,.inquiry .any {
 font-size:10px;
 }

.inquiry {
  width: 100%;
}

iframe{
  width: 100%;
}

/*料金プラン*/
.plan-box{
  width: 100%;
  flex-direction: column;
}

.plan-item{
  width: 100%;
}

.pagination ul {
  width: 100%;
}

.tl3{
  font-size: 220%;
}

/*施工一覧*/
.sekou-container{
  grid-template-columns: repeat(1, 1fr);
}

/*施工ページ*/
.sekou-title {
  flex-direction: column;
}

.sekou-image{
  flex-direction: column;
}

.sekou-im:nth-of-type(1){
  order:1;
}

.sekou-im:nth-of-type(2){
  order:4;
}

.sekou-im:nth-of-type(3){
  order:2;
}

.sekou-im:nth-of-type(4){
  order:3;
}

.sekou-im:nth-of-type(5){
  order:5;
}

.sekou-state {
  flex-direction: column;
}

.sekou-st{
  width: 100%;
}

.sekou-st:nth-of-type(1){
  order:1;
}

.sekou-st:nth-of-type(2){
  order:3;
}

.sekou-st:nth-of-type(3){
  order:5;
}

.sekou-st:nth-of-type(4){
  order:2;
}

.sekou-st:nth-of-type(5){
  order:4;
}

.sekou-st:nth-of-type(6){
  order:6;
}

.sekou-st:nth-of-type(7){
  order:7;
}

.sekou-st:nth-of-type(8){
  order:9;
}

.sekou-st:nth-of-type(9){
  order:11;
}

.sekou-st:nth-of-type(10){
  order:8;
}

.sekou-st:nth-of-type(11){
  order:10;
}

.sekou-st:nth-of-type(12){
  order:12;
}

.sekou-st:nth-of-type(13){
  order:13;
}

.sekou-st:nth-of-type(14){
  order:15;
}

.sekou-st:nth-of-type(15){
  order:17;
}

.sekou-st:nth-of-type(16){
  order:14;
}

.sekou-st:nth-of-type(17){
  order:16;
}

.sekou-st:nth-of-type(18){
  order:18;
}

.sekou-st:nth-of-type(19){
  order:19;
}

.sekou-st:nth-of-type(20){
  order:21;
}

.sekou-st:nth-of-type(21){
  order:23;
}

.sekou-st:nth-of-type(22){
  order:20;
}

.sekou-st:nth-of-type(23){
  order:22;
}

.sekou-st:nth-of-type(24){
  order:24;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

/*ランディングページ*/
.container-lp {
  max-width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

.flex-partsbox{
  max-width: 100%;
}

.flex-pont{
  max-width: 100%;
}

.parts-item{
  width: 45%;
}

.lp-h2{
  max-width: 100%;
  font-size: 14pt;
  margin: 30px auto;
}

.lp-h3{
  font-size: 16pt;
}

.br-sp{
  display: none;
}

.lp-flow{
  max-width: 100%;
  font-size: 16pt;
  text-indent: 0.5em;
  margin-top: 30px;
  margin-bottom: 10px;
}

.flex-pont{
  flex-direction: column;
}

.lp-sekout{
  max-width: 100%;
  font-size: 16pt;
}

.sekou-text{
  text-align: left;
}

.sekou-item{
  text-align: left;
}

.point-item{
  width: 100%;
  text-align: center;
}

.point-text{
  padding-left: 0;
  text-align: left;
}

.flex-qa{
  max-width: 100%;
}

.area-lp{
  max-width: 100%;
}

.image_top{
  margin-top: 30px;
}

.lp-title{
  font-size: 18pt;
}

.qa-itemt{
  font-size:16pt;
}

/*見積シミュレーション*/
.list-name{
  width: 295px;
}

select#year01 {
    width: 270px;
}

select#year02 {
    width: 270px;
}

select#year03 {
    width: 270px;
}

input#area {
    width: 230px;
}

input#area02 {
    width: 230px;
}

input#area03 {
    width: 230px;
}

.list-text{
  padding: 0px;
}

.paint_label{
  line-height: 50px;
}

label{
  font-size:17px;
}

.sp_none{
  display:none!important;
}

.pc_none{
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
  background-color: #ffffff;
}

.area_title{
    margin-left: 0px;
    padding-left: 5px;
}

.ul_text {
    margin-left: 0px;
}

}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
