/*
Theme Name: RDSGN ORIGINAL									
*/
/**********************************************
   SP版 CSS
**********************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.pc{
	display:none;
}

.w1100{
	margin:0 auto;

}
.w900{
	margin:0 auto;
}

.wave-border {
  display: block;
  width: 100%;
  height: 80px;
  margin-bottom: -1px; /* 隙間を潰す */
}

.wp-navi{
	margin:30px auto ;
	height:50px;
	text-align:center;
}

.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #BFBFBF;
	padding: 10px!important;
	margin: 2px;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color:#ffb3c8!important;
	background-color:#ffbbc2!important;
	color:#fff!important;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #afafaf!important;
	background-color:#afafaf!important;
	color:#fff!important;
}

/**************************************************************
全体
**************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
    color: #1d2d22;
    font-family: "Noto Sans JP",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.13;
}


/**************************************************************
リンク
**************************************************************/
a:link {
    color: #000;
    text-decoration: none;
	transition: 1.0s ;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}
/**************************************************************
アウトライン
**************************************************************/
#outline {
    margin: 0px auto;
    padding: 0px;
    width: 980px;
    background: #FFFFFF;
}
/**************************************************************
ヘッダー
**************************************************************/

.top-only-mv{
	position:relative;
	padding-top:50px;

}
.top-only-mv .mes {
	display:none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size:18px;
    color: #fff;
    border-radius:10px;
    line-height: 150%;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); */
    /* animation: bounceUp 1.2s ease-out 0.3s both; */
    width:80%;
	text-align:center;

}



#title {
	width:100%;
	top:0;
    margin: 0px;
    padding: 0px;
    text-align: left;
    position: fixed;
	z-index:9999;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        background-color: rgba(255, 255, 255, 0.9);
}
#title-inner {
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
	align-items: start;
}
#title-inner .logo {
	width:30%;

}
#title-inner .logo img {
	width:100%;
	height:auto;
	filter: drop-shadow(0 4px 4px rgba(0,0,0,.15));
}

#title-inner .set{
	margin-right:40px;
    display: flex;
    font-size: 15px;
    text-align: center;
    display:flex; 
    gap:5px; 
    flex-wrap: wrap;
    justify-content: flex-end;
}

#title-inner .set a{
	font-size:12px;
	font-weight:600;
    border-radius: 0 0 5px 5px;

}


#title-inner .set .ap{
	font-size:12px;
	line-height:110%;
}
#title-inner .set .ap a{
    display: block;
    padding: 8px;
    background-color: #000;
    color: #fff;
}

#title-inner .set .ap a:hover{
    background-color: #000;
}



#title-inner .set .pf{
	font-size:12px;
	line-height:110%;

}
#title-inner .set .pf a{
    display: block;
    padding: 8px;
    background-color: #000;
    color: #fff;
}

#title-inner .set .pf a:hover{
    background-color: #000;
}

.hamburger-menu{
  width: 100%;
  order: 3; 
  width: auto;
}




/**************************************************************
Humberger
**************************************************************/
.menu-btn {
        position: fixed;
        top: 3px;
        right: 4px;
        display: flex;
        height: 45px;
        width: 45px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        border-radius: 5px;
        z-index: 120;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #969696;
    position: absolute;
    transition: all 0.3s;
}

.menu-btn span::before {
    bottom: 8px;
}

.menu-btn span::after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}

/* アイコンがチェック時に変化する部分 */
#menu-btn-check:checked + label.menu-btn span {
    background-color: transparent;
}

#menu-btn-check:checked + label.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked + label.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニューの表示設定 */
.menu-content {
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #000;
    transition: left 0.5s ease; /* メニュー表示アニメーション */
	z-index:100;
	padding-top:40px;
}

.menu-content li{
	list-style:none;
}

/* チェック時にメニューが表示される */
#menu-btn-check:checked ~ .menu-content {
    left: 40%;
}

.menu-content a {
    padding: 5px 15px;
    display: block;
    border-bottom: dotted 1px #fff;
	color:#fff!important;
	display:flex;
}

.menu-content a img{
	width:20px;
	height:auto;
	margin-right:25px;
}

.menu-content h3 {
    font-size: 18px;
    padding-bottom: 5px;
    margin-top: 15px;
    color: #fff100;
    border-bottom: solid 2px #fff100;
    font-family: 'Rubik', sans-serif;
	margin-bottom:25px;
}


.bb-botan a{
	display:block;
	padding:10px;
	background-color:#ea4c48;
	color:#fff;
	font-size:13px;
	width:80%;
	margin:0 auto;
	margin-top:10px;
	border-bottom:none!important;
	border-radius:3px!important;
}

/**************************************************************

　　　　　　　　　　　　トップページ　

**************************************************************/

.top-report{
	padding:40px 20px;
	background-color:#f6f6f6;
}

.eng-midashi{
	text-align:center;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size:24px;
	line-height:100%;
	font-weight:600;
}
.jp-midashi{
	font-size:12px;
	font-weight:600;
	margin-bottom:15px;
	color:#dc5750;
	text-align:center;
}

/**************************************************************

　　　　　　　　　　　　トップカタログ

**************************************************************/

	.top-panf-tt{

		padding:15px;
	}
	.top-panf-tt h2{
		font-size:36px;
		color:#fddc0e;
		padding:15px 0;
	}
	.top-panf-tt h3{
		font-size:18px;
		color:#fff;
		padding:10px 0;
	}
	.top-panf-waku{

		margin:0 auto;
		padding:20px 0;
		display:flex;
		justify-content:space-between;
	}
	.top-panf-waku .box--o{
		width:31%;
		padding:10px;
	}
	.top-panf-waku .box--o img{
		width:100%;
		height:auto;
	}
	.top-panf-waku-outer{

	}
.slick-prev, .slick-next{
	color:#fff!important;
}

.slick-next{
	right:20px!important;
}
.slick-prev {
    left: 20px!important;
    z-index: 99!important;
}
.slick-dots{
    position: absolute;
    bottom: 0px!important;
}
.slick-dotted.slick-slider{
	margin-bottom:10px!important;
}

/**************************************************************

　　　　　　　   　　　TOP NEWS

**************************************************************/

