@charset "UTF-8";

/*************************************
* 共通
*************************************/

html {
	font-size: 62.5%;
}

body {
	color: #253a4b;
	font-size: 2.1rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	line-height: 2;
	word-break: break-all;
	-webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #253a4b;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

.font-en {
	font-family: Cinzel, serif;
}

.fadein-scale {
	display: block;
	overflow: hidden;
}

.fadein-scale-inner {
	display: block;
	transform: translate(0, 150%) scale(1, 2);
	transition: transform 1s;
	will-change: transform;
}

.fadein-scale.is-active .fadein-scale-inner {
	transform: none;
}

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

	.is-lg {
		display: none;
	}

	html {
		font-size: 50%;
	}
}

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

	html {
		font-size: 45%;
	}
}

@media screen and (min-width: 897px) {

	.is-sp {
		display: none !important;
	}

	.hover {
		transition: opacity 0.3s;
	}

	.hover:hover {
		opacity: 0.7;
	}

	.hover-line {
		position: relative;
		transition: 0.5s;
	}

	.hover-line::before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 1px;
		background: currentColor;
		transition: 0.5s;
		content: "";
	}

	.hover-line:hover {
		opacity: 0.8;
	}

	.hover-line:hover::before {
		width: 100%;
	}
}

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

	html {
		font-size: 62.5%;
	}

	body {
		font-size: 1.5rem;
	}

	.is-pc {
		display: none !important;
	}
}

/*************************************
* ローディング
*************************************/

.loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100vh;
	background: #253a4b;
}

.loader__icon {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	background: #fff;
	animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {

	0% {
		transform: perspective(120px);
	}

	50% {
		transform: perspective(120px) rotateY(180deg);
	}

	100% {
		transform: perspective(120px) rotateY(180deg)  rotateX(180deg);
	}
}

/*************************************
* ヘッダー
*************************************/

.header {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-flow: column;
	width: 400px;
	padding: 40px 0 0 60px;
}

.header__logo {
	width: 120px;
	margin-bottom: 40px;
}

.header__btn {
	display: none;
}

.header-nav {
	flex: 1;
	max-height: 470px;
	font-weight: bold;
	font-size: 3rem;
	line-height: 1.7;
}

.header-nav__list {
	display: flex;
	flex-flow: column;
	height: 100%;
}

.header-nav__item--counseling {
	margin-top: auto;
}

.header-nav__link {
	display: block;
}

.header-nav__item--counseling .header-nav__link {
	width: 200px;
	color: #fff;
	font-size: 2.6rem;
	text-align: center;
	background: #253a4b;
	border: 1px solid #253a4b;
}

@media screen and (min-width: 897px) {

	.header-nav__link {
		position: relative;
	}

	.header-nav__link span:first-child {
		transition: 0.2s;
	}

	.header-nav__link span:last-child {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		font-size: 0.8em;
		transform: translateY(-50%);
		opacity: 0;
		transition: 0.2s;
	}

	.header-nav__link:hover span:first-child {
		opacity: 0;
	}

	.header-nav__link:hover span:last-child {
		opacity: 1;
	}

	.header-nav__item--counseling .header-nav__link {
		transition: 0.2s;
	}

	.header-nav__item--counseling .header-nav__link:hover {
		color: #1a1a1a;
		background: #fff;
		opacity: 1;
	}

	.header-nav__item--counseling .header-nav__link span:last-child {
		font-size: 0.9em;
	}

}

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

	.header {
		width: 260px;
		padding-left: 30px;
	}
}
@media screen and (max-width: 1200px) {

	.header-nav__item--counseling .header-nav__link {
		width: 170px;
	}
}

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

	.header {
		bottom: auto;
		display: flex;
		flex-flow: row;
		align-items: center;
		width: 100%;
		height: 60px;
		padding: 0 10px;
		background: #fff;
	}

	.header__logo {
		width: 160px;
		margin: 0;
	}

	.header__btn {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		display: block;
		width: 60px;
		background: none;
		border: none;
	}

	.header__btn span {
		position: absolute;
		left: 15px;
		width: 30px;
		height: 2px;
		background: #333;
		transition: 0.5s;
	}

	.header__btn span:nth-child(1) {
		margin-top: -10px;
	}

	.header__btn span:nth-child(3) {
		margin-top: 10px;
	}

	.header__btn.is-open span:nth-child(1) {
		margin: 0;
		transform: rotate(45deg);
	}

	.header__btn.is-open span:nth-child(2) {
		opacity: 0;
	}

	.header__btn.is-open span:nth-child(3) {
		margin: 0;
		transform: rotate(-45deg);
	}

	.header-nav {
		position: fixed;
		top: 60px;
		right: 100%;
		width: 100%;
		height: calc(100vh - 60px);
		max-height: initial;
		padding: 40px 0;
		font-size: 2rem;
		background: #fff;
		transition: right 0.4s;
	}

	.header-nav.is-open {
		right: 0;
	}

	.header-nav__item:not(:last-child) {
		margin-bottom: 0.5em;
	}

	.header-nav__link {
		text-align: center;
	}

	.header-nav__link span:last-child {
		display: none;
	}

	.header-nav__item--counseling {
		margin-top: 2em;
	}

	.header-nav__item--counseling .header-nav__link {
		margin: 0 auto;
		font-size: 1.8rem;
	}
}

