@charset "utf-8";

@import url("assets/css/base.css");
@import url("assets/css/page.css");
@import url("assets/css/custom_parts.css");

.reset-margin .content-repeat-box + .content-repeat-box {
	margin-left: 0 !important;
}

/* ---------------------------

ヘッダー　-共通CSS

---------------------------*/
/*　「ヘッダータイプ　-ナビ左：縦並び　-メニュー固定」以外のロゴ、電話番号（ナビ）部分　　*/
.header-face {
	padding: 25px;
}
.header-face-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-face img {width: auto;}

/*　スマホ用ヘッダー　　*/
.mobile-header {
	position: relative;
}

.icon-hamburger {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: fixed;
	right: 20px;
	width: 60px;
	height: 60px;
	top: 20px;
	z-index: 200;
	background: #fff;
	cursor: pointer;
}
.icon-hamburger span:not(:last-child) {
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #222;
	border-radius: 4px;
	transition: all 0.4s;
}
.icon-hamburger .menu {
	font-size: 1.0rem;
	position: absolute;
	top: 36px;
	left: 14px;
	opacity: 1;
}
.icon-hamburger span:nth-of-type(1) {top: 15px;left: 15px;}
.icon-hamburger span:nth-of-type(2) {top: 24px;left: 15px;}
.icon-hamburger span:nth-of-type(3) {top: 33px;left: 15px;}

.drawer-open .icon-hamburger span:nth-of-type(1) {
	width: 65%;
	transform: translate3d(-5px, 13px, 0) rotate(45deg);
}
.drawer-open .icon-hamburger span:nth-of-type(2) {
	transform: translate3d(13px, 0, 0) rotate(0);
	width: 0;
}
.drawer-open .icon-hamburger span:nth-of-type(3) {
	width: 65%;
	transform: translate3d(-5px, -5px, 0) rotate(-45deg);
}
.drawer-open .icon-hamburger span:last-child {opacity: 0;}

.drawer-contain .logo {margin: 20px;}
.drawer-contain .logo img {width: auto;}
.mobileNav a {
	display: block;
	padding: 15px;
	position: relative;
	transition: 0.5s;
}
.mobileNav a:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border: 1px solid;
	border-color: #565656 #565656 transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -3px;
}
.mobileNav a:hover:after {
	border-color: #fff #fff transparent transparent;
}
.mobileNav li {
	border-top: 1px solid #F5F5F5;
}
.mobileNav .sub-menu a {
	padding-left: 45px;
}

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

	.drawer-contain .logo img {width: 100%;}
	.drawer-contain .logo {max-width: 150px;}

	.header-face {padding: 15px;}

	.header-face-inner > * {max-width: 45%;}
	.header-face-inner .tel {display: none;}
	.header-face-inner img {width: 100%;}

}

/* ---------------------------

メイン画像　-基本設定-

---------------------------*/

/*  横：コンテンツ幅（max-width：1100px）  */
.main-iamge-content-fix .main-image-inner,
.main-iamge-content-fix .main-image-text-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/*  横：ウィンドウ幅（max-width：2200px）・ヒーローヘッダー（max-width：2200px）  */
.main-iamge-window-fix .main-image-inner,
.main-iamge-hero .main-image-inner ,
.main-iamge-window-fix .main-image-text-inner,
.main-iamge-hero .main-image-text-inner {
	max-width: 2200px;
	margin: 0 auto;
}

/*  ヒーローヘッダー（max-width：2200px）時の重なり調整  */
.main-iamge-hero .header-face,
.main-iamge-hero .globalNav {
	position: relative;
	z-index: 10;
}

/* ---------------------------

メイン画像　-下層ページ-

---------------------------*/

.lower-main-image .main-image-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
	max-height: 200px;
}
.lower-main-image .title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(255, 255, 255,0.7);
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 130px;
    text-align: center;
    font-size: 3.0rem;
    letter-spacing: 0.08em;
    vertical-align: middle;
    line-height: 130px;
	color: #222;
}
/*  ヒーローヘッダー（max-width：2200px）  */
.main-iamge-hero .main-image-inner {
	max-height: none;
}
.main-iamge-hero .main-image-inner img {
	object-fit: cover;
}
.main-iamge-hero .lower-main-image .title-wrapper {
	top: auto;
	bottom: 20px;
	transform: translateY(0) translateX(-50%);
}

