@charset "utf-8";

/* 
* 共通
*/
html{
	font-size: 62.5%; /*　文字サイズ変更用　*/
	color: #000;
}

body{
	font-size: 1.6rem; /*　16px * 62.5% = 10px　*/
	font-weight: 500;
}
p{
	line-height: 1.0;
	letter-spacing: 1.2px;
	color: #000;
}
.sp-block{
	display: none;
}
.tb-block{
	display: none;
}

.title{
	text-align: center;
}
.title-text{
	margin-bottom: 0.1em;
}
.title-text h2,
.title-text h3,
.title-text h4,
.title-text h5{
	font-size: 2.6rem;
	letter-spacing: 1.9px;
	line-height: 1.6;
	font-family: serif;
	font-weight: bold;
	color: #001042;
}
.title-subtext p{
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 1.9px;
	color: #6d6d6d;
}

/* reCAPTCHA スタイル */
.grecaptcha-badge{
	z-index: 100;
}

/* サブページテンプレート スタイル */
.all-wrapper{
	position: relative;
}
.top-scrollbox{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 97%;
	height: 100%;
	margin: 0 auto;
	border-right: solid 1px #a7a7a7;
	background-color: transparent;
	z-index: -1;
}
.top-scrolltext{
	position: absolute;
	right: -30px;
	bottom: 40px;
	width: 30px;
	margin: 0 auto;
	text-align: center;
	border-left: solid 1px #000;
	cursor: pointer;
}
.top-scrolltext p{
	writing-mode: vertical-rl;
	font-size: 1.6rem;
	font-weight: bold;
	color: #001042;
}
.subpage-top{
	margin-bottom: 7em;
	padding-bottom: 2.5em;
	background: linear-gradient(0deg, rgb(3, 13, 70) 60%, rgba(255,255,255,1) 40%);
}
.subpage-block{
	/* max-width: 1200px; */
	width: 95%;
	margin: 0 auto;
}
.subpage-imagebox{
	position: relative;
	margin-bottom: 2.3em;
}
.subpage-image img{
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.subpage-titlebox{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%;
	margin: 0 auto;
	text-align: center;
}
.subpage-title{
	display: inline-block;
	padding: 4px 20px;
	background-color: #fff;
}
.subpage-title h2{
	font-size: 3.5rem;
	letter-spacing: 2.2px;
	line-height: 1.2;
	font-family: serif;
	color: #001042;
}
.subpage-breadbox{
	width: 85%;
	margin: 0 auto;
}
.breadcrumbs{
	color: #fff;
}
.breadcrumbs a{
	transition: all 0.5s;
}
.breadcrumbs a:hover{
	color: #00b1a9;
	transition: all 0.5s;
}
.breadcrumbs span{
	margin: 0 0.2em;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
}
.breadcrumbs span[property="name"] {
    /* display: inline-block; */
    padding: 0;
    margin-top: 0;
    vertical-align: middle;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width: 1500px){
	.top-scrollbox{
		width: 92%;
	}
	.subpage-block{
		width: 85%;
	}
	.subpage-image img{
		height: 470px;
	}
}

/* 
* inview アニメーション
*/

/* 共通 */
.fade-out{
	opacity: 0;
	transform: translateY(50px);
}
.fade-in{
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease 0.2s;
}

.fade-left-out{
	opacity: 0;
	transform: translateX(-50px);
}
.fade-left-in{
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease 0.2s;
}

.fade-right-out{
	opacity: 0;
	transform: translateX(50px);
}
.fade-right-in{
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease 0.2s;
}

.border-anime-off{
	transform-origin: top;
	transform: scale(1, 0);
}
.border-anime-on{
	transform: scale(1, 1);
	transition: all 0.7s ease 0.2s;
}

/* トップページ 紹介 */
.intro-animation-off{
	opacity: 0;
	transform: translateY(35px);
}
.intro-animation-on{
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease 0.2s;
}

/* トップページ Feature 強み */
.explan-left-off{
	opacity: 0;
	transform: translateX(-50px);
}
.explan-left-on{
	opacity: 1;
	transform: translateX(0);
	transition: all 1.5s ease 0.2s;
}
.explan-right-off{
	opacity: 0;
	transform: translateX(50px);
}
.explan-right-on{
	opacity: 1;
	transform: translateX(0);
	transition: all 1.5s ease 0.2s;
}


/* 
* ヘッダー
*/

header{
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
	transition: all 1.1s;
}
.header-block{
	position: relative;
	width: 95%;
	margin: 0 auto;
}
.header-title{
	padding-top: 0.7em;
	margin-bottom: -0.7em;
}
.header-title h1{
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 1.3px;
	line-height: 1.4;
}
.header-flex{
	padding-top: 1.5em;
	padding-bottom: 0.5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-left{
	width: 30%;
}
.header-logo{
	text-align: left;
	transition: all 0.5s;
}
.header-logo img{
	width: 400px;
	transition: all 0.5s;
}
.header-logo a:hover img{
	opacity: 0.6;
	transition: all 0.5s;
}
.header-right{
	width: 60%;
}
.header-subflex{
	display: flex;
	justify-content: right;
	align-items: center;
}
.header-telbox{
	display: flex;
	align-items: center;
	margin-right: 2.5em;
}
.header-telimage{
	position: relative;
	margin-right: 1.6em;
}
.header-telimage::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #09cec4;
	z-index: -1;
}
.header-telimage img{
	width: 100%;
	height: 22px;
	object-fit: contain;
}
.header-telnumber{
	text-align: center;
}
.header-telnumber p{
	font-size: 3.1rem;
	font-weight: bold;
	letter-spacing: 1.4px;
	color: #09cec4;
	transition: all 0.5s;
}
.header-telnumber a:hover p{
	opacity: 0.6;
	transition: all 0.5s;
}
.header-teltext{
	text-align: center;
}
.header-teltext p{
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 1.8px;
}
.header-telleft{
	margin-right: 0.4em;
}
.header-mailflex{
	padding: 19px 28px;
	background-color: #001042;
	display: flex;
	align-items: center;
	transition: all 0.5s;
}
.header-mailbox a:hover .header-mailflex{
	opacity: 0.6;
	transition: all 0.5s;
}
.header-mailimage{
	position: relative;
	margin-right: 1.2em;
}
.header-mailimage::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: solid 1px #fff;
}
.header-mailimage img{
	width: 100%;
	height: 15px;
	object-fit: contain;
}
.header-mailtext p{
	letter-spacing: 1.4px;
	font-size: 1.7rem;
	color: #fff;
}