/*************************************
* スマホ 固定ナビ
*************************************/

@media screen and (min-width: 897px) {

	.fixed-nav {
		display: none;
	}
}

.fixed-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 60px;
	background: #ccc;
}

.fixed-nav__list {
	display: flex;
	height: 100%;
}

.fixed-nav__item {
	flex: 1;
}

.fixed-nav__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.fixed-nav__item:first-child .fixed-nav__link {
	color: #fff;
	background: #8a8a8a;
}

.fixed-nav__item:last-child .fixed-nav__link {
	background: #ddd;
}

/*************************************
* コンテンツエリア
*************************************/

.main {
	display: block;
}

.container {
	position: relative;
	margin-left: 400px;
	padding: 0 100px 0 10px;
}

.container-wide {
	position: relative;
	margin-left: 400px;
}

.container::after,
.container-wide::after {
	display: block;
	clear: both;
	content: "";
}

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

	.container,
	.container-wide {
		margin-left: 260px;
	}
}

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

	.container {
		padding-right: 30px;
	}
}

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

	.main {
		margin-top: 60px;
	}

	.container,
	.container-wide {
		margin-left: 0;
		padding: 0 10px;
	}
}

/*************************************
* 共通パーツ
*************************************/

/* ページタイトル */
.page-mv {
	margin-bottom: 130px;
	padding-top: 80px;
}

.page-mv__inner {
	position: absolute;
	top: 0;
	left: 10px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	max-width: calc(100% - 20px);
	height: 100%;
	padding: 240px 0 140px;
}

.page-mv__ttl {
	position: relative;
	font-size: 20rem;
	white-space: nowrap;
}

.page-mv__ttl::after {
	position: absolute;
	top: 1em;
	left: 0;
	width: 1100px;
	max-width: 100%;
	height: 1px;
	background: #ddd;
	content: "";
}

.page-mv__ttl > span:first-child {
	display: block;
	color: #7ca0b5;
	line-height: 1;
}

.page-mv__ttl > span:last-child {
	font-size: 4.2rem;
}

.page-mv__txt:not(:last-child) {
	margin-bottom: 1em;
}

.page-mv__img {
	display: block;
	width: 680px;
	margin-left: auto;
}

.page-mv-under {
	margin-bottom: 150px;
	padding: 1em 0;
	font-size: 2.8rem;
	text-align: center;
	background: radial-gradient(circle, #253a4b, #e9f3f8);
}

.page-mv-under__txt {
	color: #fff;
}

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

	.page-mv__inner {
		padding: 190px 0 110px;
	}

	.page-mv__img {
		width: 540px;
	}
}

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

	.page-mv__img {
		width: 470px;
	}

	.page-mv__ttl {
		font-size: 16rem;
	}
}

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

	.page-mv {
		margin-bottom: 60px;
		padding-top: 0;
	}

	.page-mv__inner {
		position: relative;
		left: 0;
		z-index: 1;
		max-width: 100%;
		min-height: calc(100vh - 150px);
		padding: 30px 0;
	}

	.page-mv__ttl {
		margin-bottom: 0.5em;
		font-size: 15vw;
	}

	.page-mv__ttl > span:last-child {
		font-size: 5vw;
	}

	.page-mv__txt {
		text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
	}

	.page-mv__img {
		position: absolute;
		top: 0;
		left: 0;
		width: calc(100% + 10px);
		max-width: calc(100% + 10px);
		height: 100%;
		margin: 0 -10px;
		object-fit: cover;
	}

	.page-mv-under {
		margin-bottom: 70px;
		font-size: 1.8rem;
	}
}

/* セクションタイトル */
.section-ttl {
	position: relative;
	margin-bottom: 1.5em;
	padding-bottom: 0.2em;
	font-size: 4.8rem;
	line-height: 1.5;
	text-align: center;
}

.section-ttl::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 740px;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(to right, #253a4b 0%, #ccc 50%, #253a4b 100%);
	transform: translateX(-50%);
	content: "";
}

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

	.section-ttl {
		font-size: 2.6rem;
	}
}

/* 無料カウンセリング */
.parts-counseling {
	padding: 150px 0 100px;
	overflow: hidden;
	background: #e2e9ee;
}

.parts-counseling__ttl {
	position: relative;
	margin-bottom: 2.5em;
	font-size: 3.2rem;
	line-height: 1;
}

.parts-counseling__ttl > span:first-child {
	position: absolute;
	top: 50%;
	left: 0;
	color: #add0e1;
	font-size: 18rem;
	white-space: nowrap;
	transform: translateY(-50%);
	opacity: .6;
}

