@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.share-icon 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.tel-icon 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.mail-icon 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 (max-width: 767px) {
    .grecaptcha-badge {
        bottom: 140px !important;
    }
}

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

/* ---------------------------
固定バナー位置調整
--------------------------- */
.fixed-menu {
    bottom: 260px;
    top: unset;
}
@media only screen and (min-width: 768px){
    #page-top {
        bottom: 100px !important;
    }
}
.footer-snsicons-list {
    justify-content: center;
}
#page-top {
    right: 0;
}
.fa-line {
    font-size: 20px;
    display: block !important;
    color: #06c755 !important;
}

/* ---------------------------
スマートフォンのハンバーガーメニューの短冊型のアニメーションのスクロール時の背景色修正
--------------------------- */
.drawer-open .drawer-contain {
    background-color: #fff;
    transition-property: background-color,color;
    transition-delay: 1s; /*--1秒後に効果が開始されます--*/
}

/* ---------------------------
追加CSS
--------------------------- */
.main-image-text-box {
	background: #fff !important;
	padding: 40px 24px !important;
	max-width: 500px !important;
}

.main-image-text-main {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700 !important;
	color:#3e3e3e !important;
	font-size: 3.2rem !important;
}

/*共通cta*/
.cta-block{
	/*background:url("/wp-content/uploads/2024/03/bg_contact.jpg") no-repeat center top / cover;*/
	background-image:url(/wp-content/uploads/2024/04/bg_cta_head.png),
		url(/wp-content/uploads/2024/04/bg_cta_bottom.png),
		url(/wp-content/uploads/2024/04/bg_cta_img-4.jpg);
	background-position:center top 8px,left bottom,center;
	background-repeat:no-repeat,repeat-x,repeat;
	background-size:90%,auto ,auto;
	padding: 5% 25px 8% !important;
	text-align:center;
}
@media only screen and (max-width: 767px){
	.cta-block{
	background-image:
		url(/wp-content/uploads/2024/04/bg_cta_bottom.png),
		url(/wp-content/uploads/2024/04/bg_cta_img-4.jpg);
	background-position:left bottom,center;
	background-repeat:repeat-x,repeat;
	background-size:400px ,20%;
	padding: 5% 25px 8% !important;
}
}

.cta-bnr{
	display:flex;
	gap:20px;
}

.lower-main-image .title-wrapper{
	background:none !important;
	color:#3c3c3c !important;
	font-weight:700;
}

h3{
	font-size:3.6rem;
	line-height:1.4;
}

h4{
	font-size:2.4rem;
	line-height:1.4;
}

.sub{
	font-size:2rem;
	display:block;
}

.sub-red{
	font-size:2rem;
	color:#800a11;
}

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

.fixed-menu{
	background:#1e8ccc;
	font-family: "Zen Maru Gothic", serif;
}

.center{
	text-align:center;
}

.bold{
	font-weight:700;
}

.red{
	color:#ff3000;
}

.white{
	color:#fff;
}

.mb30{
	margin-bottom:30px;
}

.must th:before{
	background:#ff3000;
}

table:not(.xo-month) th{
	background:#a5cee6;
	border:1px solid #e9f3f9;
}

table:not(.xo-month) td{
	border:1px solid #e9f3f9;
	text-align:left;
}

table.original-table{
	border:10px solid #e9f3f9;
}

table.original-table th{
	color:#3c3c3c;
}

table.original-table tr + tr{
	border:none;
}

.parallax.section-wrapper:not(:last-child){
	margin-bottom:0;
}

.btn_orange .button{
	background:#ff9000 !important;
	border:solid 2px #ff9000 !important;
}

.btn_orange .button:hover {
    color: #ff9000 !important;
    background: #fff !important;
    border:solid 2px #ff9000 !important;
}

.icon li{
	border-bottom:1px solid #3c3c3c;
	padding:6px 0;
}

.icon li:before{
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-weight: 700;
	padding-right: 1.2rem;
	color: #ff9000;
}

.info h3{
	text-align:center;
}

@media only screen and (max-width: 767px){
	.main-image-text-box {
	background: #fff !important;
	padding: 40px 24px !important;
	max-width: 80% !important;
	}

	.main-image-text-main {
		font-size: 2.2rem !important;
	}
	
	h3{
	font-size:2.2rem;
	}

	h4{
	font-size:1.8rem;
	}
	
	.sub{
	font-size:1.6rem;
	}
	
	.cta-bnr{
	display:block;
	}
	
	.cta-bnr li{
		margin-bottom:20px;
	}
	
	#about.section-wrapper{
		margin-top: -50px;
		background: #e9f3f9;
	}
	
	#feature02 .content-repeat-wrapper,
	#reform02 .content-repeat-wrapper{
		flex-direction:column-reverse;
	}
	
	#feature02 .margin-set,
	#reform02 .margin-set{
		margin-top:25px;
	}
}


ul.ashiba-list{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:1%;
}
ul.ashiba-list li{
	width:23%;
	margin-bottom:28px;
	text-align:center;
}
ul.ashiba-list li span{
	display:inline-block;
	margin-top:6px;
	background: linear-gradient(transparent 60%, #a5cee6 60%);
	font-size:20px;
	font-family: "Zen Maru Gothic", serif;
	font-weight:bold;
}

div.ashiba-caption{
	text-align:center;
}
div.ashiba-caption p{
	margin-bottom:16px;
}
div.ashiba-caption a.button{
	text-decoration:none;
}
@media only screen and (max-width: 767px){
		ul.ashiba-list li{
		width:48%;
		margin-bottom:24px;
	}
	ul.ashiba-list li span{
		font-size:16px;
		background: linear-gradient(transparent 70%, #a5cee6 70%);
	}
	ul.ashiba-list li span.min-font{
		font-size:14px;
	}
}

#about{
	background-image:url(/wp-content/uploads/2024/04/bg_home_about_head.png),
		url(/wp-content/uploads/2024/04/bg_home_about_bottom.png);
	background-repeat:no-repeat,no-repeat;
	background-position:top 8px center,bottom -10px center;
	background-size:90% , 90%;
	background-color:#e9f3f9;
	border-bottom:6px solid #a5cee6;
}

footer.footer{
	padding-bottom:60px;
}


/* ---------------------------
（2分割）ページ下部にナビバナー追加
固定バナー　20240502中谷
--------------------------- */

@media only screen and (min-width: 768px){
    .bottom_nav {
        width: 380px;
        overflow: hidden;
        position: fixed;
        bottom: 0px;/**/
        right: 0px;
    }

    .bottom_nav .kotei_btn01 {
        width: 190px;
        float: left;
        margin-left: 0;
        margin-top: 30px;
    }

    .bottom_nav .kotei_btn02 {
        width: 190px;
        float: right;
        margin-right: 0;
        margin-top: 30px;
    }

    #page-top {
        bottom: 80px;
    }

    .bottom_nav img {
    position: unset!important;
    }

}

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

    .bottom_nav {
        margin-bottom: 40px; /*バナーの高さに合わせて数値は変更*/
        position: fixed;
        bottom: -10px!important;
        right: 0px;
        width: 100%;
        overflow: hidden;
    }
    .bottom_nav .kotei_btn01 {
        width: 50%;
        float: left;
        margin-left: 0 ;
        margin-bottom: 8px;
    }

    .bottom_nav .kotei_btn02 {
        width: 50%;
        float: right;
        margin-right: 0;
        margin-bottom: 8px;
    }
}