@media screen and ( max-width: 767px) {
	.header-wrapper:not(.main-iamge-hero) .lower-main-image .main-image-inner  {
		max-height: 100px;
	}
	.lower-main-image .title-wrapper {
		font-size: 2.0rem;
		line-height: 60px;
		height: 60px;
	}
}

/* ---------------------------

グローバルナビ　-共通CSS

---------------------------*/
.globalNav {
	position: relative;
	z-index: 999;
}
.globalNav li a {
	display: block;
	height: 100%;
	transition: 0.5s;
}

.globalNav .sub-menu li {
	transition: 1s;
	overflow: hidden;
}

.globalNav-wrapper > li > a,
.globalNav-fixed > li > a,
.globalNav-tel > li > a {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
	padding: 20px;
}

.globalNav-wrapper > li > a span,
.globalNav-fixed > li > a span,
.globalNav-tel > li > a span {
    font-size: 1.2rem;
    font-weight: normal;
}

@media screen and ( max-width: 767px) {
	.globalNav {
		display: none;
	}
}

.globalNav li li {
	background-color: rgba(255,255,255,0.8);
}


/* ---------------------------

パンくずリスト

---------------------------*/
.header_type1.navi_position2 .main-iamge-hero .breadcrumb,
.header_type1.navi_position3 .main-iamge-hero .breadcrumb,
.header_type2.navi_position3 .main-iamge-hero .breadcrumb {background: none!important;}

.breadcrumb a {
	color: #222;
	text-decoration: underline;
}
.breadcrumb a:hover {
	text-decoration: none;
}
.breadcrumb ul {
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 0;
}
.breadcrumb li {
	display: inline-block;
}
.breadcrumb li:first-child {
	font-weight: bold;
}
.breadcrumb li:first-child:before {
	font-family: "Font Awesome 5 Free";
	content: "\f015";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	margin-right: 10px;
}
.breadcrumb li:not(:first-child):before {
	content: '>';
	margin: 0 10px;
}

/* ---------------------------

フッター

---------------------------*/
footer {
	text-align: center;
	padding: 50px 12.5px 10px;
	margin-top: 50px;
}
.footer-wrapper {margin-bottom: 30px;}
.footerNav {margin-bottom: 40px;}
.footerNav-inner {
	display: flex;
	justify-content: space-between;
	text-align: left;
	width: 70%;
	max-width: 1100px;
	margin: 0 auto;
	line-height: 1;
}
.footerNav-inner a {
	transition: 0.5s;
	opacity: 1;
}
.footerNav-inner a:hover {
	opacity: 0.7;
}
.footerNav-inner > li > a {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
}
.footerNav-inner > li > a span {
    font-size: 1.2rem;
    font-weight: normal;
}
.footerNav-inner .sub-menu {
    line-height: 2.3;
    margin-top: 20px;
}

.footer-logo {font-size: 1.6rem;}
.footer-logo img {width: auto;}
.footer_info {
    font-size: 1.2rem;
    opacity: 0.8;
}
.footer_copy {
    text-align: center;
    opacity: 0.5;
}

.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.7);
}

.mobile-footer-menu li {
    height: 50px;
    width: 33.3%;
    text-align: center;
    align-self: center;
    font-size: 1.1rem;
}
.mobile-footer-menu li + li {
    border-left: 1px solid #d8d8d8;
}

.mobile-footer-menu a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 9px;
}
.mobile-footer-menu li:nth-child(1) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f1e0";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}
.mobile-footer-menu li:nth-child(3) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}
/*.mobile-footer-menu li:nth-child(3) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}*/

.modalwin {
	position: fixed;
	width: 90%;
	z-index: 1;
}
.modalwin.show {display: block;}
.modalwin.hide {display: none;}

.modalwin ul {
    display: flex;
    justify-content: center;
}

.modalwin ul li + li {margin-left: 5px;}

.modalwin button {
    font-size: 3.0rem;
    display: inline-block;
    color: #fff;
}