.top-news{
	padding:40px 20px;
	background-color:#ffe2e7;
}
.top-n-flex{
	margin-top:10px;
	padding:0 20px;
}
.top-n-flex .mida{}

.top-n-flex .list{}

.top-n-flex .list ul{}
.top-n-flex .list ul li{
	font-size:14px;
	list-style:none;
	border-bottom:dashed 2px #fff;
	padding-bottom:8px;
	margin-top:8px;
	line-height:160%;
	
}

.top-n-flex .list ul li span{
	margin-right:45px;
	font-size:12px;
	color:#dc5750;
}


/**************************************************************

　　　　　　　　　　　TOP EVENT

**************************************************************/

.top-event{
	padding:40px 20px;
	background-image:url(../../../image/base/wave.svg);
	background-position:bottom;
	background-repeat:no-repeat;
}
.top-event-flex{}
.top-event-flex .mida{}
.top-event-flex .ev{}

.top-event-flex .ev .pic{
	padding:15px;
	margin-bottom:20px;
}

.top-event-flex .ev .pic img{
	width:100%;
	border-radius:10px;
	height:auto;
}
.top-event-flex .ev .info{

}
.top-event-flex .ev .info h3{
	border-bottom:solid 1px #ccc;
	padding-bottom:10px;
	font-size:18px;
	line-height:130%;
	margin-bottom:10px;
}
.top-event-flex .ev .info p{
	font-size:14px;
	padding:8px 0;
	border-bottom:dotted 1px #ccc;
}
.top-event-flex .ev .info .mes{
	font-size:14px;
	line-height:180%;
	margin-top:15px;
}

.botan-flex{
	display:flex;
	justify-content:center;
	gap:10px;
	font-size:12px;
	line-height:100%;
}
.botan-flex .detail a{
	padding:15px 10px;
	display:block;
	background-color:#626161;
	border-radius:5px;
	color:#fff;
}
.botan-flex .detail a:hover{
	background-color:#4c4646;
}
.botan-flex .apply{
	padding:0;
}

.botan-flex .apply a{
	padding:15px 10px;
	display:block;
	background-color:#f26f87;
	color:#fff;
	border-radius:5px;
}
.botan-flex .apply a:hover{
	background-color:#e94c68;
}

.top-event .botan-flex{
	padding:30px 0;
}
.apply h2{
	font-size:24px;
	text-align:center;
	margin-bottom:20px;

}
.apply p{
	font-size:14px;
	text-align:center;
}


/********************* TOP施工事例をタイル状に**********************/

/* 余白や見出しはお好みで */
.top-works { width: 100%;
padding:20px;}
.top-works-head { text-align: center; margin: 40px 0 20px; }

/* グリッド：12カラムを使って 3:3:3 / 6:6 に配置 */
.top-works-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;             /* タイルのすき間 */
  width: 100%;
	margin-bottom:50px;
	margin-top:45px;
}

/* タイル共通 */
.wbox .ph{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;     /* 比率は好みで。1/1にしたいなら 1/1 */
  overflow: hidden;
}
.ph-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .5s ease;
}

/* ホバーオーバーレイ（タイトル表示） */
.wbox .overlay{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
  opacity: 0; transition: opacity .3s ease;
}
.wbox .ttl{
  color:#fff; font-weight:700; font-size: clamp(14px, 2.2vw, 22px);
  padding: .4em .8em;
  text-align:center;
  line-height:1.4;
  text-shadow:
    1px 0 2px rgba(0,0,0,.9), -1px 0 2px rgba(0,0,0,.9),
    0 1px 2px rgba(0,0,0,.9),  0 -1px 2px rgba(0,0,0,.9);
  background: rgba(0,0,0,.15);
  border-radius: 6px;
}
.wbox:hover .overlay{ opacity: 1; }
.wbox:hover .ph-img{ transform: scale(1.05); }

/* ─ 配置（上段3・下段2） ─ */
.wbox.pos-1 { grid-column: 1 / span 4; }
.wbox.pos-2 { grid-column: 5 / span 4; }
.wbox.pos-3 { grid-column: 9 / span 4; }
.wbox.pos-4 { grid-column: 1 / span 6; }  /* 下段 左 */
.wbox.pos-5 { grid-column: 7 / span 6; }  /* 下段 右 */


/**************************************************************

　　　　　　　　　　　TOP Message

**************************************************************/

.top-message{
	padding:40px 20px;
	padding-bottom:50px;
	background-image:url(../../../image/TOP/mes-bg.webp);
	background-position:bottom;
	background-repeat:no-repeat;
	background-size:600%;
}
.top-message .mida{
	color:#fff;
}
.top-message h2{
	font-size:18px;
	color:#fff;
	text-align:center;
	margin-bottom:20px;
}
.top-message p{
	font-size:14px;
	color:#fff;
	line-height:170%;
}


/**************************************************************

　　　　　　　フッターコンタクトBOX

**************************************************************/
.contact-set2{
	position: relative;

}

.contact-set2 .icon{
	display:none;
	position: absolute;
	width:20%;
	left: 0;
	top:0;
	z-index: 1;
}
.contact-set2 .icon img{
	width:100%;
	height:auto;
}

.contact-box{
	overflow: hidden;
	text-align: left;
	background-color: #fff;
}

.contact-box h2{
	background-color: #f391a3;
	padding: 15px;
	font-size: 14px;
	color: #fff;
	line-height:160%;
	text-align:center;

}

.contact-box .in{
	padding: 40px 15px;
	overflow: hidden;
}

.contact-box .in .l{
	text-align: center;
	font-size:15px;
}

.contact-box .in .l h3{
	font-size: 14px;
	color: #464646;
	line-height: 180%;
}

.contact-box .in .l p{
	font-size: 36px;
	line-height: 120%;


}

.contact-box .in .r{
	text-align: center;
	box-sizing: border-box;
}

.contact-box .in .r h3{
	font-size: 14px;
	margin-top:20px;
	color: #464646;
	line-height: 150%;
}

.contact-botan a:link{
	display: block;
	padding: 10px;
	width: 80%;
	margin: 0 auto;
	margin-top: 20px;
	background-color: #e22c2c;
	color: #fff;
    border-radius: 10px; 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	font-size: 16px;
}
.contact-botan a:hover{
	background-color: #9f1919;
}
.contact-botan a:visited{
	color: #fff;
}



