@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(2) 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;
	}
}

/* ---------------------------
22/08/07 saitou add
--------------------------- */
body{
font-size:1.6rem;
}
header{
	margin-bottom:0!important;
}
.globalNav li{margin:10px 0;}
.globalNav li a{
	padding:10px;
}
.globalNav li a:hover{
	color:#ffffff;
}
.blog-content-wrapper h4{font-size:2rem;}
.article-wrapper h3:first-child{font-size:2.8rem;}
div.wpcf7 .wpcf7-submit{font-size:1.6rem; padding:1em;}
h3{
	font-size:3.4rem;
	line-height:1.4;
	letter-spacing:.1em;
}
h4{
	font-size:2.4rem;
	line-height:1.4;
}
.mb30{margin-bottom:30px;}
.mb50{margin-bottom:50px;}
.title-wrapper p{color:#532d00!important;}
.button{padding:16px 0;}
.sttl h3{font-size:3.2rem;}
.sttl span{font-size:2.4rem;}
h4.sttl{font-size:2.8rem;}
h4.sttl span{font-size:2rem;}
.linettl h3::after {
	content: '';
	display: block;
	background: #532d00;
	height: 1px;
	width: 100px;
	margin:20px auto 0;
}
h4.linettl::after {
	content: '';
	display: block;
	background: #532d00;
	height: 1px;
	width: 100px;
	margin:20px auto 0;
}
.size-auto h3 img{
	width:auto;
	height:auto;
}
table.original-table{border:20px solid #ecf7fc; border-collapse:separate;}
table.original-table th{background-color:#532d00!important; color:#ffffff!important; border-bottom:1px solid #ecf7fc;}
table.original-table td{border-bottom:1px solid #ecf7fc;}
#home01 {padding:266px 0 0;}
#home01 h3 {
	background: rgba(160, 216, 239, 0.9);
        color: #532d00;
        padding: 60px 30px;
        position: relative;
    }
#home01 h3::before {
        content: "";
        background: url(/wp-content/uploads/2022/09/001_bk.jpg) no-repeat center center / cover;
        width: 100%;
        height: 466px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
#home01 .content-wrapper {
	max-width: 100%;
    }
@media screen and (min-width: 768px){
#home02{padding:0;}
#home02 .content-wrapper{max-width:100%;}
#home02 .section-child-num0 {flex: 6; margin:0 50px 0 0;}
#home02 .section-child-num1 {
	flex: 4;
	margin:auto 100px auto 0;
	max-width:530px;
}
#home02 .contents-num0 img{
	width:100%;
}
}
.home05{margin-bottom:0!important;}
#home06{position:relative;}
#home06::before {
	content: "";
	background: url(/wp-content/uploads/2022/09/006_bk.png) no-repeat center center / cover;
	background-size:100% 582px;
	width: 100%;
	height:582px; 
	position: absolute;
	right: 0;
	z-index: -1;
    }
.contact-box{
	border-bottom:1px solid #ffffff;
	padding:1em 0 2em;
	margin:0 auto;
	max-width:630px;
}
.contact-box-line {
	color:#ffffff;
	margin-bottom:20px;
	position: relative;
	text-align:center;
    }
.contact-box-line::before, .contact-box-line::after {
	content: "";
	width: calc(30% - 4em);
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
    }
.contact-box-line::before {
        left: 0;
    }
.contact-box-line::after {
        right: 0;
    }
#home08 .button,#about03 .button{background-color:#ffffff!important; border-color:#ffffff!important; color:#532d00!important;}
#home08 .button:hover,#about03 .button:hover{background-color:#532d00!important; color:#ffffff!important;}
#about01{position:relative;}
#about01::before  {
	top: 50px;
	left: 5%;
	width: 439px;
	height: 556px;
	background-image:url(/wp-content/uploads/2022/09/001_-bk1.jpg);
	z-index:-2;
  }
#about01::before, #about01::after,#about01 .content-wrapper::after {
    position: absolute;
    background-size: contain;
    content: ''
}
#about01::after{
	bottom:-40px;
	right: 7%;
	width: 333px;
	height: 434px;
	background-image:url(/wp-content/uploads/2022/09/001_-bk2.jpg);
	z-index:-2;
  }
#about01 .content-wrapper::after{
	bottom:0px;
	right: 36%;
	width: 253px;
	height: 103px;
	background-image:url(/wp-content/uploads/2022/09/001_img3.png);
	z-index:-1;
  }
