@charset "UTF-8";
/* CSS Document */
/* ==============================
   COMMON.CSS
   共通要素（header / footer / base）
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital@0;1&&family=Poltawski+Nowy:ital,wght@0,400..700;1,400..700family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

/* --- import base layers --- */
@import url("reset.css");
@import url("base.css");

/* ------------------------------
	Parts
------------------------------ */
section {
	padding: 80px 0;
}
.inner {
	width: 100%;
	max-width: 375px;
	margin: 0 auto;
	padding: 0 16px;
}
.inner--large {
	width: 100%;
	max-width: 375px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 1024px) {
	section {
		padding: 220px 0;
	}
	.inner {
		max-width: 1280px;
		padding: 0 90px;
	}
	.inner--large {
		max-width: 1480px;
		padding: 0 90px;
	}
}

/* ------------------------------
	Header
------------------------------ */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 0 12px;
	background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 100%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	color: #ffffff;
}

/* Logo */
.header__logo {
	width: 100px;
	fill: #ffffff;
}
.header__logo a {
}
.header__logo img {
}

/* Navigation */
.header__nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 80px 40px 80px;
	background-image: url(../img/common/bg_texture.png);
	background-color: #2D362C;
	background-blend-mode: multiply;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .7s ease, visibility .7s ease;
	will-change: opacity;
	overflow-y: scroll;
	scrollbar-width: none;
	z-index: -1;
}
.header__nav.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.header__menu {
}
.header__menu-item {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #B3C3BA;
}
.header__menu-item--has-sub {
}
.header__menu-link {
	display: block;
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0,0,0,.2);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .12em;
}
.header__menu-item--has-sub .header__menu-link {
	display: inline-block;
}
.header__menu-item--contact {
	margin-top: 42px;
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.header__menu-item--contact .header__menu-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 44px;
	border-radius: 44px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.1);
	box-shadow:
		inset 4px 5px 10px -5px rgba(0,0,0,0.1),
		inset -4px -5px 10px -5px rgba(255,255,255,.1),
		1px 1px 8px -4px rgba(0,0,0,.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.header__menu-item--has-sub .header__menu-link {
	position: relative;
	padding-right: 28px;
}
.header__menu-item--has-sub .header__menu-link::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-6px) rotatex(0deg) rotatez(-45deg);
	display: block;
	width: 8.5px;
	height: 8.5px;
	border-left: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	transition: all .7s ease;
}
.header__menu-item--has-sub.is-open .header__menu-link::after {
	transform: translateY(0) rotatex(180deg) rotatez(-45deg);
}

/* Sub Menu */
.header__sub-menu {
	display: none;
	margin-top: 16px;
}
.header__sub-menu-item {
	margin-bottom: 12px;
}
.header__sub-menu-item:last-child {
	margin-bottom: 0;
}
.header__sub-menu-link {
	color: #C7CEC7;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

/* Toggle */
.hamburger {
	position: relative;
	width: 24px;
	height: 16px;
}
.hamburger__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all .7s ease;
}
.hamburger__line:nth-of-type(1) {
	top: 0;
}
.hamburger__line:nth-of-type(2) {
	top: 7px;
}
.hamburger__line:nth-of-type(3) {
	bottom: 0;
}
.is-open .hamburger__line:nth-of-type(1) {
	transform: translateY(7px) rotate(35deg);
}
.is-open .hamburger__line:nth-of-type(2) {
	opacity: 0;
}
.is-open .hamburger__line:nth-of-type(3) {
	transform: translateY(-7px) rotate(-35deg);
}


/* ------------------------------
	Header（PC）
------------------------------ */