/**************************************************************
footer
**************************************************************/
footer{
	background-color: #ededed;
	padding:20px;
	font-weight:400;
	font-size:12px;
}
footer p{
	text-align:center;
}
#footer-nav{
	margin:0 auto 20px;;
	justify-content: space-around;
}
.footer-box{
	text-align:left;
	padding:0 20px;
}
.footer-box2{
	text-align:center;
}



.footer-box2 .f-logo img{
	width:60%;
	max-width:250px;
	height:auto;
	margin:auto;
}
.footer-box2 h3{
	display:flex;
	justify-content:center;
	margin-top:0px;
	color:#332f2c;
}
.footer-box2 h3 img{
	width:50px;
	height:auto;
}
.footer-box2 h3 .tel_f_text{
	font-size:30px;
	line-height:30px;
}
.footer-box2 h3 .tel_f_text span{
	font-size:13px;
	display:block;
	color:#332f2c;
}
.footer-box li{
	position: relative;
  	text-decoration: none;
	padding-left:20px;
	font-weight:500;
	list-style:none;
}
 li a, .footer-box2 a{color:#332f2c;}

.footer-box li::before{
  content:'';
  position: absolute;
  left:0;
	top:13px;
  width:6px;
  height:6px;
  border-top: 2px solid #332f2c;
    border-right:2px solid #332f2c;
    transform: rotate(45deg);
}


.footer-box .sns{
	display:flex;
	align-content: center;
	width:80%;
}
.footer-box .sns img{
	width:30px;
	height:30px;
	margin: 10px;	
}


.kaisha-banner{

	margin:0 auto;
	background-color:#fff;
	border-radius:15px;
	box-sizing:border-box;
	padding:20px;
	margin-bottom:30px;
	text-align:center;
}

.kaisha-banner img{
	width:80%;
	height:auto;

	border-radius:5px;
}

.kaisha-banner img a{
	display:block;
}



/******************************************
 
                 下層ページ

**********************************************/

#pages{
	padding:20px;
	padding-top:90px;
}

#pages .botan-flex{
	margin-top:40px;
	margin-bottom:25px;
}
.pankuzu{
	display:none;
	padding:5px 10px;
	line-height:100%;
	font-size:11px;
	text-align:right;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	height:60px;
	color:#fff;
	background-image: url(../../../image/base/wave.svg);
	background-repeat:no-repeat;
	background-size:100%;
	        background-position: bottom;
}
.pankuzu a{
	color:#fff!important;
}

.sub-tt{
	padding-left:10px;
	font-size:18px;
	line-height:100%;
	color:#ea7e92;
	border-left:solid 8px #ea7e92;
	margin-bottom:20px;

}
.t-nav{
	display:none;
	font-size:13px;
	margin:5px 30px 5px 40px;
	color:#626262;
}
.t-nav a{
	color:#626262;
}



/******************************************
 
                 カタログ

**********************************************/

.catalog-page{
	padding:40px 0;
}
.contact-bikou{
	padding:10px;
	background-color:#eaeaea;
	text-align:center;
	font-size:13px;
	border-radius:5px;
	font-weight:500;
}
.select-catalog {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
}
.select-bt input {
  display: none;
}
.select-bt {
	font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;
  background-color: #fff;
	font-size:13px;
  border: 2px solid #222;
  line-height: 1;
  padding: 8px;
  font-weight: 600;
  position: relative;
  transition: .3s;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.select-bt::before {
  content: "選択する";
  display: flex;
}
.select-bt:hover, .select-bt.selected {
  background-color: #222;
  color: #fff;
}
.select-bt.selected::before {
  content: "選択済み";
  display: flex;
}
.catalog-box {
  width: 48%;
	box-sizing:border-box;
  padding: 10px;
  border: 2px solid #ccc;
  transition: .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	margin:1%;
  margin-bottom: 20px;
}
.catalog-box:nth-of-type(4n-3) {
  margin-left: 0;
}
.catalog-box:hover, .catalog-box.selected {
  border: 2px solid #666;
}
.catalog-box .name {
	font-size:13px;
  border-bottom: 1px solid #ccc;
	font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;

}
.catalog-box img {
  margin-bottom: 15px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.catalog-box p {
	padding:7px 0;
  flex:1;
  font-size:10px;
  line-height:150%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

[data-name="ok"] .wpcf7-not-valid-tip {
   position: relative;
   top: -20px;
   left: 50px;
}

#apply-box{
    margin: 0 auto 50px;
	font-size:12px;
	box-sizing:border-box;
}    
#apply-box .apply-box-l{
	font-weight:600;

    padding:5px;
	box-sizing:border-box;
	margin-bottom:3px;
}
#apply-box .apply-box-l span{
    background-color:red;
    color:#fff;
    padding:5px;
    margin-right:10px;
    border-radius: 5px;
	font-size:11px;
	line-height:100%;
}
#apply-box .apply-box-l .nini{
	background-color:#999;
	font-size:11px;
}
#apply-box .apply-box-r{
	margin-bottom:20px;
	font-family:  'Noto Sans JP',
	"Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
	box-sizing:border-box;

}
 /* テキストフォームの設定 */
.wpcf7-datetime{
  padding: 7px;
  width: 260px;
  color: #636063;
  font-size: 13px;
  background-color:#F9F9F9;
  border:solid 1px #CCCCCC;
	box-sizing:border-box;
  }

 /* テキストフォームの設定 */
.wpcf7-text{
  padding: 10px;
  width: 100%;
  color: #636063;
  background-color:#F9F9F9;
  border:solid 1px #CCCCCC;
	box-sizing:border-box;
  }

.kazukazu input{width:30px!important;
margin-left:3px;
margin-right:3px;}
 
  /* テキストフォームのフォーカス時の設定 */
.wpcf7-text:focus{
  background-color:#FFFFCC;
  }
 
  /* テキストエリアの設定 */
.wpcf7-textarea{
  padding: 10px;
  width: 100%;
  height: 100px;
  color: #636063;
  background-color:#F9F9F9;
  border:solid 1px #CCCCCC;
	box-sizing:border-box;
  }
 
 /* テキストエリアのフォーカス時の設定 */
.wpcf7-textarea:focus{
background-color:#FFFFCC;
}
 
  /* 送信ボタンの設定 */