@media screen and (min-width: 768px){
#about01 .images-item1{
	position: absolute;
	top: 17px;
	width: 270px;
	height:177px;
	z-index:-1;
}
#about01 .images-item2{
	position: absolute;
	top: auto;
	bottom: 120px;
	margin-left:850px;
	width: 300px;
	height:200px;
}
}
#about02 .content-repeat-wrapper{
	background:url(/wp-content/uploads/2022/09/002_bk-1.jpg) top center/cover;
	padding:3em 3em 1em;
}
#about03 .content-repeat-wrapper{
	background:url(/wp-content/uploads/2022/09/003_bk.jpg) top center/cover;
	padding:3em;	
}
#about04{background-color:#f6f6f6;}
#service01 .content-repeat-box{background-color:#ffffff; padding-bottom:2em;}
#service01 .content-repeat-box .contents-num1,#service01 .content-repeat-box .contents-num2,#service01 .content-repeat-box .contents-num3{padding-left:16px; padding-right:16px;}
#service02 ul,#service03 ul.check_mark{background-color:#a0d8ef; padding:1em 2em;}
.content-list li{padding:5px 0;}
.content-list li p{padding-left:1.5em;}
.content-list.list-icon li:before{top:10px;}
#service05 .content-wrapper{background:url(/wp-content/uploads/2022/09/005_bk-1.jpg) no-repeat center top; padding-top:350px;}
#service05 .content-repeat-wrapper{background-color:#ffffff; padding:3em; max-width:1000px; margin:0 auto;}
.information02 h3{margin-bottom:10px;}
#contact01{padding:30px;}
#contact01 .content-wrapper{background:rgba(255,255,255,0.8); padding:3em;}
/* ---------------------------
22/08/07 saitou add mobile
--------------------------- */
@media only screen and (max-width: 767px){
.content-child-button{
width:80%;
}
h3{
	font-size:2.4rem;
	line-height:1.4;
}
h4{
	font-size:2rem;
	line-height:1.4;
}
.sttl h3{font-size:2.4rem;}
.sttl span{font-size:2rem;}
h4.sttl{font-size:2.6rem;}
h4.sttl span{font-size:1.8rem;}
.content-child-button{
	width:100%!important;
}
.size-auto h3 img{
width:100%;
height:100%;
}
#home01 {padding:200px 0 0;}
#home01 .section-child-num0{padding-left:12.5px; padding-right:12.5px;}
#home01 h3 {padding: 1em;}
#home01 h3::before {
        width: 100%;
        height: 200px;
    }
#home02 .content-repeat-wrapper,#home06 .content-repeat-wrapper,#service02 .content-repeat-wrapper{
	flex-direction: column-reverse;
	}
#home02 .section-child-num0,#home06 .section-child-num0,#service02 .section-child-num0{
	padding-top:0;
	padding-right:0;
	margin-top:25px;
	}
#home06::before {
	background-size:100% 400px;
	height:400px;
    }
.contact-box{
	border-bottom:1px solid #ffffff;
	padding:1em 0 2em;
	margin:0 auto;
	max-width:100%;
}
	#about01::before  {
	top: 30px;
	left: 5%;
	width: 200px;
	height: 254px;
  }
#about01::after{
	bottom:-40px;
	right: 7%;
	width: 150px;
	height: 196px;
	z-index:-3;	
  }
#about01 .content-wrapper::after{
	bottom:-30px;
	right: 0;
	width: 253px;
	height: 103px;
  }
#about01 .images-item1{
	position: absolute;
	left:20px;
	bottom: 0px;
	width:200px;
	height:131px;
	z-index:-2;
}
#about01 .images-item2{
	position: absolute;
	top: inherit;
	bottom: 80px;
	margin-left:120px;
	width:200px;
	height:133px;
	z-index:-1;	
}
#about01 .content-repeat-wrapper{padding-bottom:200px;}
#about02 .content-repeat-wrapper{
	background:url(/wp-content/uploads/2022/09/002_bk-1.jpg) top center/cover;
	padding:2em 2em .5em;
}
#about03 .content-repeat-wrapper{
	background:url(/wp-content/uploads/2022/09/003_bk.jpg) top center/cover;
	padding:2em;	
}
#about04 .section-child-num1{margin-bottom:30px;}
#contact01{padding:10px;}
#contact01 .content-wrapper{padding:1em;}
	
}