/* 
* トップページ
*/

/* ヒーローイメージ */
.hero-wrapper{
	position: relative;
	margin-bottom: 7em;
	padding-bottom: 3.5em;
	background: linear-gradient(0deg, rgba(0,16,66,1) 60%, rgba(255,255,255,1) 40%);
}
.hero-block{
	/* max-width: 1100px; */
	width: 85%;
	margin: 0 auto;
}
.hero-imagebox{
	position: relative;
}
.swiper-hero{
	width: 100%;
}
.swiper-hero .bgcolor{
	position: relative;
}
.swiper-hero .bgcolor::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	z-index: 2;
}
.hero-image img{
	width: 100%;
	height: 70vh;
	object-fit: cover;
}
.hero-catch{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	z-index: 2;
}
.hero-catch h2{
	font-size: 4rem;
	font-weight: normal;
	font-family: serif;
	line-height: 1.9;
	letter-spacing: 2px;
	color: #fff;
	text-shadow: 1px 4px 5px #000;
}
.hero-scrollbox{
	position: absolute;
	bottom: -2.5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}
.hero-scroll{
	position: relative;
	z-index: 1;
}
.hero-scroll p{
	font-size: 1.3rem;
	letter-spacing: 1.7px;
	font-weight: bold;
	color: #fff;
}
.hero-arrow{
	text-align: center;
	width: 23px;
	height: 23px;
	margin: -4px auto 0 auto;
	clip-path: polygon(50% 100%, 0 40%, 100% 40%);
	background-color: #fff;
	animation-name: arrow_anime;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: 0;
	animation-iteration-count: infinite;
}
@keyframes arrow_anime {
	0% {
		opacity: 1;
	}
	100%{
		transform: translateY(15px);
		opacity: 0;
	}
}