.wpcf7-form-control.wpcf7-submit{
	font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;
display: block;
width: 200px;
border: none;
padding:10px;
background-color:#ff4200;
color:#fff;
	border-radius:5px;
	font-size:16px;
	line-height:100%;
	margin:0 auto;
	margin-top:20px;
  }
 
/* 送信ボタンのフォーカス時の設定 */
.wpcf7-form-control.wpcf7-submit:hover{
filter: alpha(opacity=80);
 opacity: .6;
 -moz-transition: all 0.7s ease;
 -webkit-transition: all 0.7s ease;
 }
 
/* リストの縦並び（チェックボックス・ラジオ） */
span.wpcf7-list-item {
display: block!important;
	margin-bottom:10px!important;
}
 
/* セレクト */
select{
padding: 5px;
width:420px;
color: #636063;
font-size: 13px;
background-color:#F9F9F9;
border:solid 1px #CCCCCC;
}
input[type=checkbox] {
	transform: scale(2);
	margin: 0 6px 0 0;
}
.apply-check{
	text-align:center;
	display:block;
	width:100%;
	margin-top:20px;
}
.center{
	text-align:center;
	display:block;
	margin:10px auto;
}
.form-small {
    width: 100px;
}

/******************************************
 
                 施工事例

**********************************************/

.works-page{
	max-width:1000px;
	padding:25px 0;
}

.midashi-a{
	color:#575757;
	border-bottom:solid 2px #575757;
	margin-bottom:15px;
	font-weight:500;
	font-size:16px;
	line-height:150%;
}


.works-detail h2{
	font-size: 24px;
	padding: 15px;
	background-color: #737373;
	color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 
	margin-bottom: 30px;
}

.works-detail .main{
	margin-bottom: 25px;
	overflow:hidden;
}
.works-detail .main img{
	width:100%;
	height:auto;
}

.works-detail .main-l{
	width:30%;
	float:left;
}
.works-detail .main-l img{
	width:100%;
	height:auto;
}
.works-detail .main .main-r{
	width:65%;
	float:right;
}
.works-detail .main .main-r img{
	width:100%;
	height:auto;
}


.works-detail .main2{
	display: flex;
}

.works-detail .main2 .box{
	width: 31.333333333%;
	margin: 1%;
	box-sizing: border-box;
	padding: 10px;
	background-color: #fff;
}

.works-detail .main2 .box img{
	width: 100%;
	height: auto;
}

.works-detail .main3{
	margin-top: 30px;
	overflow: hidden;
	text-align: left;
}

.works-detail .main3-l{
	font-size:14px;
}

.works-detail .main3-l h3{
	font-size: 16px;
	margin-bottom: 20px;
}

.works-detail .main3-r{
	margin-top:25px;

}

.works-detail .table-a	{
		font-size:12px;
	border: 1px solid #DDD;
	width: 100%;
	border-collapse: collapse;	border-spacing: 0;
	margin-bottom: 10px;
	background-color: #fff;
	text-align: left;


}
.works-detail .table-a th	{
	border: 1px solid #DDD;
	padding: 5px;

}
.works-detail .table-a td	{
	border: 1px solid #DDD;
	padding: 5px;
	font-weight:normal;
}

.works-detail .table-a tr:nth-child(odd) td {
	background: #feffee;
}

/************************************************
            施工事例   一覧
*************************************************/
.works-list-page{
	padding:10px 0 25px 0;
}
.works-flex {
  display: flex;
  flex-wrap: wrap;
	margin-top:15px;
}

.works-flex .box {
	width:48%;
	margin:1%;
	box-sizing: border-box;
	margin-bottom:20px;

}
.works-flex .box img{
	width:100%;
	height:auto;
	border:solid 1px #ccc;
	border-radius:10px;
}

.works-flex .box h3{
	font-size:13px
}


/************************************************
         
                    イベント

*************************************************/
.event-page{
	padding:15px 0 25px 0;
}

.event-flex{

}
.event-flex .box{
	margin:1%;
	border:solid 1px #ccc;
	padding:20px;
	box-sizing:border-box;
}
.event-flex .box img{
	width:100%;
	height:auto;
}
.event-flex .box h3{
	font-size:16px;
	font-weight:600;
	text-align:center;
	padding:15px 0;
	line-height:140%;
}
.event-flex .box .info{
	display:flex;
	flex-wrap:wrap;
	font-size:15px;
	font-size:13px;
	line-height:250%;
}
.event-flex .box .info .mida{
	width:25%;
	border-bottom:solid 2px #f6bbc6;
}
.event-flex .box .info .tx{
	width:75%;
	border-bottom:solid 2px #ccc;
	padding-left:15px;
	box-sizing:border-box;
}

.ev-botan{
	display:flex;
	justify-content:flex-end;
}
.ev-botan a{
	display:block;
	padding:10px;
	line-height:100%;
	background-color:#f85875;
	color:#fff;
	font-size:13px;
	width:180px;
	border-radius:5px;
	margin-top:10px;
	text-align:center;
}

.event-detail{
	margin:0 auto;
	padding-top:20px;
}

.event-detail .info{
	padding:10px 0;
	display:flex;
	flex-wrap:wrap;
	font-size:13px;
	line-height:150%;

}
.event-detail .info .mida{
	width:25%;
	border-bottom:solid 2px #f6bbc6;
		font-family: tbudrgothic-std, sans-serif;
	padding:8px 0;
}
.event-detail .info .tx{
	width:75%;
	border-bottom:solid 2px #ccc;
	padding-left:15px;
	box-sizing:border-box;
		font-family: tbudrgothic-std, sans-serif;
	padding:8px 0;
}

.event-detail .info .blog-cont{
	font-size:15px!important;
	line-height:190%!important;
	margin:0!important;
	padding:0!important;
	padding-top:20px!important;
	
}

.main-ev{

}
.main-ev a{

}
.main-ev img{
	/*width:49%!important;*/
	height:auto;
}

/************************************************
         
           　　　お役立ちコラム

*************************************************/

.column-page{
	padding:20px 0 40px 0;
}
.newsbox{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	width:100%;
	padding:10px 5px;
	border-bottom:1px solid #e3e3e3;
	box-sizing:border-box;
}
.news-line-l{
	width:25%;
}
.news-line-l img{
	width:100%;
	height:auto;
	display:block;
}