#shade {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #222;
	opacity: 0.7;
	z-index: 1;
}
@media screen and (min-width: 768px) and ( max-width: 1100px) {
	.footerNav-inner {
		width: 100%;
	}
}
@media screen and ( max-width: 767px) {
	.mobile-footer-menu {
    display: flex;
	}
	footer {
		padding: 0 0 10px;
		margin-bottom: 50px;
	}
	.footerNav {margin-bottom: 20px;}
	.footerNav-inner {
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 100%;
		text-align: center;
	}
	.footerNav-inner li:nth-child(2n) {border-left: 1px solid #d1d1d1;}
	.footerNav-inner .sub-menu {display: none;}

	.footerNav a {
		display: block;
		/* width: 50%; */
		padding: 15px;
	}
	.footerNav li {
		width: 50%;
		border-bottom: 1px solid #d1d1d1;
	}
}







/* ---------------------------
SNSバナー
--------------------------- */
.bnr-area {
	border-top: 1px solid #bfbfbf;
	background-color: #ddd;
	padding: 30px;
/*	margin-top: 50px;*/
	}

.blog-wrapper {
	margin-bottom: 50px!important;
}

.bnr-area_inner {
	max-width: 1100px;
	margin: 0 auto;
	}

.bnr-area ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer {
	margin-top: 0;
}


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

	.bnr-area ul {
		display: block;
	}

	.bnr-area ul li {
		margin-bottom: 20px;
	}

	.bnr-area ul li:last-child {
		margin-bottom: 0px;
	}
}

.bnr-area ul li:first-child:nth-last-child(4),
.bnr-area ul li:first-child:nth-last-child(4) ~ li {
    width: 24%;
}

@media screen and (max-width: 767px) {
    .bnr-area ul li:first-child:nth-last-child(4),
    .bnr-area ul li:first-child:nth-last-child(4) ~ li {
        width: 100%;
    }
}





/* ---------------------------
インスタバナー
--------------------------- */

.insta .insta_sp {
	display: none;
	}

.drawer-contain .insta img {
	width: auto;
	}

.drawer-contain .insta .insta_pc {
	padding: 10px;
	}


@media screen and (max-width: 767px) {
	.insta .insta_sp {
		display: block;
		}

	.insta .insta_sp img {
		width: 100%;
		}

	.insta .insta_pc {
		display: none;
		}

	.drawer-contain .insta.insta_sp {
		text-align: center;
		padding-bottom: 2%;
		width: auto;
		}

	.drawer-contain .insta.insta_sp img {
		width: auto;
		}
	}



/* ---------------------------
PCとSPで画像を切り分け
--------------------------- */
.sp_disp {
	display:none;
}

@media only screen and (max-width: 767px){
	.pc_disp {
		display:none;
	}

	.sp_disp {
		display:block;
	}
}



/* ---------------------------
スマホのグローバルメニューがスクロールできるように
--------------------------- */
@media only screen and (max-width: 767px){
	.mobile-header .drawer-contain {
		touch-action: auto !important;
		overflow-y: scroll !important;
	}
}

/* ---------------------------
プライバシーポリシー
--------------------------- */
.inline_box {
    width: 100%;
    height: 200px;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
.inline_box .privacy_001_txt {
    margin-top: 25px;
}
.inline_box .privacy_001_txt span {
    font-weight: bold;
}
.inline_box ul {
    margin-top: 15px;
    margin-bottom: 15px;
}
.inline_box ul li {
    text-indent: -20px;
    padding-left: 25px;
}

/* ---------------------------
reCAPTCHAのロゴ表示位置調整
--------------------------- */
@media only screen and (min-width: 768px) {
    #page-top {
        bottom: 170px;
    }
    .grecaptcha-badge {
        bottom: 100px !important;
    }
}
@media only screen and (max-width: 767px) {
    .grecaptcha-badge {
        bottom: 150px !important;
    }
}

/* ---------------------------
スマホ横ゆれ防止
--------------------------- */
@media only screen and (max-width: 767px) {
html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
}

/* ---------------------------
追加CSS
--------------------------- */
header{
	margin-bottom:30px !important;
}

.lower-main-image .title-wrapper{
	background:none !important;
	color:#191919 !important;
}

h2{
	font-weight:700;
}

h3{
	font-size:3.6rem;
	color:#191919;
	line-height:1.6;
}

h4{
	font-size:2.6rem;
	color:#191919;
}

.tit01{
	padding:2px;
}