.hero-copyright{
	position: absolute;
	bottom: 0;
	left: -50px;
	z-index: 1;
}
.hero-copyright p{
	writing-mode: vertical-rl;
	/* font-size:1rem; */
	font-size: 0.6vw;
	color: #fff;
}

@media screen and (min-width: 1500px){
	.hero-block{
		width: 80%;
	}
	.hero-image img{
		height: 80vh;
	}
	.hero-catch h2{
		font-size: 4.5rem;
	}
}

/* 紹介 */
.intro-wrapper{
	margin-bottom: 6.5em;
}
.intro-block{
	max-width: 1200px;
	margin: 0 auto;
}
.intro-flex{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.intro-left{
	width: 55%;
}
.intro-bigtext{
	margin-bottom: 1em;
}
.intro-bigtext h3{
	font-size: 2.8rem;
	font-weight: 400;
	font-family: serif;
	line-height: 2.4;
	letter-spacing: 2px;	
}
.intro-bigtext h3 span{
	font-weight: 900;
}
.intro-text{
	margin-bottom: 1.9em;
}
.intro-textbox p{
	font-size: 1.6rem;
	line-height: 2.5;
	letter-spacing: 1.7px;
}
.intro-right{
	width: 35%;
}
.intro-image img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

/* お悩みはありませんか */
.worries-wrapper{
	margin-bottom: 7em;
	padding: 5em 0 7em 0;
	background-color: #dde9fa;
}
.worries-block{
	max-width: 1200px;
	margin: 0 auto;
}
.worries-titlebox{
	margin-bottom: 2.5em;
}
.worries-titlebox .title-subtext p{
	font-family: serif;
}
.worries-contents{
	position: relative;
	background-image: url(../images/worries.jpg?20241203);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 90%;
	margin: 0 auto 1.5em auto;
	padding: 60px 0;
}
.worries-contents::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-color: #000;
}
.worries-contents-text{
	position: relative;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	z-index: 3;
}
.worries-contents-text p{
	font-size: 1.6rem;
	line-height: 3;
	letter-spacing: 1.5px;
	color: #fff;
}
.worries-text{
	text-align: center;
}
.worries-text p{
	font-size: 1.6rem;
	line-height: 2.5;
	letter-spacing: 1.6px;
}

/* Feature　強み */
.explan-wrapper{
	position: relative;
	padding-top: 1.5em;
	padding-bottom: 3em;
	margin-bottom: 2.5em;
}
.explan-backimagebox{
	position: absolute;
	top: 0;
	left: 0%;
}
.explan-backimage{
	position: relative;
}
.explan-backimage::before,
.explan-backimage_2::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 2;
}
.explan-backimage img{
	width: 70%;
	height: 330px;
	object-fit: cover;
	z-index: 1;
}
.explan-block{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}
.explan-feature{
	position: relative;
	margin-top: 2.5em;
	margin-bottom: 0.8em;
	text-align: center;
	z-index: 4;
}
.explan-feature p{
	font-size: 1.6rem;
	font-weight: bold;
	color: #7e7e7e;
}
.explan-border{
	position: relative;
	display: block;
	width: 1px;
	height: 100px;
	margin: 0 auto 2em auto;
	background-color: #a3a3a3;
	z-index: 4;
	/* animation-name: border-feature;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: 0;
	animation-iteration-count: infinite;
	transform-origin: top; */
}
/* @keyframes border-feature{
	0%{
		transform: scale(1, 0);
	}
	100%{
		transform: scale(1, 1);
	}
} */