@media (min-width: 1024px) {
	.header {
	}
	.header__inner {
		align-items: flex-start;
		height: auto;
		padding: 16px 70px;
	}

	/* Logo */
	.header__logo {
		width: 156px;
	}
	.header__logo a {
	}
	.header__logo img {
	}

	/* Navigation */
	.header__nav {
		position: static;
		width: auto;
		height: auto;
		padding: 0;
		background: transparent;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		overflow-y: visible;
		z-index: auto;
	}
	.header__nav.is-show {
	}
	.header__menu {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 45px;
	}
	.header__menu-item {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.header__menu-item--has-sub {
	}
	.header__menu-link {
		margin: 10px 0;
		padding: 0;
		background-image: linear-gradient(#ffffff, #ffffff);
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: 0 1px;
		transition: .7s background-size ease;
	}
	.header__menu-link:hover {
		background-position: bottom left;
		background-size: 100% 1px;
		opacity: 1;
	}
	.header__menu-item--contact {
		margin-top: 0;
	}
	.header__menu-item--contact .header__menu-link {
		width: 132px;
		height: auto;
		margin: 0;
		padding: 10px 0;
		background-image: none;
		overflow: hidden;
		position: relative;
		transition: .7s all ease;
		z-index: 1;
	}
	.header__menu-item--contact .header__menu-link::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #ffffff;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: .7s all ease;
		z-index: -1;
	}
	.header__menu-item--contact .header__menu-link:hover {
		color: #2D362C;
		opacity: 1;
	}
	.header__menu-item--contact .header__menu-link:hover::after {
		transform: scale(1, 1);
	}
	.header__menu-item--has-sub .header__menu-link {
		background-image: none;
	}
	.header__menu-item--has-sub .header__menu-link::after {
	}
	.header__menu-item--has-sub.is-open .header__menu-link::after {
	}

	/* Sub Menu */
	.header__sub-menu {
		display: none;
		margin-top: 4px;
	}
	.header__sub-menu-item {
		text-align: center;
	}
	.header__sub-menu-item:last-child {
	}
	.header__sub-menu-link {
		color: #ffffff;
		font-size: 16px;
		background-image: linear-gradient(#ffffff, #ffffff);
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: 0 1px;
		transition: .7s background-size ease;
	}
	.header__sub-menu-link:hover {
		background-position: bottom left;
		background-size: 100% 1px;
		opacity: 1;
	}

	/* Toggle */
	.hamburger {
		display: none;
	}
}
/* page contact & recruit */
.page-template-contact .header__logo,
.page-template-recruit .header__logo {
	fill: #526F5A;
}
.page-template-contact .header__inner,
.page-template-recruit .header__inner {
	background: rgba(255,255,255,.2);
}
.page-template-contact .header__nav,
.page-template-recruit .header__nav {
	background: #ffffff;
}
.page-template-contact .header__menu-link,
.page-template-contact .header__sub-menu-link,
.page-template-recruit .header__menu-link,
.page-template-recruit .header__sub-menu-link {
	color: #526F5A;
	text-shadow: 0 1px 2px rgba(255, 255, 255, .2);
}
.page-template-contact .header__menu-item--contact .header__menu-link,
.page-template-recruit .header__menu-item--contact .header__menu-link {
	border: 1px solid #526F5A80;
	background-image: none;
}
.page-template-contact .header__menu-item--contact .header__menu-link::after,
.page-template-recruit .header__menu-item--contact .header__menu-link::after {
	background: #2D362C;
}
.page-template-contact .header__menu-item--contact .header__menu-link:hover,
.page-template-recruit .header__menu-item--contact .header__menu-link:hover {
	color: #fff;
}
.page-template-contact .header__menu-item--has-sub .header__menu-link::after,
.page-template-recruit .header__menu-item--has-sub .header__menu-link::after {
	border-left: 1px solid #526F5A;
	border-bottom: 1px solid #526F5A;
}
.page-template-contact .hamburger__line,
.page-template-recruit .hamburger__line {
	background: #526F5A;
}
@media (min-width: 1024px) {
	.page-template-contact .header__nav,
	.page-template-recruit .header__nav {
		background: transparent;
	}
	.page-template-contact .header__menu-link,
	.page-template-contact .header__sub-menu-link,
	.page-template-recruit .header__menu-link,
	.page-template-recruit .header__sub-menu-link {
		background-image: linear-gradient(#526F5A, #526F5A);
	}
}


/* ------------------------------
	Footer
------------------------------ */

.footer {
	background-image: url("../img/common/bg_footer_sp.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000000;
	padding: 80px 0;
}
.footer__inner {
}
.footer__main {
	margin-bottom: 16px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ffffff;
}
.footer__col {
}
.footer__col--left {
}
.footer__col--right {
}

/* Logo */
.footer__logo {
	width: 186px;
	margin-bottom: 38px;
}
.footer__logo a {
}
.footer__logo img {
}

/* Info */
.footer__info {
	margin-bottom: 32px;
}
.footer__info-title {
	margin-bottom: 2px;
	color: #8FAB8F;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.footer__info-body {
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.footer__info-body a {
	text-decoration: underline;
}

/* SNS */
.footer__sns {
	display: flex;
	gap: 16px;
	margin-bottom: 80px;
}
.footer__sns-item {
	width: 32px;
	transition: opacity .7s ease;
}
.footer__sns-item:hover {
	opacity: .7;
}
.footer__sns-item img {
	max-width: none;
}

/* Nav */
.footer__nav {
	margin-bottom: 40px;
}
.footer__nav-group {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer__nav-item {
	display: inline-block;
	margin-bottom: 24px;
	color: #ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .12em;
}

/* Banner */
.footer__banner {
}
.footer__banner a {
}
.footer__banner img {
}

/* Copyright */
.footer__copyright {
	color: #ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	text-align: right;
	letter-spacing: .12em;
}


/* ------------------------------
	Footer（PC）
------------------------------ */

@media (min-width: 1024px) {
	.footer {
		background-image: url("../img/common/bg_footer.jpg");
		padding: 220px 0;
	}
	.footer__inner {
	}
	.footer__main {
		display: flex;
		gap: 60px;
		margin-bottom: 32px;
		padding-bottom: 40px;
	}
	.footer__col {
	}
	.footer__col--left {
		width: calc(100% - 700px);
	}
	.footer__col--right {
		width: 640px;
	}
	.footer__logo {
		width: 320px;
		margin-bottom: 32px;
	}
	.footer__logo a {
	}
	.footer__logo img {
	}
	.footer__info {
		margin-bottom: 24px;
	}
	.footer__info-title {
		margin-bottom: 4px;
		font-size: 24px;
	}
	.footer__info-body {
	}
	.footer__info-body a {
	}
	.footer__sns {
		gap: 12px;
		margin-bottom: 0;
	}
	.footer__sns-item {
		width: 24px;
	}
	.footer__sns-item:hover {
	}
	.footer__sns-item img {
	}
	.footer__nav {
		display: flex;
		justify-content: space-between;
		padding-right: 40px;
	}
	.footer__nav-group {
		align-items: flex-start;
	}
	.footer__nav-item {
		margin-bottom: 20px;
		font-size: 16px;
		font-weight: 500;
		text-align: left;
		background-image: linear-gradient(#ffffff, #ffffff);
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: 0 1px;
		transition: .7s background-size ease;
	}
	.footer__nav-item:last-child {
		margin-bottom: 0;
	}
	.footer__nav-item:hover {
		background-position: bottom left;
		background-size: 100% 1px;
		opacity: 1;
	}
	.footer__banner {
	}
	.footer__banner a {
	}
	.footer__banner img {
	}
	.footer__copyright {
		color: #ffffff;
		font-family: "Noto Sans JP", sans-serif;
		font-size: 10px;
		font-weight: 400;
		line-height: 1.5;
		text-align: right;
		letter-spacing: .12em;
	}
}


/* ------------------------------
	Page TOP
------------------------------ */
#page-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	z-index: 99;
	cursor: pointer;
	transition: opacity .7s ease;
}
#page-top:hover {
	opacity: .7;
}

@media (min-width: 1024px) {
	#page-top {
		bottom: 70px;
		right: 70px;
		width: 70px;
	}
}

/* ------------------------------
	Glass Button
------------------------------ */
.glass_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 400px;
	height: 60px;
	border-radius: 60px;
	margin: 0 auto;
	padding: 0 40px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.1);
	box-shadow:
		inset 4px 5px 10px -5px rgba(0,0,0,0.1),
		inset -4px -5px 10px -5px rgba(255,255,255,.1),
		1px 1px 8px -4px rgba(0,0,0,.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .08em;
}
.glass_btn_icon {
}
.glass_btn_icon svg {
	fill: #fff;
	stroke: #2D362C;
}
.glass_btn_white {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 400px;
	height: 60px;
	border-radius: 60px;
	margin: 0 auto;
	padding: 0 40px;
	border: 1px solid #2D362C4D;
	background: rgba(255,255,255,.1);
	box-shadow:
		inset 4px 5px 10px -5px rgba(0,0,0,0.1),
		inset -4px -5px 10px -5px rgba(255,255,255,.1),
		1px 1px 8px -4px rgba(0,0,0,.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	color: #2D362C;
	text-shadow: 0 1px 2px rgba(255, 255, 255, .2);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .08em;
}
.glass_btn_white_icon {
}
.glass_btn_white_icon svg {
	fill: #2D362C;
	stroke: #fff;
}

@media (min-width: 1024px) {
	.glass_btn {
		margin: 0;
		overflow: hidden;
		position: relative;
		transition: .7s all ease;
		z-index: 1;
	}
	.glass_btn::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: .7s all ease;
		z-index: -1;
	}
	.glass_btn_icon {
	}
	.glass_btn_icon svg {
		transition: .7s all ease;
	}
	.glass_btn_white {
		margin: 0;
		overflow: hidden;
		position: relative;
		transition: .7s all ease;
		z-index: 1;
	}
	.glass_btn_white::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #2D362C;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: .7s all ease;
		z-index: -1;
	}
	.glass_btn_white_icon {
	}
	.glass_btn_white_icon svg {
		transition: .7s all ease;
	}
	.glass_btn:hover {
		color: #2D362C;
		opacity: 1;
	}
	.glass_btn:hover::after {
		transform: scale(1, 1);
	}
	.glass_btn:hover svg {
		fill: #2D362C;
		stroke: #fff;
	}
	.glass_btn_white:hover {
		color: #fff;
		opacity: 1;
	}
	.glass_btn_white:hover::after {
		transform: scale(1, 1);
	}
	.glass_btn_white:hover svg {
		fill: #fff;
		stroke: #2D362C;
	}
}


/* ==================================================
	CTA Contact
================================================== */

.cta-contact {
	padding: 80px 0;
	background: linear-gradient(154.28deg, #F5E9E3 -1.35%, #FFFFFF 30.16%, #FFFFFF 69.29%, #E4EEF9 89.93%);
	color: #2D362C;
}
.cta-contact-title {
	position: relative;
	margin-bottom: 60px;
}
.cta-contact-title__bg {
	position: absolute;
	top: -20px;
	left: -10px;
	width: 100px;
	opacity: .5;
	pointer-events: none;
}
.cta-contact-title__heading {
	display: flex;
	flex-direction: column;
}
.cta-contact-title__ja {
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
}
.cta-contact-title__en {
	width: 131px;
}
.cta-contact__content {
}
.cta-contact__lead {
	position: relative;
	margin-bottom: 60px;
	padding-left: 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}
.cta-contact__lead::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: #2D362C;
}
.cta-contact__button {
}
.cta-contact__button-icon {
}
.cta-contact__button-icon svg {
}


/* ------------------------------
	CTA Contact（PC）
------------------------------ */

@media (min-width: 1024px) {
	.cta-contact {
		padding: 220px 0;
		background: linear-gradient(121.87deg, #F5E9E3 -0.77%, #FFFFFF 26.67%, #FFFFFF 64.88%, #E4EEF9 89.99%);
	}
	.cta-contact-title {
		margin-bottom: 120px;
	}
	.cta-contact-title__bg {
		top: -50px;
		left: -80px;
		width: 200px;
	}
	.cta-contact-title__heading {
	}
	.cta-contact-title__ja {
		margin-bottom: 14px;
		font-size: 16px;
	}
	.cta-contact-title__en {
		width: 233px;
	}
	.cta-contact__content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.cta-contact__lead {
		margin-bottom: 0;
		padding-left: 56px;
		font-size: 20px;
	}
	.cta-contact__lead::before {
		width: 40px;
	}
	.cta-contact__button {
	}
	.cta-contact__button::after {
	}
	.cta-contact__button-icon {
	}
	.cta-contact__button-icon svg {
	}
	.cta-contact__button:hover {
	}
	.cta-contact__button:hover::after {
	}
	.cta-contact__button:hover svg {
	}
}


/* ------------------------------
	404
------------------------------ */
.page_404 {
	background-image:
		url(../img/common/bg_texture.png),
		linear-gradient(171.07deg, #495365 4.46%, #000000 26.15%, #000000 78.66%, #536D51 107.5%);
	background-blend-mode: multiply;
	padding: 160px 0 120px;
	color: #fff;
}
.title_404 {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.6;
}
.text_404 {
	margin-bottom: 14px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}
.link_404 {
	margin-top: 40px;
}
.link_404 a {
	width: fit-content;
}
@media (min-width: 1024px) {
	.page_404 {
		background-image:
			url(../img/common/bg_texture.png),
			linear-gradient(171.07deg, #495365 4.46%, #000000 26.15%, #000000 78.66%, #536D51 107.5%);
		padding: 220px 0 160px;
	}
	.title_404 {
		margin-bottom: 32px;
		font-size: 32px;
	}
	.text_404 {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.link_404 {
	}
}