.tit02{
	font-size:2.4rem;
	background: linear-gradient(180deg,transparent 0%,transparent 55%,#bbb674 55%,#bbb674 100%);
}

.tit03{
	background: linear-gradient(180deg,transparent 0%,transparent 50%,#ecebd8 50%,#ecebd8 100%);
	padding:6px 2px;
}

.tit04{
	font-weight:700;
	font-size:1.8rem;
}

.tit05{
	border-bottom: 2px solid #bbb674;
}

.tit06{
		background: linear-gradient(180deg,transparent 0%,transparent 55%,#bf9867 55%,#bf9867 100%);
}

.globalNav-wrapper > li > a{
	font-size:1.5rem;
}

.design_button_type4 .button{
	font-family: 'Noto Sans JP', sans-serif;
	border: 3px solid #191919 !important;
	position:relative;
	font-size:1.8rem;
	font-weight:700;
	box-shadow:0px 2px 0px #191919;
}

.design_button_type4 .button:hover{
	background:#191919 !important;
	color:#fff !important;
}

.design_button_type4 .button::after{
	font-family: "Font Awesome 5 Free";
   content: "\f061";
   position: absolute;
   right: 15px;
   top: 20%;
	color:#191919;
	}

.design_button_type4 .button:hover::after{
	color:#fff;
	}

.content-child-button{
    width: 100%;
    max-width: 490px;
}

.tit_deco{
	width:15%;
	margin: 0 auto;
}

.w30{
	width:30%;
	margin: 0 auto;
}

.center{
	text-align:center;
}

.red{
	color:#ff0000;
}

.bg_w{
	background:rgba(255,255,255,0.7);
	padding:4% 3%;
}

#question .content-repeat-wrapper{
	gap:35px;
}

#customer ul, #contact ul{
	display:flex;
	justify-content:center;
	gap:20px;
}

#check .layout-tandem .content-repeat-box > *:not(:last-child) {
	margin-top:80px;
	}

#sample ul, #decorie ul {
    border: 2px solid #191919;
    padding: 30px 30px 20px;
	background:#fff;
}

#sample li, #decorie li {
    border-bottom: dotted 2px #191919;
    margin-bottom: 8px;
    font-weight: 700;
}

#sample li:before, #decorie li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 700;
    padding-right: 1.2rem;
    color: #a19c56;
}

#nurikae .content-repeat-wrapper{
	background: rgba(161,156,86,0.7);
   padding: 30px 30px 30px 20px;
	}

#material .bg{
	background:rgba(255,255,255,0.8);
	padding:20px;
}

table:not(.xo-month) th{
	background:#ecebd8;
/* 	background:#e6d8c6; */
	border:2px solid #191919;
}
table:not(.xo-month) td{
	border:2px solid #191919;
}

table.original-table{
	border:2px solid #191919;
}

table.original-table th{
	color:#191919;
}

.sub-title{
	border-bottom:2px dotted #191919;
}

.article-info .post-categories a{
	background:#a19c56;
}

.fixed-menu{
	background: #a19c56;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
}

#page-top a{
	background:#191919;
}

@media only screen and (max-width: 767px){
	header{
	margin-bottom:0 !important;
	}
	
	h3{
	font-size:2.4rem;
	}
	
	.tit02{
	font-size:1.6rem;
	}
	
	h4{
	font-size:2rem;
	}
	
	.w30{
		width:90% !important;
	}
	
	.tit_deco{
		width:40% !important;
	}
	
	#question .content-repeat-wrapper{
	gap:0;
	}
	
	#question img{
		padding:0 5%;
	}
	
	#customer ul, #contact ul{
		display:block;
	}
	
	#customer li, #contact li{
		margin-bottom:10px;
	}
	
	#point.section-wrapper.section-num0 {
    margin-bottom: 50px;
    background: url(/wp-content/uploads/2022/12/bg_point.png) no-repeat right top;
	}
	
	#sample.section-wrapper.section-num1 {
    margin-bottom: 50px;
    background: url(/wp-content/uploads/2022/12/bg_sample2.png) no-repeat left top;
	}
	
	#check .layout-tandem .content-repeat-box > *:not(:last-child) {
	margin-top:20px;
	}
	
/* 	#info .content-repeat-wrapper{
		background:rgba(255,255,255,0.8);
		padding:3%;
	} */
	
	.company table:not(.xo-month) th,
	.company table:not(.xo-month) td{
	border:none;
	}
	
	/* footer button	 */
	/*.mobile-footer-menu li{
		width:50%;
	}
	
	.mobile-footer-menu li:last-child{
		display:none;
	}*/
}
/* ---------------------------
ページ下部にナビバナー追加
--------------------------- */

@media only screen and (min-width: 768px){
    .bottom_nav img {
        width: auto;
        position: fixed;
        bottom: 0px;
        right: 0px;
    }
}

@media only screen and (max-width: 767px){
    .footer_copy {		/*コピーライトとかぶらないように下にpaddingを設定する*/
        padding-bottom: 80px; /*バナーの高さに合わせて数値は変更*/
    }

    .bottom_nav {
        margin-bottom: 50px; /*バナーの高さに合わせて数値は変更*/
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
    }
}