.explan-title{
	position: relative;
	margin-bottom: 7em;
	text-align: center;
	z-index: 4;
}
.explan-title h3{
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 1.5px;
}
.explan-item{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 6em;
}
.explan-textbox{
	position: relative;
	width: 60%;
	padding: 45px 15px;
	background-color: #c8dbec;
}
.explan-number{
	position: absolute;
	top: -12%;
}
.explan-number p{
	font-size: 6.5rem;
	font-family: serif;
	font-weight: bold;
	color: #001042;
}
.explan-item .left{
	left: 10%;
}
.explan-item .right{
	right: 15%;
}
.explan-text{
	width: 80%;
	margin: 0 auto;
}
.explan-text p{
	font-size: 1.6rem;
	line-height: 2.7;
	letter-spacing: 1.7px;
}
.explan-imagebox{
	width: 40%;
}
.explan-imagebox img{
	width: 100%;
	height: 300px;
	object-fit: cover;	
}
.explan-backimage-2{
	position: absolute;
	bottom: 0;
	left: 40%;
}
.explan-backimagebox_2{
	position: absolute;
	bottom: -10%;
	right: 0%;
	z-index: -1;
}
.explan-backimage_2{
	position: relative;
}
.explan-backimage_2 img{
	width: 100%;
	height: 370px;
	object-fit: cover;
	z-index: -1;
}

@media screen and (min-width: 1500px){
	.explan-backimage img{
		height: 420px;
	}
	.explan-title{
		margin-bottom: 11em;
	}
	.explan-backimage_2 img{
		height: 500px;
	}
}


/* お問い合わせ */
.contact-wrapper{
	margin-bottom: 2.5em;
}
.contact-block{
	max-width: 1200px;
	margin: 0 auto;
}
.contact-title{
	margin-bottom: 1.2em;
}
.contact-title .title-subtext p{
	font-size: 1.7rem;
	color: #01b9b0;
}
.contact-border{
	display: block;
	width: 1px;
	height: 100px;
	margin: 0 auto 2em auto;
	background-color: #a3a3a3;
}
.contact-toptext{
	margin-bottom: 2.5em;
	text-align: center;
}
.contact-toptext p{
	font-size: 1.6rem;
	line-height: 2.7;
	letter-spacing: 1.7px;
}
.contact-inputbox{
	width: 92%;
	margin: 0 auto 1.2em auto;
	padding: 30px 0;
	background-color: #eae9e9;
}
.contact-innerbox{
	width: 90%;
	margin: 0 auto;
}
.contact-item{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 1.4em;
	padding-bottom: 1.4em;
	border-bottom: solid 1px #000;
}
.contact-item:nth-last-child(1){
	border-bottom: none;
}
.contact-formbox .top{
	align-items: normal;
}
.contact-name{
	width: 25%;
}
.contact-name p{
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 1.4px;
}
.contact-need{
	width: 8%;
}
.contact-need p{
	display: inline-block;
	padding: 8px 6px;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 1.4px;
	color: #fff;
}
.contact-formbox .on p{
	background-color: #00b1a9;
}
.contact-formbox .off p{
	background-color: #969696;
}
.contact-input{
	width: 55%;
}
.contact-input input,
.contact-input textarea{
	width: 100%;
	padding: 10px 7px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.3;
	border: none;
	color: #000;
}
.wpcf7-not-valid-tip{
	margin-top: 0.8em;
}
.contact-text{
	width: 80%;
	margin: 0 auto 3em auto;
	text-align: left;
}
.contact-text p{
	font-size: 1.6rem;
	line-height: 2.1;
	letter-spacing: 1.7px;
}
.contact-text a{
	font-weight: bold;
	color: #00b1a9;
	transition: all 0.5s;
}
.contact-text a:hover{
	color: #001042;
	transition: all 0.5s;
}
.contact-access{
	margin-bottom: 2em;
	font-size: 1.8rem;
	text-align: center;
}
.contact-access input{
	width: 25px;
	height: 25px;
	padding: 13px;
	border: solid 1px #000;
	color: #000;
	appearance: auto;
	cursor: pointer;
}
.contact-submit{
	width: 45%;
	margin: 0 auto;
	text-align: center;
}
.contact-submit input{
	width: 100%;
	padding: 60px 0;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	border: none;
	color: #fff;
	background-color: #00b1a9;
	cursor: pointer;
	transition: all 0.5s;
}
.contact-submit input:hover{
	background-color: #001042;
	transition: all 0.5s;
}