.news-line-r{
	width:75%;
	padding:0px 0px 0px 20px;
	box-sizing:border-box;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.news-line-r h2{
	font-size:12px;
	font-weight:400;
	line-height:160%;
}
.news-line-r h2 a, .news-line-r h2 a:visited{color:#4c4c4c;}


/**************************************************************
blog
**************************************************************/

.news-cate{
	padding:8px;
	background-color:#919191;
	color:#fff;
	text-align:center;
	font-size:14px;
	border-radius:5px;
}
.news-date{
	text-align:right;
	font-size:18px;
	margin-top:5px;
	color:#f6bbc6;
	font-weight:600;
}




.blog-page{
	padding:20px 0;
}

.blog-cont{
	margin:20px auto 0;
	text-align:left;
	line-height:190%;
	padding:10px 0;
	font-size:14px;
}

.blog-cont li + li {
  border-left: none!important;
}

.blog-cont li{
	margin-left:35px;
	font-size:14px;
	line-height:170%;
	margin-bottom:13px;
}

.blog-cont ol{
	margin-top:25px;
	margin-bottom:25px;
}


.blog-cont p{
	margin-left:0px;
}

.blog-cont .alignright{
	padding-left:15px!important;
	background-color:#fff!important;
	float:right;
}

.blog-cont .alignleft{
	padding-right:15px!important;
	background-color:#fff!important;
	float:left;
}

.blog-cont .aligncenter{
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}

.blog-cont h1{
	font-size:24px;
	color:#000000;
	padding:10px 5px;
	margin-bottom:5px;
	margin-top:30px;
	font-weight: 700;
}

.blog-cont h2{
	font-size:16px;
	color:#EB8400;
	padding:10px 5px;
	border-bottom:solid 2px #EB8400;
	margin-bottom:15px;
	margin-top:30px;
	font-weight: 600;
}

.blog-cont h3{
	font-size:14px;
	background-color:#fff3b1;
	padding:7px;
	margin-top:30px;
	margin-bottom:15px;
	font-weight: 600;

}
.blog-cont h4{
	font-size:13px;
	color:#000;
	padding:7px 3px;
	border-bottom:solid 1px #000;
	margin-bottom:15px;
	margin-top:30px;
	font-weight: 600;
}

.blog-cont h5{
	font-size:12px;
	color:#000;
	padding:5px;
	background-color:#ececec;
	margin-bottom:15px;
	margin-top:30px;
	font-weight: 600;
}

.blog-cont p{margin-bottom:15px;}

.blog-cont img{
	padding-bottom:15px;
	padding-top:10px;
	max-width:100%;
	height:auto;
}

.blog-cont iframe{
	max-width:100%;
}

.blog-cont hr{
	margin-bottom:15px;
		margin-top:15px;
	background-color: #fff;
	border-top: 2px dashed #EB8400;
}



/**************************************************************

                          お客様の声

**************************************************************/

.post-null{padding:30px 0 ;text-align:center;}
.voice-flex{margin:0 auto;display:flex;flex-wrap:wrap;gap:10px;}

.voice-box{width:calc((100% / 2) - 5px); padding: 10px;background-color: #f2f2f2;border-radius: 5px;box-sizing:border-box;}
.voice-box h3{font-size:12px;padding:5px;text-align:center;}
.voice-box .pic{ aspect-ratio: 1.4 / 1;overflow: hidden; }
.voice-box .pic img{width:100%;height:100% !important;object-fit:cover;object-position: center;}

.voice-head{}

.voice-head h2{font-size:13px;font-weight:500;line-height:1.8;}

.voice-head .voice-h-info{flex:1;}

.voice-h-info div{margin:5px 0;}

.voice-name{font-size:18px;font-weight:500;}

.voice-info-s{
	padding:3px 10px;
	background-color:#ffecf0;
	text-align:center;
	margin-top:15px;
	line-height:100%;
	padding:10px;
	font-size:11px;
}

.voice-body{padding:20px 0;line-height:1.8;}

.voice-q{font-size:16px;padding:6px 0;color:#e06f6c;font-weight:600;display: flex;align-items: center;}

.voice-q:after{
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #e06f6c;
}
.voice-q:after {margin-left: 1rem;}

.answer-c{padding:15px 0;font-size:13px;}

.staff-come-flex{
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	padding:15px 0;
}

.staff-come-flex img{
	width:20%;
	height:auto;
}

.staff-come{
	padding:20px;
	background-color: #ffecf0;
	border-radius: 14px;
	margin-bottom:20px;
	box-sizing:border-box;
	font-size:12px;
}

.voice-pic{margin-bottom:40px;text-align:center;padding:15px;background-color:#fbfbfb;box-sizing:border-box;border:solid 1px #dbdbdb;}
.voice-pic img{max-width:100%;height:auto !important;}
.voice-waku img{max-width:100%;height:auto;}

#voice-s{padding:20px 0 20px 0;}
.voice-h-pic{margin-bottom:20px;text-align:center;padding:8px;background-color:#fbfbfb;box-sizing:border-box;border:solid 1px #dbdbdb;}
.voice-h-pic img{max-width:100%;height:auto;}



/************************************************************************************

　　　　　　　　　　　　　　　プライバシーポリシー

***************************************************************************************/

.pri-frame{
	margin:0 auto;
}
.pri-ttt {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
}
.pri-frame .danraku {
    text-align: left;
    font-size: 13px;
    line-height: 190%;
    letter-spacing: 0.5px;
    padding: 15px 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.pri-frame .danraku li {
    margin-top: 10px;
    margin-left: 25px;
}
.pri-frame h4 {
    background-color: #E8E8E8;
    color: #000;
    font-size: 13px;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: left;
    margin: 10px 0;
	margin-bottom:20px;
}
.pri-con {
    margin-top: 10px;
    text-align: left;
    font-size: 13px;
    line-height: 180%;
	margin-bottom:40px;
}
.pri-con h5 {
    font-size: 14px;
    text-align: left;
    border-bottom: solid 2px #000;
    padding: 5px 0;
    margin-bottom: 15px;
	margin-top:25px;
}

/**************************************************************

                           COMPANY

**************************************************************/
#company{
	margin:0 auto;
	padding:20px 0;
}

.company-flex{

}
.company-text{
	line-height: 1.8;
	flex:1;
	margin-top:20px;
}
.company-text h3{
	font-size:18px;
	margin-bottom:20px;
	line-height:150%;
}
.company-text p{
	text-align: right;
	font-weight:600;
}
.company-text p span{
	font-size:18px;
}
.company-img{
	width:20%;
	height:auto;
	float:right;
}
.company-img img{
	width:100%;
	height:auto;
}
#company dl{
	margin: 30px auto 30px;
	margin-top:30px;

}
#company dt{
	font-weight:600;
	color:#dc5750;
	font-size:12px;
	box-sizing:border-box;
}
#company dd{
	padding:5px 0 20px 15px;
	border-top:1px solid #ccc;
	box-sizing:border-box;
	line-height:180%;
	font-size:14px;
}
#company iframe{
	width:100%;
	height:400px;
}

.awards-pic{}

.awards-pic img{
	width:100%;
	height:auto;
}

.company-message{
	font-size:13px;

}

.company-message .pic{
	width:60%;
	margin:0 auto;
	margin-bottom:20px;
}
.company-message img{
	width:100%;
	height:auto;
}

.com-mes-text{
	line-height:180%;
}

.presidentname{
	margin-top:30px;
	text-align:right;
}


.area{
	margin:50px auto;
	width:100%;
	display:flex;
	flex-wrap:wrap;
}
.area p{
	width:48%;
	margin:1%;
}
.area p img{width:100%;}

#company a:link, #company a:visited {
	color:dodgerblue;
	border-bottom:1px solid dodgerblue;
}
.p-name{
	font-size:13px;
	margin-top:10px;
	margin-bottom:5px;
}

.prize-list{
    margin: 0 auto;
    margin-top: 30px;
}

.prize-list2{
    width: 1000px!important;
    margin: 0 auto;
    margin-top: 60px;
}

.prize-list .list-mda{}

.prize-list h3{
    font-size: 16px;
    margin-bottom: 15px;
	text-align:center;
}
.prize-list ul{}

.prize-list ul li{
    list-style-type: none;
    border-bottom: dotted 1px #ccc;
    padding: 5px;
    text-align: left;
    font-size: 11px;
}

/********************************************************

                      お問い合わせ

*******************************************************/

.apply{
	padding:40px 0;
}
.halfsize{
    width: 46%;
    margin-top: 5px;
    margin-right: 4%;
}


/********************************************************
 
                       流れ

*************************************************************/

.flow-page .zu{
  width: 100%;
  overflow-x: auto; /* 横スクロール可能に */
}

.flow-page .zu img{
  width: 600px;     /* 固定幅にする */
  max-width: none;  /* スマホでも縮まないように */
  height: auto;
  display: block;
}


:root{
  --bg:#f2f6f4;      /* 背景（淡グリーン） */
  --side:#1b5a44;    /* 左帯 濃緑 */
  --side2:#134a37;   /* 左帯 中緑 */
  --line:#c8d7d1;    /* 罫線 */
  --ink:#14322c;     /* 文字 */
  --pillar:#2aa596;  /* 縦柱のティール */
  --boxline:#2a6b57; /* 白箱の枠色 */
  --divider:#f19b9b; /* レーン間の赤い仕切り線 */
}

/* ベース */
*{box-sizing:border-box}

.flow-page .wrap{
line-height:120%;}
.flow-page .board{
 display:flex; 
	border:1px solid var(--line);
	overflow:hidden; background:#fff;
	overflow-x:scroll;
	font-size:12px;
}

/* 左サイド（5月開業／設計／施工） */
.flow-page .side{
  width:130px; background:#4b4b4b; color:#fff;
  display:flex; flex-direction:column; gap:14px; align-items:center; padding:14px 10px;
}
.flow-page .side .open{
  width:100%; border-radius:10px; background:#4b4b4b;
  display:grid; place-items:center; text-align:center; line-height:1.1; padding:8px;
	font-weight:600;
}
.flow-page .side .open b{font-size:16px; font-weight:600; letter-spacing:.06em}
.flow-page .side .open small{font-size:13px; opacity:.9}
.flow-page .tag{
  flex:1 1 auto; width:100%; border-radius:10px; background:#000;
  color:#fff;
  font-weight:600;
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center;
  gap:5px;
  padding:8px 0;
}
.flow-page .tag span{
	font-weight:900; 
	font-size:12px; 
	line-height:1}

/* タイムライン本体 */
.flow-page .timeline{
  flex:1 1 auto; background:var(--bg);
  padding:10px; 
  grid-template-rows: auto auto auto 12px; /* 月見出し / 設計 / 施工 / 下レール */
  gap:12px; border-left:1px solid var(--line);
}

/* 18カラム = 9ヶ月 × (A/B) */
.flow-page .grid18{
	display:grid; 
	grid-template-columns:repeat(18, minmax(30px,1fr)); 
	gap:10px;
}

/* 月見出し */
.flow-page .months{
	font-size:12px;
	background:#eaf2ef;
	border-radius:10px;
margin-bottom:15px;}

.flow-page .month{
  grid-column:span 2; background:#fff; border-radius:10px; padding:12px 8px; text-align:center;
  box-shadow:inset 0 0 0 1px var(--line)
}
.flow-page .month .m{font-weight:600; font-size:12px}

.flow-page .month .sub{
  margin-top:8px; 
	font-size:11px; 
	background:#f3f7f5; 
	border-radius:999px;
  display:inline-block; 
	padding:5px 10px; 
	box-shadow:inset 0 0 0 1px var(--line)
}

/* レーン（設計・施工） */
.flow-page .lane{
  align-items:stretch; 
  grid-template-rows: 1fr; /* 単段配置（簡素版） */
	margin-bottom:15px;
}
/* レーン間の赤い仕切り線 */
.flow-page .sep{
  grid-column:1 / -1; height:3px; border-top:1px solid var(--divider);
  margin:2px 0 1px;
	margin-bottom:15px;
}

/* 工程ボックス */
.flow-page .step{
  position:relative; width:100%; height:100px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
}
.flow-page .white{background:#fff; border:1px solid var(--boxline)}
.flow-page .pillar{background:#ff5959; color:#fff;height:100px; border-radius:8px; margin:0 auto;font-size:13px;}
.flow-page .tall{
	height:100px;
	font-size:13px;
}

/* 縦書き */
.flow-page .vtxt{
  writing-mode:vertical-rl; text-orientation:mixed;
  letter-spacing:.08em; font-weight:900; font-size:14px;
}

/* 下のガイドレール */
.flow-page .rail{

}

/* ちょい演出 */
.flow-page .step.white:hover{box-shadow:0 2px 8px rgba(0,0,0,.07); transform:translateY(-1px); transition:.2s}
.flow-page .pillar:hover{filter:brightness(1.06); transform:translateY(-1px); transition:.2s}

.flow-page{
	padding:30px 0;
}
.w90{


}

.flow-page .f-mes{
	margin-bottom:40px;
}
.flow-page .f-mes h2{
	font-size:18px;
	margin-bottom:20px;
	line-height:140%;
	font-weight:600;
}
.flow-page .f-mes p{
	font-size:13px;
	line-height:180%;
}


/******流れ下:****/

.ff-box{
	margin-top:30px;
  position: relative;          /* ← これ大事 */


}

.ff-box::before{
  content: "";
  position: absolute;
  top: 0;                      /* 上端から */
  bottom: 0;                   /* 下端まで */
  left: 50%;                   /* 真ん中 */
  transform: translateX(-50%); /* 中央揃え */
  width: 6px;                  /* 線の太さ */
  background: #ff6f6f;         /* 黄色 */
  border-radius: 3px;          /* 角丸（任意） */
}
.ff-box h2{
	padding:10px;
	line-height:100%;
	background-color:#ff6f6f;
	color:#fff;
	font-size:16px;
	font-weight:500;
	width:100%;
	text-align:center;
	border-radius:10px;
	position:relative;
	z-index:99;
	font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;
}

.ff-box h4{
	width:50%;
	margin:0 auto;
	padding:10px;
	line-height:100%;
	background-color:#3aafa4;
	color:#fff;
	font-size:14px;
	font-weight:500;

	text-align:center;
	border-radius:10px;
	position:relative;
	z-index:99;
	margin-bottom:50px;
	margin-top:50px;
		font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;
}

.inflex{

	margin:30px 0;

}

.inflex h3{
	background-color:#575757;
	padding:10px;
	line-height:130%;
	font-size:14px;
	color:#fff;
	margin-bottom:0px;
	font-family: tbudrgothic-std, sans-serif;
    font-weight: 600;
	text-align:center;
}
.inflex p{
	padding:10px;
	font-size:13px;
	line-height:140%;
}

.inflex .ll{
	background-color:#fff;
	border:solid 2px #575757;
	box-sizing:border-box;
	position:relative;

}
.inflex .ll img{
	width:100%;
	height:auto;
}
.inflex .rr{

	border:solid 2px #575757;
	box-sizing:border-box;
	position:relative;
}
.inflex .rr img{
	width:100%;
	height:auto;
}


.m-t-a{
	margin-top:80px;
}




/* 枠（外側） 長さ27px */
.inflex .rr::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -6px;                          /* しっぽを外側へ */
  border-style: solid;
  border-width: 12px 6px 12px 0;       /* 上 右 下 左（右が長さ） */
  border-color: transparent #575757 transparent transparent;
}

/* 本体（内側） 長さ26px */
.inflex .rr::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  border-style: solid;
  border-width: 11px 5px 11px 0;
  border-color: transparent #575757 transparent transparent;
}

/*********************************************************

              園設計

***************************************************/

.proj-page{

}

.proj-midashi{
	font-size:18px;
	color:#fe6969;
	padding:5px 0;
	text-align:center;
	margin-bottom:15px;
}

.pj-header{
	background-image:url(../../../image/project/header.png);
	background-repeat:no-repeat;
	background-size:400%;
	padding:60px 20px;
	margin-top:20px;
	text-align:center;
	border-radius:10px;
}
.pj-header h2{
	font-size:20px;
	color:#fff;
}
.pj-header h3{
	font-size:13px;
	color:#fff;
}

.proj-page{

	margin:0 auto;
	line-height:100%;
}


.about-tt {
    position: relative;
    margin-bottom: 25px;
    border-bottom: 5px solid;
    color: #fe6969;
    font-size: 18px;
    text-align: center;
	font-weight: 500;
	margin-top:20px;
	line-height:120%;
	padding-bottom:8px;
}

.about-tt:before,
.about-tt:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.about-tt:before {
    border: 16px solid;
    border-color: transparent;
    border-top-color: #fe6969;
    margin-left: -16px;
}

.about-tt:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -10px;
}