.parts-counseling__ttl > span:last-child {
	position: relative;
}

.parts-counseling__cnt {
	display: flex;
	justify-content: space-between;
}

.parts-counseling__contact {
	margin: 0 auto;
	text-align: center;
}

.parts-counseling__tel {
	display: inline-block;
	font-size: 6rem;
	line-height: 1.2;
}

.parts-counseling__form {
	display: block;
	padding-right: 0.3em;
	color: #fff;
	font-size: 3.6rem;
	line-height: 1.2;
	text-align: right;
	background: #253a4b;
	border: 1px solid #253a4b;
}

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

	.parts-counseling__ttl > span:first-child {
		font-size: 14rem;
	}

	.parts-counseling__cnt {
		display: block;
		text-align: center;
	}

	.parts-counseling__txt {
		display: inline-block;
		margin-bottom: 2em;
		text-align: left;
	}
}

@media screen and (min-width: 897px) {

	.parts-counseling__form {
		transition: 0.3s;
	}

	.parts-counseling__form:hover {
		color: #1a1a1a;
		background: #fff;
	}
}

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

	.parts-counseling {
		padding: 60px 0 50px;
	}

	.parts-counseling__ttl {
		font-size: 2.4rem;
	}

	.parts-counseling__ttl > span:first-child {
		font-size: 14vw;
	}

	.parts-counseling__tel {
		font-size: 3rem;
	}

	.parts-counseling__form {
		width: 10em;
		margin: 0 auto;
		padding: 0;
		font-size: 2.6rem;
		text-align: center;
	}
}

/* フッターギャラリー */
.parts-gallery {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	background-attachment: fixed;
}

.parts-gallery::before {
	display: block;
	padding-top: 44%;
	content: "";
}

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

	.parts-gallery {
		background-size: cover;
		background-attachment: initial;
	}
}

/*************************************
* フッター
*************************************/

.footer {
	position: relative;
	padding-top: 90px;
}

.footer__ttl {
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	padding: 0 10px;
	color: #add0e1;
	font-size: 18rem;
	line-height: 1;
	text-align: center;
	opacity: .6;
}

.footer__inner {
	display: flex;
}

.footer__col:first-child {
	width: 33em;
    padding-right: 80px;
}

.footer__col:last-child {
	flex: 1;
}

.footer__logo {
	display: block;
	max-width: 370px;
	margin-bottom: 30px;
}

.footer__address {
	margin-bottom: 1.5em;
}

.footer__access {
	margin-bottom: 2em;
}

.footer__access li {
	padding-left: 1em;
	text-indent: -1em;
}

.footer__access li::before {
	content: "■";
}

.footer__tel {
	font-size: 4.2rem;
}

.footer-hours__tbl {
	width: 100%;
	margin-bottom: 0.3em;
	font-size: 2.8rem;
	line-height: 1.7;
	text-align: center;
	table-layout: fixed;
}

.footer-hours__tbl th:first-child {
	width: 7em;
	/*text-align: left;*/
    text-align: center;
    background-color: #253a4b;
    color: #fff;
    margin-bottom: 10px;
}

.footer-hours__tbl td{
    text-align: left;
}

.footer-hours__caption {
	display: block;
	font-size: 2.4rem;
	line-height: 1.7;
	/*text-align: right;*/
}

.footer__map {
	display: block;
	width: 100%;
	height: 700px;
}

.footer__copy {
	margin-top: 90px;
	padding: 1em 10px;
	color: #fff;
	text-align: center;
	background: #253a4b;
}

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

	.footer__ttl {
		bottom: calc(100% + 30px);
		font-size: calc((100vw - 260px) / 7);
	}

	.footer__col:first-child {
		/*width: 50%;
		padding-right: 40px;*/
	}

	.footer__map {
		height: 560px;
	}

	.footer__copy {
		padding-left: 260px;
	}
}

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

	.footer {
		margin-bottom: 60px;
		padding-top: 0;
	}

	.footer__ttl {
		position: relative;
		margin: -0.6em 0 0.5em;
		font-size: 12vw;
		text-align: center;
	}

	.footer__inner {
		display: block;
	}

	.footer__col:first-child {
		width: 100%;
		margin-bottom: 30px;
		padding-right: 0;
	}

	.footer__col:last-child {
		width: calc(100% + 20px);
		margin: 0 -10px;
	}

	.footer__logo {
		max-width: 250px;
		margin: 0 auto 20px;
	}

	.footer__tel {
		font-size: 3rem;
		text-align: center;
	}

	.footer-hours__tbl {
		/*width: auto;
		margin: 0 auto;*/
		font-size: 1.4rem;
	}

	.footer-hours__tbl td {
		/*padding: 0 0.5em;*/
        padding: 5px 0 0 5px;
	}

	.footer-hours__caption {
		font-size: 1.4rem;
		text-align: center;
	}

	.footer__map {
		height: 350px;
	}

	.footer__copy {
		margin-top: 0;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 1.2rem;
	}
}