/* 
* フッダー
*/
.footer-wrapper{
	padding: 60px 0 160px 0;
	background-color: #001042;
}
.footer-block{
	max-width: 1200px;
	margin: 0 auto;
}
.footer-logo{
	margin-bottom: 1em;
	text-align: center;
}
.footer-logo img{
	width: 35%;
}
.footer-logo-2{
	margin-bottom: 1.3em;
	text-align: center;
}
.footer-logo-2 img{
	width: 350px;
}
.footer-address{
	margin-bottom: 0.7em;
	text-align: center;
}
.footer-address p{
	font-size: 1.5rem;
	line-height: 1.8em;
	letter-spacing: 1.4px;
	color: #fff;
}
.footer-tel{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.8em;
	text-align: center;
}
.footer-telimage{
	position: relative;
	margin-right: 0.8em;
	z-index: 2;
}
.footer-telimage::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background-color: #09cec4;
	z-index: 1;
}
.footer-telimage img{
	position: relative;
	width: 100%;
	height: 20px;
	object-fit: contain;
	z-index: 3;
}
.footer-telnumber{
	margin-bottom: 0.3em;
	text-align: left;
}
.footer-telnumber p{
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 1.4px;
	color: #09cec4;
	transition: all 0.5s;
}
.footer-telnumber a:hover p{
	opacity: 0.6;
	transition: all 0.5s;
}
.footer-teltext{
	text-align: center;
}
.footer-teltext p{
	font-size: 1.2rem;
	letter-spacing: 1.3px;
	color: #fff;
}

/* 
* プライバシーポリシー
*/
.privacy-wrapper{
	padding-bottom: 6em;
}
.privacy-block{
	max-width: 1200px;
	margin: 0 auto;
}
.privacy-title{
	margin-bottom: 4.5em;
}
.privacy-title .title-subtext p{
	font-size: 1.7rem;
}
.privacy-item{
	padding: 35px 0;
	background-color: #d1e2ec;
}
.privacy-innerbox{
	width: 90%;
	margin: 0 auto;
}
.privacy-toptext{
	margin-bottom: 2.5em;
	padding: 0 0.8em 2.5em 0.8em;
	border-bottom: solid 1px #000;
}
.privacy-toptext p{
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 1.6px;
}
.privacy-dlbox dl{
	margin-bottom: 2.5em;
}
.privacy-dlbox dl dt{
	position: relative;
	margin-bottom: 0.3em;
	padding-left: 40px;
	font-size: 2.1rem;
	font-family: serif;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 1.4px;
}
.privacy-dlbox dl dt span{
	position: absolute;
	top: 1px;
	left: 0;
}
.privacy-dlbox dl dd{
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 1.6px;
}
.privacy-ddtext{
	margin-bottom: 0.7em;
}
.privacy-ddul ul li{
	position: relative;
	padding-left: 30px;
	line-height: 1.7;
}
.privacy-ddul ul li span{
	position: absolute;
	top: 1px;
	left: 0;
}
.privacy-company{
	margin-top: 5em;
	text-align: right;
}
.privacy-company p{
	font-size: 1.6rem;
	letter-spacing: 1.4px;
}