.about-tt2{
	width: 500px;
	margin: 0 auto;
	background-color: #f99123;
	color: #fff;
	border-radius: 10px;
	padding: 20px;
	font-size: 22px;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 80px;
}

.header-about{
	margin-bottom:20px;
}


.fac-nayami{
	margin: 0 auto;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.fac-nayami .pic{}

.fac-nayami .pic img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.about-zu-flex img{
	width:100%;
	height:auto;
	border-radius:10px;
	margin-bottom:15px;
}

.about-zu-flex{
	margin-bottom:30px;
	font-size:13px;
	line-height:180%;
}

.fac-nayami .tex{
	line-height:130%!important;
}

.about-zu-flex h3{
	font-size:18px;
	margin-bottom:15px;
}

.arrow_box{
  position:relative;
  background:#343434;
  padding:10px;
  text-align:center;
  border:2px solid #343434;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  line-height:160%;
}

.arrow_box br{
	display:none;
}

/* ▼ 三角を上向き・中央上に配置 */
.arrow_box:after,
.arrow_box:before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  transform: translate(-50%, -100%); /* ボックスの上に出す */
  width:0; height:0;
  border: solid transparent;
  pointer-events:none;
}

/* 中（塗り） */
.arrow_box:after{
  border-width: 0 10px 10px 10px;      /* 下辺だけ色 → 上向き三角 */
  border-bottom-color:#343434;
}

