@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] { border-radius: 0; -webkit-box-sizing: content-box; -webkit-appearance: button; appearance: button; border: none; box-sizing: border-box; cursor: pointer; }
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration { display: none; }
input[type="submit"]::focus, input[type="button"]::focus { outline-offset: -2px; }

/*===============================
 Base
===============================*/
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box;-o-box-sizing: border-box;  -ms-box-sizing: border-box;box-sizing: border-box;}
.sp { display: none; }
.tab { display: none; }
html { height: 100%; }
body { color: #232F3B; height: 100%; }
a { color: #232F3B; text-decoration: none; transition: .5s; }
img { width: 100%; height: auto; }
.slick-slide img.sp { display: none; }
@media screen and (max-width:1024px) {
	.pc-br { display: none; }
}
@media screen and (max-width:1024px) and (min-width:768px) {
    .tab { display: block; }
}
@media screen and (max-width:767px) {
	/* 画面サイズが 767px以下の場合に適用 */
	.pc { display: none; }
	.sp { display: block; width: 100%; }
}

/*===============================
 Clear
===============================*/
img { border: 0; vertical-align: top; font-size: 0; line-height: 0; }
ol, ul { list-style: none!important; }
* { margin: 0; padding: 0; }

/*===============================
 Font
===============================*/
html { font-size: 10px; }
body { font-family: "Shippori Mincho", serif; line-height: 1.5; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em; font-style: normal; }
h1, h2, h3, h4, h5 { line-height: 1.538; }
p, li, dt, dd, th, td { line-height: 1.875; font-size: clamp(1.6rem, 1.5vw, 2.4rem); letter-spacing: 0.05em; font-weight: 700; }
a { letter-spacing: 0.05em; }

/*===============================
 Layout
===============================*/
#wrapper { overflow: hidden; background-color: #F6F3EE; padding-bottom: 100px; }
.container { width:90%; margin:0 auto; max-width: 1240px; }
section { padding:100px 0; position: relative; }
.sectit { font-size: 5.0rem; margin-bottom: 70px; text-align: center; color: #fff; line-height: 1.45; }
.clear { clear:both; }
.clearfix:after {content: ""; display: block; clear: both;}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:2.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeInAnime{
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}

/* 上から */

.fadeImg{
	animation-name:fadeImgAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	-moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    transition-delay: .5s;
}
	
@keyframes fadeImgAnime{
	from {
		-webkit-transform: scale(1.0);
		-moz-transform: scale(1.0);
		-ms-transform: scale(1.0);
		-o-transform: scale(1.0);
		transform: scale(1.0);
	}

	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

/* 上から */

.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeDownAnime{
	from {
	opacity: 0;
	transform: translateY(-100px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeUpAnime{
	from {
	opacity: 0;
	transform: translateY(50px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeLeftAnime{
	from {
	opacity: 0;
	transform: translateX(-100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}

/* 右から */

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeRightAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}
	
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,.fadeUpTrigger,.fadeDownTrigger,.fadeLeftTrigger,.fadeRightTrigger{ opacity: 0; }

/*===============================
 header
===============================*/
#header { position: absolute; top: 0; left: 0; z-index: 1; width: 100%; }
.header_inner { display: flex; justify-content: space-between; align-items: flex-start; padding: 35px 50px; }
.corp_logo01 { width: 250px; }
.corp_logo02 { width: 150px; }

/*===============================
 MV
===============================*/
#mainview {position: relative; margin-bottom: 70px; }
#mainview .mv_product_logo { position: absolute; bottom: 3%; right: 5%; width: 60%; z-index: 10; }
.mv_tit { position: absolute; right: 0; top: 140px; z-index: 1; font-size: clamp(1.5rem, 4.5vw, 6.7rem); background-color: rgba(255, 255, 255, 0.42); padding: 10px 5% 10px 10px; letter-spacing: 0; font-family: "Noto Serif JP", serif; text-shadow: 1px 1px #fff; font-weight: 500; }
.mv_tit span { font-size: clamp(1.5rem, 3.0vw, 5.0rem); }
.mv_img.pc_wide { display: none; }

@media screen and (min-width:1701px) {
	.mv_img.pc { display: none; }
	.mv_img.pc_wide { display: block; }
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	left:17%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-34px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	text-shadow: 0px 1px 2px #909090;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
	box-shadow: 0px 1px 2px #909090;
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom: 0;
	right:0;
    /*矢印の形状*/
	width:2px;
	height: 82px;
	background:#eee;
	box-shadow: 0px 1px 2px #909090;
}

/*===============================
 CTA
===============================*/
.cta { padding: 220px 0 0; font-family: "Noto Sans JP", sans-serif; }
.cta_area { display: block; max-width: 1280px; width: 90%; margin: 0 auto; }
.cta_box { background-image: url(images/cta_bg.png); position: relative; padding: 160px 5% 80px; box-shadow: 0 4px 6px rgba(150, 150, 150, 0.48); border-radius: 5px; }
.catalog_img { position: absolute; top: -230px; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%); width: 50%; -ms-transform: translateX(-50%); }
.cta_txt { font-size: clamp(2.0rem, 1.8vw, 3.2rem); font-weight: 700; text-align: center; margin-bottom: 30px; color: #3e3a39; }
.cta_txt02 { position: relative; }
.cta_txt02:before { content: ''; background-image: url(images/cta_deco01.png); background-size: cover; width: 50px; height: 50px; position: absolute; top: 50%; left: 4%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); }
.cta_txt02:after { content: ''; background-image: url(images/cta_deco02.png); background-size: cover; width: 50px; height: 50px; position: absolute; top: 50%; right: 4%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); }
.cta_txt span.strong { font-size: clamp(3.0rem, 3.6vw, 5.0rem); }
.cta_txt span.y_underline { border-bottom: 3px solid rgb(233, 217, 133); padding-bottom: 8px; }
.cta_front { text-align: center; font-size: clamp(2.4rem, 2.0vw, 3.2rem); line-height: 1.75; margin-bottom: 20px; }
#cta03 { margin-top: 50px; }

/* CTAボタン */
.cta_btn { position: relative; background-color: #e9d985; color: #3e3a39; border-radius: 100px; display: flex; justify-content: center; align-items: center; font-size: clamp(2.6rem, 2.8vw, 3.6rem); font-weight: 700; min-height: 130px; width: 90%; max-width: 1000px; margin: 0 auto; box-shadow: 8px 8px 0 #786816; transition: 0.5s; }
.cta_btn:after { content: ''; background-image: url(images/cta_arrow.png); position: absolute; top: 50%; right: 10%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); width: 45px; height: 45px; background-size: cover; }
.cta_btn:hover { transform: translate(6px, 6px); box-shadow: 2px 2px 0 #786816; }
.cta_btn span { font-size: clamp(1.6rem, 2.0vw, 2.6rem); }

/*===============================
 「木の寛ぎ」と「鉄の安心」をひとつに
===============================*/
.sec_front { position: relative; margin-bottom: 100px; }
.sec_front .main_copy { position: absolute; font-size: clamp(2.8rem, 2.8vw, 4.6rem); }
.sec_front .txt { width: 95%; max-width: 1200px; font-size: clamp(1.6rem, 1.5vw, 2.4rem); padding: 30px 5vw 30px 80px; box-shadow: 0 3px 6px rgba(0, 0, 0, .16); margin-top: -3.5vw; z-index: 1; position: relative; background-color: #F6F3EE; }
#secMerit .sec_front .main_copy { top: 10%; left: 9%; background-color: rgba(255, 255, 255, 0.42); padding: 5px 30px; }
#secMerit .sec_front .txt { margin-left: auto; border-radius: 58px 0 0 58px; }
.secMerit_content_box { width: 90%; padding: 5vw; position: relative;}
#secMerit_content01 { margin-bottom: 100px; }
#secMerit_content01 .secMerit_content_box { background-color: #C6BCB3; }
#secMerit_content02 .secMerit_content_box { background-color: #C5CACE; margin-left: auto; }
.secMerit_content_tit { font-size: clamp(3.5rem, 3.0vw, 5.0rem); margin-bottom: 10px; }
#secMerit_content01 .secMerit_content_tit { padding-left: 5vw; }
#secMerit_content02 .secMerit_content_tit { text-align: right; padding-right: 5vw; }
.secMerit_content_box_img { margin-bottom: 30px; }
.secMerit_content_box .tit_en { font-size: 10vw; line-height: 1; position: absolute; top: -1.5vw; font-family: "Noto Serif JP", serif; font-weight: 200; color: rgba(244, 247, 250, 0.2); }
#secMerit_content01 .secMerit_content_box .tit_en { left: 5vw; }
#secMerit_content02 .secMerit_content_box .tit_en { right: 5vw; }

/*===============================
 朝日ウッドテック紹介
===============================*/
#secMaterial .sec_front .txt { border-radius: 0 58px 58px 0; }
#secMaterial .sec_front .main_copy { top: 10%; right: 9%; background-color: rgba(255, 255, 255, 0.42); padding: 5px 30px; }
#woodtech { display: flex; width: 90%; margin: 0 auto; }
#woodtech .left { width: 50%; }
#woodtech .right { width: 50%; padding-left: 5%; }
.woodtech_tit { font-size: 2.4vw; font-size: clamp(2.8rem, 2.4vw, 4.0rem); margin-bottom: 30px; }

/*===============================
 あなたの暮らしに合うHIRAYAを選ぶ。
===============================*/
.sectit01 { text-align: center; color: #47626B; font-size: clamp(3.6rem, 3.0vw, 4.8rem); font-weight: 700; }
.sectit01 span { border-bottom: 3px solid #DAD3C8; padding-bottom: 10px; box-shadow: 0px 12px 10px -9px rgba(0, 0, 0, 0.16); }
#secStyle .sectit01 { margin-bottom: 50px; }
.secStyle_toptxt { text-align: center; margin-bottom: 50px; }
.style_detail { display: flex; margin-bottom: 50px; }
.style_detail_inner { width: 50%; }
.style_detail_inner_tit { box-shadow: 0 3px 6px rgba(0, 0, 0, .16); padding: 20px; text-align: center; width: 520px; margin: -2.5vw auto 30px; background-color: #F6F3EE; position: relative; border-radius: 30px; }
.style_detail_inner_tit .en { font-size: clamp(2.4rem, 2.0vw, 3.2rem); margin-bottom: 10px; }
.style_detail_inner_tit .jp { font-size: clamp(1.6rem, 1.5vw, 2.4rem); }
.style_detail_inner_txt { padding: 0 10%; text-align: left; margin-bottom: 30px; }
.style_detail_inner_img02 { display: block; padding: 0 3%; margin-bottom: 30px; }
.material_box { margin: 0 3%; border: 1px solid #8B5E3C; padding: 30px 10%; }
.material_box_tit { font-size: 1.5vw; text-align: center; margin-bottom: 30px; }
.material_box_inner { display: flex; flex-wrap: wrap; }
.material_box_inner .wide { width: 48%; margin-bottom: 30px; }
.material_box_inner .small { width: 31%; }
.material_box_inner_item01 { margin-right: 4%; }
.material_box_inner_item03, .material_box_inner_item04 { margin-right: 3.5%; }
.material_box_inner .wide_item_tit { margin-bottom: 5px; font-size: clamp(1.2rem, 1.3vw, 1.6rem); }
.material_box_inner .small_item_tit { min-height: 24px; margin-bottom: 5px; font-size: clamp(1.2rem, 1.3vw, 1.6rem); }
.material_box_inner .item_detail { margin-top: 5px; font-size: clamp(1.0rem, 1.0vw, 1.6rem); }
.material_box_inner .small .item_detail { min-height: 72px; }
.secStyle_btm_txt { text-align: center; }

/*===============================
 footer
===============================*/
footer { background-color: #C6BCB3; }
.footer_inner { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; }
.footer_link { display: flex; }
.footer_link > li:not(:last-of-type) { margin-right: 30px; }
.footer_link > li > a { font-size: 1.4rem; display: block; }
#fixed_btn { z-index: 9999; position: fixed; right: 0; writing-mode: vertical-rl; background-color: #ECD978; top: 32%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); padding: 40px 30px 80px; border-radius: 30px 0 0 30px; font-family: "Noto Sans JP", sans-serif; color: #3F3A39; font-size: 1.5vw; font-weight: bold; border: 3px solid #ECD978; }
#fixed_btn:after { content: ''; background-image: url(images/cta_arrow.png); position: absolute; bottom: 34px; left: 51%; transform: translateX(-50%); -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%);  width: 30px; height: 30px; background-size: cover; }
#fixed_btn:hover { background-color: #fff; }
.copyright { font-size: 1.2rem; }

@media screen and (max-width:767px) {
/* 画面サイズが 767px以下の場合に適用 */
p, li, dt, dd, th, td { font-size: 1.6rem; }
section { padding: 30px 0; }
#wrapper { padding-bottom: 30px; }

/*===============================
 header
===============================*/
#header { padding-top: 0; }
.header_inner { padding: 20px 5%; }
.corp_logo01 { width: 150px; }
.corp_logo02 { width: 70px; }

/*===============================
 MV
===============================*/
#mainview { padding-top: 0; margin-bottom: 0;}
#mainview .mv_product_logo { width: 90%; bottom: 11%; right: auto; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); }
.mv_tit { top: 75px; font-size: 1.9rem; padding: 10px 0; }
.mv_tit span { font-size: 1.5rem; }
.scrolldown4 { display: none; }
.mv_img.pc_wide { display: none; }

/*===============================
 CTA
===============================*/
.cta { padding: 65px 0 0; }
.cta_txt { margin-bottom: 20px; font-size: 1.7rem; }
.cta_txt span.strong { font-size: 2.6rem; }
.cta_box { padding: 60px 5% 30px; }
.catalog_img { top: -25.5vw; width: 75%; }
.cta_txt span.y_underline { padding-bottom: 2px; line-height: 1.8; }
.cta_front { font-size: 2.0rem; margin-bottom: 50px; line-height: 1.7; letter-spacing: 0; }
#cta02 { margin-top: 20px; }
#cta03 { margin-top: 0; }
.cta_txt02:before { width: 30px; height: 30px; top: 66%; left: -2%; }
.cta_txt02:after { width: 30px; height: 30px; top: 66%; right: -2%; }

/* CTAボタン */
.cta_btn { width: 100%; font-size: 1.6rem; min-height: 60px; border-radius: 20px; box-shadow: 4px 4px 0 #786816; }
.cta_btn:after { width: 19px; height: 19px; right: 4%; }
.cta_btn span { font-size: 1.0rem; }

/*===============================
 「木の寛ぎ」と「鉄の安心」をひとつに
===============================*/
.sec_front { margin-bottom: 40px; }
.sec_front .main_copy { font-size: 2.0rem; }
#secMerit .sec_front .main_copy { top: 6%; left: 5%; padding: 10px 15px; }
.sec_front .txt { font-size: 1.6rem; padding: 4% 5%; margin-top: -25px; }
#secMerit { padding: 30px 0 50px; }
#secMerit .sec_front .txt { border-radius: 15px 0 0 15px; }
#secMerit_content01 { margin-bottom: 30px; }
.secMerit_content_tit { font-size: 2.0rem; }
.secMerit_content_box { width: 95%; }
.secMerit_content_box_img { margin-bottom: 12px; }
.secMerit_content_box .tit_en { font-size: 4.5rem; }

/*===============================
 朝日ウッドテック紹介
===============================*/
#secMaterial .sec_front .main_copy { top: 6%; left: 5%; padding: 10px 15px; right: auto; }
#secMaterial .sec_front .txt { border-radius: 0 15px 15px 0; }
#woodtech { flex-wrap: wrap; }
#woodtech .left { width: 100%; margin-bottom: 15px; }
#woodtech .right { width: 100%; padding-left: 0; }
.woodtech_tit { font-size: 2.0rem; margin-bottom: 10px; }

/*===============================
 あなたの暮らしに合うHIRAYAを選ぶ。
===============================*/
#secStyle { padding-bottom: 80px; }
.sectit01 { font-size: 2.2rem; }
.sectit01 span { display: block; width: 90%; margin: 0 auto; border-bottom: 1px solid #DAD3C8; box-shadow: 0px 8px 8px -9px rgba(0, 0, 0, 0.16); }
#secStyle .sectit01 { margin-bottom: 20px; }
.secStyle_toptxt { margin-bottom: 30px; }
.style_detail { flex-wrap: wrap; margin-bottom: 30px; }
#style_detail_inner01 { margin-bottom: 40px; }
.style_detail_inner { width: 100%; }
.style_detail_inner_tit { width: 90%; border-radius: 20px; padding: 15px 20px; margin: -17px auto 20px; }
.style_detail_inner_tit .en { font-size: 2.4rem; margin-bottom: 5px; }
.style_detail_inner_tit .jp { font-size: 1.6rem; }
.style_detail_inner_txt { padding: 0 5%; margin-bottom: 20px; text-align: left; }
.style_detail_inner_img02 { padding: 0 5%; }
.material_box { margin: 0 5%; padding: 20px 5%; }
.material_box_tit { font-size: 2.0rem; margin-bottom: 20px; }
.material_box_inner .wide { width: 100%; margin-bottom: 25px; }
.material_box_inner .small { width: 48%; }
.material_box_inner_item01 { margin-right: 0; }
.material_box_inner .wide_item_tit, .material_box_inner .small_item_tit { font-size: 1.4rem; }
.material_box_inner .wide .item_detail { font-size: 1.3rem; }
.material_box_inner .small .item_detail { font-size: 1.3rem; }
.material_box_inner_item04 { margin-right: 0; }
.secStyle_btm_txt { text-align: left; padding: 0 5%; }

/*===============================
 footer
===============================*/
footer { padding-bottom: 80px; }
.footer_inner { flex-wrap: wrap; padding: 20px 5%; justify-content: center; }
.footer_link { width: 100%; flex-wrap: wrap; margin-bottom: 25px; }
.footer_link > li { width: 50%; }
.footer_link > li:not(:last-of-type) { margin-right: 0; margin-bottom: 10px; }
.footer_link > li > a { font-size: 1.2rem; text-align: center; }
.copyright { font-size: 0.8rem; text-align: center; }
#fixed_btn { right: auto; top: auto; transform: none; -webkit-transform: none; -ms-transform: none; bottom: 0; writing-mode: horizontal-tb; font-size: 2.0rem; width: 100%; border-radius: 0; padding: 15px 57px; text-align: right; height: 66px; }
#fixed_btn:after { left: auto; transform: none; -webkit-transform: none; -ms-transform: none; bottom: auto; top: 50%; right: 5%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); width: 25px; height: 25px; }
#fixed_btn:before { content: ''; background-image: url(images/catalog.png); position: absolute; bottom: 3px; left: 3%; width: 136px; height: 81px; background-size: cover; }
}

@media screen and (min-width:768px) and (max-width:1024px) {
/* 画面サイズが 1024px以下の場合に適用 */
p, li, dt, dd, th, td { font-size: 2.2vw; }
section { padding: 70px 0; }
#wrapper { padding-bottom: 50px; }

/*===============================
 header
===============================*/
.header_inner { padding: 25px 5%; }
.corp_logo01 { width: 200px; }
.corp_logo02 { width: 110px; }

/*===============================
 MV
===============================*/
#mainview { margin-bottom: 0; }
.mv_tit { top: 96px; font-size: 3.6rem; }
.mv_tit span { font-size: 2.6rem; }
.mv_img.pc_wide { display: none; }

/*===============================
 CTA
===============================*/
.cta { padding: 220px 0 0; }
.cta_txt { margin-bottom: 20px; font-size: 2.2rem; }
.cta_txt span.strong { font-size: 4.2rem; }
.cta_box { padding: 100px 5% 50px; }
.catalog_img { top: -24.5vw; width: 70%; }
.cta_txt span.y_underline { padding-bottom: 2px; line-height: 1.8; }
.cta_front { font-size: 3.2vw; margin-bottom: 0; line-height: 1.7; }
.cta_txt br.sp { display: block; }
#cta02 { padding: 180px 0 0; margin-top: 0; }
#cta03 { margin-top: 0; }
.cta_txt02:before { top: 66%; left: 8%; }
.cta_txt02:after { top: 66%; right: 8%; }

/* CTAボタン */
.cta_btn { width: 100%; max-width: 540px; font-size: 2.6rem; min-height: 100px; border-radius: 35px; box-shadow: 4px 4px 0 #786816; }
.cta_btn:after { width: 28px; height: 28px; right: 5%; }
.cta_btn span { font-size: 1.6rem; }

/*===============================
 「木の寛ぎ」と「鉄の安心」をひとつに
===============================*/
.sec_front { margin-bottom: 70px; }
.sec_front .main_copy { font-size: 3.6vw;  }
#secMerit .sec_front .main_copy { left: 8%; }
.sec_front .main_copy br.sp { display: block; }
.sec_front .txt { font-size: 2.2vw; width: 90%; padding: 30px 5vw 30px 50px; margin-top: -4.5vw; }
#secMerit .sec_front .txt { border-radius: 40px 0 0 40px; }
.secMerit_content_tit { font-size: 3.6vw; }
.secMerit_content_box .tit_en { font-size: 12vw; }
#secMerit_content01 { margin-bottom: 50px; }

/*===============================
 朝日ウッドテック紹介
===============================*/
#secMaterial { padding-bottom: 30px; }
#secMaterial .sec_front .main_copy { right: 8%; }
#secMaterial .sec_front .txt { border-radius: 0 40px 40px 0; }
#woodtech .left { width: 48%; }
#woodtech .right { width: 52%; padding-left: 4%; }
.woodtech_tit { font-size: 2.8vw; margin-bottom: 15px; font-weight: 700; }

/*===============================
 あなたの暮らしに合うHIRAYAを選ぶ。
===============================*/
.style_detail { margin-bottom: 30px; }
.style_detail_inner { width: 50%; }
.style_detail_inner_tit { width: 320px; border-radius: 20px; padding: 15px; }
.style_detail_inner_tit .en { font-size: 2.6vw; margin-bottom: 7px; }
.style_detail_inner_tit .jp { font-size: 2.0vw; }
.sectit01 { font-size: 3.6vw; }
.material_box { padding: 20px 5%; }
.material_box_tit { font-size: 2.4vw; margin-bottom: 20px; }
.material_box_inner .small { width: 48%; }
.material_box_inner_item03 { margin-right: 4%; }
.material_box_inner_item04 { margin-right: 0; }
.material_box_inner .item_detail { font-size: 1.6vw; }

/*===============================
 footer
===============================*/
.footer_inner { display: block; }
.footer_link { justify-content: center; margin-bottom: 10px; }
.footer_link > li > a { font-size: 1.5rem; }
.copyright { text-align: center; font-size: 1.1rem; }
#fixed_btn { font-size: 2.6vw; padding: 40px 25px 80px; }
#fixed_btn:after { width: 27px; height: 27px; }

}

@media screen and (min-width:900px) and (max-width:1024px) {
/*===============================
 CTA
===============================*/
.cta { padding: 290px 0 0; }
.catalog_img { width: 65%; }
.cta_txt { font-size: 3.2rem; }
.cta_txt span.strong { font-size: 5.2rem; }
.cta_btn { max-width: 740px; font-size: 3.6rem; min-height: 130px; }
.cta_btn:after { width: 42px; height: 42px; }

/*===============================
 「木の寛ぎ」と「鉄の安心」をひとつに
===============================*/
#secMerit { margin-bottom: 60px; }

/*===============================
 あなたの暮らしに合うHIRAYAを選ぶ。
===============================*/
.style_detail_inner_tit { width: 400px; }
}

@media screen and (min-width:1025px) and (max-width:1420px) {
.catalog_img { width: 640px; }
.style_detail_inner_tit { width: 420px; }
}

@media screen and (max-width:380px) {

}