/* 外（枠）※枠を太くしたい時 */
.arrow_box:before{
  border-width: 0 12px 12px 12px;
  border-bottom-color:#343434;          /* 枠色（同色でOK） */
  margin-top:-2px;                      /* 枠ぶんのオフセット */
}


.arrow_box2{
  position:relative;
  background:#343434;
  padding:10px;
  text-align:center;
  border:2px solid #343434;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  line-height:160%;
}

/* ▼ 三角を上向き・中央上に配置 */
.arrow_box2:after,
.arrow_box2:before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  transform: translate(-50%, -100%); /* ボックスの上に出す */
  width:0; height:0;
  border: solid transparent;
  pointer-events:none;
}

/* 中（塗り） */
.arrow_box2:after{
  border-width: 0 10px 10px 10px;      /* 下辺だけ色 → 上向き三角 */
  border-bottom-color:#343434;
}

/* 外（枠）※枠を太くしたい時 */
.arrow_box2:before{
  border-width: 0 12px 12px 12px;
  border-bottom-color:#343434;          /* 枠色（同色でOK） */
  margin-top:-2px;                      /* 枠ぶんのオフセット */
}

.top-event-sub{
	background-color:#fff6f6;
}


/*-----------------------------------------
ヤモリとは？
-----------------------------------------*/

#about-cont{
}
#about-cont-inner{

	margin: 0 auto;
}

#about-cont-inner h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
	margin-top: 30px;
	line-height: 160%;
	text-align:center;
}
#about-cont-inner h3{

	padding:10px;
	line-height:120%;
	background-color: #eeabab;
	color: #fff;
	font-size: 14px;
	border-radius: 10px;
	margin: 0 auto;
	margin-bottom: 20px;

	text-align:center;
}
#about-cont-inner h4{
	font-size: 16px;
	border-bottom: solid 2px #000;
	line-height:100%;
	padding:10px;
}

.about-chigai-box{
	margin-top: 15px;
	text-align: left;
	justify-content:space-around;
}

.about-chigai-box .img{
}
.about-chigai-box .img img{
	width: 100%;
	height: auto;
	margin-bottom:10px;
}
.about-chigai-box .text{
	padding:0 2%;
	font-size: 15px;
	line-height: 180%;
	font-size:13px;
	margin-bottom:30px;
}
.about-chigai-box .text h5{
	font-size: 16px;
	color: #EB8400;
	margin-bottom: 15px;
}

.about-reason{
	padding: 25px;
	background-color: #EBEBEB;
	border-radius: 10px;
	margin-bottom: 30px;
}

.about-reason .icon{
	text-align: center;
	width:80px;
	margin:0 auto;
}
.about-reason .icon img{
	width: 100%;
	height: auto;
}


.about-reason h3{
	line-height:100%;
	font-size:18px!important;
	background-color: #EBEBEB!important;
	color: #000!important;
	margin-bottom: 10px!important;
	margin-top:15px!important;
}
.about-reason .text{
	font-size: 13px;
	line-height: 160%;
	letter-spacing: 1.2px;
	text-align: left;
}
.about-reason .text .red{
	font-size: 18px;
}

.about-works{
	margin-top:20px;
}

.about-works h2{
        line-height: 100%;
        padding: 10px;
        line-height: 100%;
        background-color: #eeabab;
        color: #fff;
        font-size: 16px;
        border-radius: 10px;
        margin: 0 auto;
        margin-bottom: 20px;
        text-align: center;
}

.about-works .top-works-flex > :nth-child(5).wbox{
  display: none !important;
}


/**************************************************************
side固定バナー
**************************************************************/
.fix-btn {
    position: fixed;
	top: 60%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
}
.fix-btn li{
	list-style:none;
}
.fix-btn_item a{
	display: block;
	background-color: #f26f87;
	color:#fff;
	padding:15px;
	height:160px;
	text-align: center;
	font-size:16px;
	font-weight:bold;
	border-bottom:solid #fff 1px;
	border-left:solid #fff 1px;
	transition: 0.5s;
	line-height:130%;
	letter-spacing:2px;
}
.fix-btn_item a:hover{
	background-color: #dc435f;
	
}
.fix-btn_item:first-child a{
	background-color: #666666;
	border-top:solid 1px #fff;
}
.fix-btn_item:first-child a:hover{
	background-color:#525252;}

.fix-btn_text {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}




/***************************************
おまかせ top
*********************************************/
	
.top-omakase{

	background-image: url("../../../image/project/bg.webp");
	background-size: cover;
	background-position: center top;
	color: #fff;
	background-attachment: fixed;
}

.top-omakase .inner{
	padding: 80px 0 40px 0;
}

.top-omakase h2{
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
	color:#ff3157;
	line-height:140%;
}
.top-omakase h2 span{
	color: var(--main-color);
	font-size: 36px;
}

.top-omakase p{
	width:90%;
	text-align: center;
	border-radius: 10px;
	margin: 0 auto;
	padding: 10px;
	font-size: 12px;
	border: solid 2px #fff;
	font-weight: 800;
	margin-bottom: 10px;
	margin-top: 10px;
	background: rgb(230 93 93 / 70%);
	color: #ffffff;
}
	
.ar{
	text-align:center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.ar img{
	width: 60px;
	height: auto;
}	


.top-omakase h3{
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 0px;
	font-weight:800;
	color: #ff3157;
	line-height:150%;
}
.top-omakase h3 span{
	color: #ff3157;
	font-size: 20px;
	font-weight:800;
}

.top-omakase .point{
	padding:20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.top-omakase .point .p-box{
	width: 47%;
	background-color: #f26f87;
	color: #fff;
	padding: 15px;
	border: solid 1px #FFF;
	box-sizing: border-box;
	margin-bottom: 25px;
}

.top-omakase .point .p-box .num{
	font-size:20px;
	font-style: italic;
	margin-bottom: 5px;
	text-align:center;
	line-height:100%;
	font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.top-omakase .point .yokonaga{
	width:100%!important;
}


.top-omakase .point .p-box .tx{
	font-size: 18px;
	line-height: 160%;
	text-align:center;
	font-weight:600;
}
a.about-bt{
	display:block;
	width:80%;
	background-color:#000;
	color:#fff;
	margin:10px auto;
	padding:10px;
	text-align:center;
	font-size:24px;
	font-weight:700;
	line-height:60px;
	border-radius:5px;
	border:1px solid #fff;
	transition:0.5s;
}
a.about-bt:hover{
	background-color:var(--main-color);
}