@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, ul, ol, p {
	list-style: none;
	font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS Mincho", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color: #333;
	padding: 0;
}
html {
	overflow-x: hidden;
}
body {
	background-color: #dde5e8;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: #333;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	transition: .5s ease;
}
a:hover {
	opacity: .6;
	cursor: pointer;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: .5s ease;
}
@media screen and (max-width: 768px) {
	html, body, ul, ol, p {
		font-size: 14px;
	}
}


/* 共通アニメーションの初期状態 */
.fade-in {
	opacity: 0;
	transform: translateY(20px); /* 下からフェードイン */
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.left {
	transform: translateX(-20px); /* 左からフェードイン */
}
.fade-in.right {
	transform: translateX(20px); /* 右からフェードイン */
}
.fade-in.up {
	transform: translateY(20px); /* 下からフェードイン（初期値） */
}
.fade-in.down {
	transform: translateY(-20px); /* 上からフェードイン */
}
.fade-in.show {
	opacity: 1;
	transform: translate(0, 0);
}

/* 表示の遅延を制御するクラス（0.5秒刻み） */
.fade-delay-0 {
	transition-delay: 0s;
}
.fade-delay-05 {
	transition-delay: 0.5s;
}
.fade-delay-1 {
	transition-delay: 1s;
}
.fade-delay-15 {
	transition-delay: 1.5s;
}
.fade-delay-2 {
	transition-delay: 2s;
}
.fade-delay-25 {
	transition-delay: 2.5s;
}
.fade-delay-3 {
	transition-delay: 3s;
}
/* JSでスクロール時に表示させる */


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: block;
	}
}


/*------------------------------------
フォント
------------------------------------*/
.en {
	font-family: "Outfit", serif;
	font-weight: 300;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.link
------------------------------------*/
.link a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	width: fit-content;
	font-size: 18px;
	letter-spacing: .08em;
	line-height: 1;
	margin: 0 auto;
}
.link a:after {
	content: "";
	display: block;
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px 8px;
	border: 1px solid #333;
	border-radius: 20px;
	width: 60px;
	height: 40px;
}
@media screen and (max-width: 768px) {
	.link a {
		font-size: 16px;
	}
	.link a:after {
		width: 56px;
		height: 36px;
	}
}


/*--------------------------------------------------------------------------
header.php
--------------------------------------------------------------------------*/
header {
	position: absolute;
	width: 100%;
	z-index: 10;
}
header .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 50px 163px 0 60px;
}
header .logo {
	max-width: 350px;
	width: 100%;
}
header .main-nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
}
header .main-nav ul li a {
	display: flex;
	line-height: 1;
	color: #fff;
}
header .main-nav ul li:not([class]) a {
	flex-direction: column;
	gap: 5px;
}
header .main-nav ul li.recruit a {
	align-items: center;
	position: relative;
	border: 1px solid #fff;
	border-radius: 30px;
	height: 60px;
	padding: .75em 4em .75em 2em;
}
header .main-nav ul li.recruit a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	/*background-image: url("../images/blank_wh.svg");*/
	background-image: url("../images/arrow_wh.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 16px;
	height: 8px;
}
@media screen and (max-width: 1280px) {
	header .main-nav {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	header .header-inner {
		margin: 22px 163px 0 20px;
	}
}


/*------------------------------------
.menu
------------------------------------*/
header .menu {
	position: fixed;
	top: 0;
	right: -400px;
	background-color: #dde5e8;
	width: 400px;
	height: 100%;
	padding: 120px 60px;
	overflow-y: auto;
	transition: right .5s ease;
	z-index: 1000;
}
header .menu.open {
	right: 0;
}
@media screen and (max-width: 768px) {
	header .menu {
		right: -320px;
		width: 320px;
		padding: 80px 32px 32px;
	}
}


/*------------------------------------
.hamburger
------------------------------------*/
.hamburger {
	position: fixed;
	top: 45px;
	right: 70px;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	transition: border-color 0.4s ease;
	cursor: pointer;
	z-index: 9998;
}
.hamburger.scrolled {
	background-color: #fff;
}
.hamburger div {
	position: absolute;
	left: 21px;
	background-color: #fff;
	width: 28px;
	height: 2px;
	transition: 0.4s;
}
.hamburger.scrolled div {
	background-color: #333;
}
.hamburger div:nth-child(1) {
	top: 27px;
}
.hamburger div:nth-child(2) {
	top: 34px;
}
.hamburger div:nth-child(3) {
	top: 41px;
}
.hamburger.open {
	border-color: #333 !important;
	background-color: transparent !important;
}
.hamburger.open div {
	background-color: #333 !important;
}
.hamburger.open div:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
	opacity: 0;
}
.hamburger.open div:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 768px) {
	.hamburger {
		top: 15px;
		right: 15px;
		width: 50px;
		height: 50px;
	}
	.hamburger div {
		left: 13px;
		width: 22px;
		height: 2px;
	}
	.hamburger div:nth-child(1) {
		top: 16px;
	}
	.hamburger div:nth-child(2) {
		top: 23px;
	}
	.hamburger div:nth-child(3) {
		top: 30px;
	}
}


/*------------------------------------
.overlay
------------------------------------*/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease;
	visibility: hidden;
	z-index: 900;
}
.overlay.open {
	backdrop-filter: blur(4px);
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 768px) {}


/*--------------------------------------------------------------------------
footer.php
--------------------------------------------------------------------------*/
/*------------------------------------
#page-top
------------------------------------*/
#page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	margin: 0;
	z-index: 9;
}
#page-top a {
	display: block;
	background: url("../images/page-top.svg") no-repeat center;
	background-size: 44px auto;/*この場合は高さが自動設定*/
	width: 44px;
	height: 44px;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 768px){
	#page-top {
		right: 4%;
	}
}


/*------------------------------------
.reserve-footer
------------------------------------*/
.reserve-footer {
	position: relative;
	background-image: url("../images/top/company-img.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.reserve-footer:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(53, 81, 101, 0.96);
	width: 100%;
	height: 100%;
	z-index: 0;
}
.reserve-footer .container {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px){}

/*.top*/
.reserve-footer .top {
	position: relative;
	padding: 32px 0;
}
.reserve-footer .top:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.3);
	width: 100%;
	height: 1px;
}
.reserve-footer .top h2 {
	font-size: 28px;
	line-height: 1.5;
	text-align: center;
	color: #fff;
}
@media screen and (max-width: 768px){
	.reserve-footer .top {
		padding: 16px 0;
	}
	.reserve-footer .top h2 {
		font-size: 20px;
	}
}

/*.flex*/
.reserve-footer .flex {
	display: flex;
	flex-wrap: wrap;
}
.reserve-footer .flex li {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: calc(100% / 3);
	margin: 60px 0;
}
.reserve-footer .flex li:not(:last-child):after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.3);
	width: 1px;
	height: 100%;
}
.reserve-footer .flex li h3 {
	font-size: 24px;
	line-height: 1;
	color: #fff;
	margin-bottom: 24px;
}
.reserve-footer .flex li .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 100px;
	height: 100px;
}
.reserve-footer .flex li .icon img {
	width: 50px;
}
.reserve-footer .flex li .tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	line-height: 1;
	margin-top: 20px;
}
.reserve-footer .flex li .tel a {
	font-size: 40px;
	letter-spacing: .08em;
	color: #fff;
}
.reserve-footer .flex li .tel .reception {
	font-size: 12px;
	color: #fff;
}
.reserve-footer .flex li .link a {
	letter-spacing: 0;
	color: #fff;
	margin-top: 30px;
}
.reserve-footer .flex li .link a:after {
	background-image: url("../images/arrow_wh.svg");
	border-color: #fff;
}
.reserve-footer .flex li .recruit {
	margin-top: 30px;
}
.reserve-footer .flex li .recruit a {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 30px;
	width: 206px;
	height: 48px;
	line-height: 1;
	color: #355165;
	padding: .75em 3em .75em 1.5em;
}
.reserve-footer .flex li .recruit a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/blank_bl.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
}
@media screen and (min-width: 769px){
	.reserve-footer .flex li .tel a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
@media screen and (max-width: 768px){
	.reserve-footer .flex li {
		width: 100%;
		margin: 0;
		padding: 32px 5vw;
	}
	.reserve-footer .flex li:not(:last-child):after {
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
	}
	.reserve-footer .flex li h3 {
		font-size: 20px;
	}
	.reserve-footer .flex li .icon {
		width: 80px;
		height: 80px;
	}
	.reserve-footer .flex li .icon img {
		width: 40px;
	}
	.reserve-footer .flex li .tel {
		margin-top: 10px;
	}
	.reserve-footer .flex li .tel a {
		font-size: 36px;
	}
	.reserve-footer .flex li .link a {
		margin-top: 15px;
	}
	.reserve-footer .flex li .recruit {
		margin-top: 15px;
	}
}


/*------------------------------------
footer
------------------------------------*/
footer {
	padding-top: 80px;
}
footer .container {
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	width: calc(100% - 10vw);
	margin: 0 auto;
	padding-bottom: 80px;
}
footer .footer-left {
	max-width: 440px;
	width: 100%;
	margin-right: 38px;
}
footer .footer-left .logo {
	max-width: 350px;
	width: 100%;
	margin-bottom: 40px;
}
footer .footer-right {
	max-width: 800px;
	width: 100%;
}
footer .footer-right .sitemap {
	display: flex;
	flex-wrap: wrap;
}
footer .footer-right .sitemap > ul {
	width: calc(100% / 3);
}
.sitemap > ul > li:not(:last-child) {
	margin-bottom: 36px;
}
.sitemap ul div a {
	display: flex;
	flex-direction: column;
	gap: 5px;
	line-height: 1;
}
.sitemap ul div a span {
	font-size: 14px;
}
.sitemap ul .sub-layer {
	list-style: none;
	margin-top: 16px;
}
.sitemap ul .sub-layer li {
	display: flex;
}
.sitemap ul .sub-layer li:before {
	content: "-";
	margin-right: 8px;
}
.sitemap ul .sub-layer li a[target="_blank"] {
	display: flex;
	align-items: center;
	gap: 12px;
}
.sitemap ul .sub-layer li a[target="_blank"]:after {
	content: "";
	background-image: url("../images/blank.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 12px;
}
@media screen and (max-width: 768px) {
	footer {
		padding-top: 56px;
	}
	footer .container {
		flex-wrap: wrap;
		padding-bottom: 56px;
	}
	footer .footer-left {
		margin: 0 0 40px;
	}
	footer .footer-left .logo {
		max-width: 231px;
		margin-bottom: 20px;
	}
	footer .footer-right .sitemap > ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	footer .footer-right .sitemap > ul:nth-child(2) {
		margin-bottom: 24px;
	}
	footer .footer-right .sitemap > ul:nth-child(1) li,
	footer .footer-right .sitemap > ul:nth-child(3) li {
		width: calc(100% / 2);
	}
	.sitemap ul .sub-layer li.engage a {
		width: 220px;
	}
}

/*.copyright*/
footer .copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #355165;
	height: 60px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 768px) {
	footer .copyright {
		height: 50px;
		font-size: 10px;
	}
}

/* 最初は非表示、スマホ幅以下で表示制御 */
.mobile-nav {
	position: fixed;
	bottom: 20px;
	left: 0;
	width: 100%;
	display: none;
	justify-content: center;
	z-index: 9999;
}
.mobile-nav .nav-button {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 30px;
	width: 206px;
	height: 48px;
	line-height: 1;
	color: #333;
	padding: .75em 4em .75em 2em;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	opacity: 0;
	transition: opacity 0.5s ease;
}
.mobile-nav .nav-button:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 16px;
	height: 8px;
}

/* フェードイン時の表示用クラス */
.mobile-nav.show .nav-button {
	opacity: 1;
}

/* メディアクエリでスマホのみ表示 */
@media screen and (max-width: 768px) {
.mobile-nav {
	display: flex;
	}
}


/*--------------------------------------------------------------------------
投稿関連
--------------------------------------------------------------------------*/
/*------------------------------------
投稿一覧
------------------------------------*/
.archive main {
	padding-bottom: 200px;
}
.archive .container {
	max-width: 1260px;
	width: calc(100% - 10vw);
	margin: 0 auto;
	padding-top: 80px;
}
.archive .info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 64px 40px;
	margin-bottom: 80px;
}
.archive .entry {
	width: calc((100% - 80px)/3);
}
.archive .entry .img {
	margin-bottom: 32px;
}
.archive .entry .img img {
	width: 768px;
	aspect-ratio: 10 / 9;
	object-fit: cover;
	object-position: center top;
}
.archive .entry .txt .post-tags {
	list-style: none;
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
}
.archive .entry .txt .post-tags > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(53, 81, 101, 0.69);
	height: 32px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	padding: 0 16px;
}
.archive .entry .txt h2 {
	font-size: 20px;
}
@media screen and (max-width: 768px) {
	.archive main {
		padding-bottom: 100px;
	}
	.archive .container {
		padding-top: 40px;
	}
	.archive .info-list {
		gap: 32px 20px;
		margin-bottom: 40px;
	}
	.archive .entry .img {
		margin-bottom: 16px;
	}
	.archive .entry {
		width: calc((100% - 20px)/2);
	}
	.archive .entry .txt .post-tags > li a {
		height: 28px;
		font-size: 13px;
		padding: 0 12px;
	}
	.archive .entry .txt h2 {
		font-size: 16px;
	}
}

/*.pager*/
.archive .pager,
.archive .pager ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.archive .pager {
	gap: 36px;
}
.archive .pager ul {
	gap: 16px;
}
.archive .pager ul li {
	position: relative;
}
.archive .pager ul li:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #c3d0d5;
	width: 0;
	height: 4px;
	transition: 0.5s ease;
}
.archive .pager ul li:hover:after {
	width: 100%;
	opacity: 1;
}
.archive .pager ul li.current:after {
	width: 100%;
}
.archive .pager ul li a,
.archive .pager ul li span {
	display: block;
	font-family: "Outfit", serif;
	font-weight: 300;
	line-height: 1;
	padding: 0 16px 24px;
}
.archive .pager .arrow.prev a,
.archive .pager .arrow.next a {
	display: block;
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px 8px;
	border: 1px solid #333;
	border-radius: 20px;
	width: 60px;
	height: 40px;
	font-size: 0;
}
.archive .pager .arrow.prev a {
	transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
	.archive .pager {
		gap: 20px;
	}
	.archive .pager ul {
		gap: 10;
	}
	.archive .pager ul li a,
	.archive .pager ul li span {
		font-size: 16px;
		padding: 0 12px 16px;
	}
	.archive .pager .arrow.prev a,
	.archive .pager .arrow.next a {
		width: 56px;
		height: 36px;
	}
}


/*------------------------------------
投稿詳細
------------------------------------*/
.single main {
	padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
	.single main {
		padding-bottom: 120px;
	}
}

/*.main-sec*/
.single main .main-sec {
	padding-top: 80px;
}
.single main .main-sec .container {
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-bottom: 1px solid #c3d0d5;
	padding-bottom: 40px;
}
.single main .main-sec ul {
	display: flex;
	gap: 10px;
}
.single main .main-sec ul li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(53, 81, 101, 0.69);
	height: 32px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	padding: 0 16px;
}
.single main .main-sec h1 {
	font-size: 36px;
}
.single main .main-sec time {
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.single main .main-sec {
		padding-top: 40px;
	}
	.single main .main-sec .container {
		gap: 16px;
		padding-bottom: 20px;
	}
	.single main .main-sec ul li a {
		height: 28px;
		font-size: 13px;
		padding: 0 12px;
	}
	.single main .main-sec h1 {
		font-size: 19px;
	}
}

/*.container*/
.single main .container {
	max-width: 944px;
	width: calc(100% - 10vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {}

/*.cms-block*/
.single main .cms-block h2 {
	font-size: 24px;
	margin: 100px 0 24px;
}
.single main .cms-block picture {
	display: block;
	margin: 40px 0;
}
.single main .cms-block > p {
	line-height: 2;
	margin: 24px 0;
}
.single main .cms-block strong {
	font-weight: 900;
}
.single main .cms-block em {
	font-style: italic;
}
.single main .cms-block ul,
.single main .cms-block ol {
	margin: 24px 0;
	padding-left: 24px;
}
.single main .cms-block ul li {
	list-style: disc;
}
.single main .cms-block ol li {
	list-style: decimal;
}
.single main .cms-block li:not(:last-child) {
	margin-bottom: 4px;
}
.single main .cms-block blockquote {
	position: relative;
	border-left: 4px solid #c3d0d5;
	padding: 10px 0 10px 50px;
}
.single main .cms-block blockquote:before {
	top: -16px;
	left: 24px;
	font-family: "Outfit", serif;
	font-size: 40px;
	font-weight: 300;
	color: #333;
}
.single main .cms-block blockquote > p {
	font-size: 16px;
}
.single main .cms-block a {
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.single main .cms-block h2 {
		font-size: 17px;
		margin: 50px 0 16px;
	}
	.single main .cms-block picture {
		margin: 24px 0;
	}
	.single main .cms-block > p {
		margin: 16px 0;
	}
	.single main .cms-block blockquote {
		padding-left: 32px;
	}
	.single main .cms-block blockquote:before {
		left: 12px;
		font-size: 32px;
	}
	.single main .cms-block blockquote > p {
		font-size: 14px;
	}
}

/*.link*/
.single main .link {
	margin-top: 120px;
}
@media screen and (max-width: 768px) {
	.single main .link {
		margin-top: 64px;
	}
}


/*------------------------------------
お問い合わせ関連
------------------------------------*/
.contact section {
	padding: 32px 0 200px;
}
.contact section .container {
	max-width: 800px;
	width: calc(100% - 10vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.contact section {
		padding: 16px 0 100px;
	}
}

/*.g-form*/
.g-form .form-col {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #c3d0d5;
	padding: 24px 0;
}
.g-form .form-col dt {
	width: 200px;
}
.g-form .form-col dt .req {
	color: #dc1111;
	margin-left: 4px;
}
.g-form .form-col dd {
	width: calc(100% - 240px);
	padding-left: 40px;
}
.g-form .form-col dd.date p {
	display: flex;
	gap: 24px;
}
.g-form .form-col dd.date p [data-name="your-hour"] {
	position: relative;
}
.g-form .form-col dd.date p [data-name="your-hour"]:after {
	content: "";
	position: absolute;
	top: 29px;
	right: 16px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #333;
}
.g-form .form-col dd.date p [data-name="your-hour"] select {
	padding-right: 40px;
}
.g-form .form-col dd .conditional-input {
	margin-top: 16px;
}
.g-form .wpcf7-list-item {
	display: block;
	margin: 0;
}
.g-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 4px;
}
.g-form input[type=checkbox],
.g-form input[type=radio] {
	border: 1px solid #c3d0d5;
	width: 20px;
	height: 20px;
	background-color: #fff;
	transition: 0.5s ease;
}
.g-form input[type=checkbox]:after {
	top: 1px;
	border-width: 2px;
	transform: rotate(45deg);
}
.g-form input[type=checkbox]:checked {
	background-color: #355165;
	border: 1px solid #355165;
}
.g-form input[type=checkbox]:checked:after {
	border-color: #fff;
}
.g-form .wpcf7-list-item-label {
	cursor: pointer;
}
.g-form input[type=text],
.g-form input[type=email],
.g-form input[type=tel],
.g-form input[type=number],
.g-form input[type=password],
.g-form input[type=search],
.g-form input[type=url] {
	border: 1px solid #c3d0d5;
	width: 100%;
	margin: 0;
	font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS Mincho", serif;
	padding: 16px;
}
.g-form textarea,
.g-form select {
	display: block;
	border: 1px solid #c3d0d5;
	width: 100%;
	font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS Mincho", serif;
	padding: 16px;
	outline: none;
}
.g-form .privacy-agree {
	margin-top: 24px;
}
.g-form .privacy-agree p {
	margin-bottom: 8px;
}
.g-form .privacy-agree p a {
	text-decoration: underline;
}
.g-form .privacy-agree p a:hover {
	text-decoration: none;
}
.g-form .submit {
	margin-top: 64px;
}
.g-form .submit input[type=submit] {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #355165 !important;
	border: none;
	border-radius: 30px;
	max-width: 260px;
	width: 100%;
	height: 60px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1;
	color: #fff !important;
	margin: 0 auto;
	transition: .5s ease;
}
.g-form .submit input[type=submit]:hover {
	opacity: .6;
}
.g-form .submit .wpcf7-spinner {
	display: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
	display: none;
}
@media screen and (max-width: 768px) {
	.g-form .form-col {
		padding: 16px 0;
	}
	.g-form .form-col dt,
	.g-form .form-col dd {
		width: 100%;
	}
	.g-form .form-col dt {
		margin-bottom: 8px;
	}
	.g-form .form-col dd {
		padding: 0;
	}
	.g-form .form-col dd.date p {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.g-form .form-col dd.date p [data-name="your-hour"]:after {
		top: 27px;
	}
	.g-form .wpcf7-list-item label {
		gap: 8px;
		font-size: 14px;
	}
	.g-form input[type=text],
	.g-form input[type=email],
	.g-form input[type=tel],
	.g-form input[type=number],
	.g-form input[type=password],
	.g-form input[type=search],
	.g-form input[type=url],
	.g-form textarea {
		font-size: 16px;
	}
	.g-form textarea {
		height: 110px;
	}
	.g-form .submit {
		margin-top: 40px;
	}
}

/*.thanks*/
.thanks section {
	padding: 80px 0 120px;
}
.thanks section .container {
	max-width: 800px;
	width: calc(100% - 20vw);
	margin: 0 auto;
}
.thanks h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 32px;
}
.thanks p {
	text-align: center;
}
.thanks p:not(:last-of-type) {
	margin-bottom: 24px;
}
.thanks p.notes {
	color: #dc1111;
}
.thanks .link {
	margin-top: 56px;
}
@media screen and (max-width: 768px) {
	.thanks section {
		padding: 40px 0 64px;
	}
	.thanks h2 {
		font-size: 16px;
		text-align: left;
	}
	.thanks p {
		text-align: left;
	}
	.thanks .link {
		margin-top: 32px;
	}
}


/*--------------------------------------------------------------------------
固定ページ共通
--------------------------------------------------------------------------*/
/*------------------------------------
.l-hero
------------------------------------*/
.l-hero {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 370px;
}
.l-hero:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(53, 81, 101, 0.69);
	width: 100%;
	height: 100%;
	z-index: 0;
}
.l-hero h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: relative;
	font-size: 56px;
	line-height: 1;
	color: #fff;
	margin-top: 40px;
	z-index: 1;
}
.l-hero h1 span.en {
	font-size: 16px;
	text-transform: capitalize;
}
@media screen and (max-width: 768px) {
	.l-hero {
		background-attachment: scroll;
		height: 180px;
	}
	.l-hero h1 {
		gap: 8px;
		font-size: 28px;
	}
}


/*------------------------------------
汎用パンくず
------------------------------------*/
.breadcrumb {
	background-color: #fff;
	padding: 20px 0;
}
.breadcrumb ul {
	display: flex;
	margin: 0 46px;
}
.breadcrumb li {
	position: relative;
	font-size: 14px;
	padding: 0 16px;
}
.breadcrumb li:first-child {
	padding-left: 0;
}
.breadcrumb li::after {
	content: "";
	position:absolute;
	top:50%;
	right:0;
	border-top:1px solid #aaa;
	border-right:1px solid #aaa;
	width:5px;
	height:5px;
	margin-top:-3px;
	transform:rotate(45deg);
}
.breadcrumb li:last-child::after {
	border: none;
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		padding: 10px 0;
	}
	.breadcrumb ul {
		margin: 0 5vw;
	}
}


/*--------------------------------------------------------------------------
採用情報 | Updated: 2025-11
--------------------------------------------------------------------------*/
.recruit .container {
	width: calc(100% - 10vw);
	margin-inline: auto;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.ttl
------------------------------------*/
.recruit .ttl {
	display: block;
	font-size: 80px;
	font-weight: 500;
	line-height: 1.15;
	color: #aab2b5;
}
@media screen and (max-width: 768px) {
	.recruit .ttl {
		font-size: 36px;
	}
}


/*------------------------------------
.recruit__more
------------------------------------*/
.recruit__more a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #155ca7;
	border-radius: 35px;
	width: 300px;
	height: 70px;
	font-size: 18px;
	letter-spacing: .08em;
	color: #155ca7;
	padding: 20px 30px 20px 40px;
}
.recruit__more a::after {
	content: "";
	display: block;
	background-image: url("../images/recruit/more-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 16px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.recruit__more a:hover::after {
	transform: translate(8px, 0px);
}
@media screen and (max-width: 768px) {
	.recruit__more a {
		width: 250px;
		height: 60px;
		font-size: 16px;
	}
}


/*------------------------------------
#flow
------------------------------------*/
#flow {
	background-color: #fff;
	padding: 120px 0;
}
#flow .container {
	max-width: 1200px;
}
#flow .ttl {
	margin-bottom: 8px;
}
.flow__txt {
	font-size: 20px;
	margin-bottom: 40px;
}
.flow-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 80px;
}
.flow-list li {
	position: relative;
	width: calc((100% - 320px) / 5);
}
.flow-list li > img {
	display: flex;
	position: absolute;
	top: 78.5px;
	right: -60px;
	width: 40px;
	height: 19px;
}
.flow__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.flow__inner .img {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #dde5e8;
	border-radius: 50%;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.flow__inner .img img {
	width: 100px;
	height: 100px;
}
.flow__inner .txt {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.flow__inner h3 {
	font-size: 22px;
	text-align: center;
}
.flow__inner p,
.flow__inner small {
	line-height: 1.7;
}
@media screen and (max-width: 768px) {
	#flow {
		padding: 70px 0;
	}
	.flow__txt {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.flow-list {
		gap: 50px;
	}
	.flow-list li {
		width: 100%;
	}
	.flow-list li > img {
		top: auto;
		bottom: -30px;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
		-webkit-transform: translateX(-50%) rotate(90deg);
		-ms-transform: translateX(-50%) rotate(90deg);
		width: 20px;
		height: 10px;
	}
	.flow__inner {
		gap: 10px;
	}
	.flow__inner .img {
		width: 100px;
	}
	.flow__inner .img img {
		width: 60px;
		height: 60px;
	}
	.flow__inner .txt {
		gap: 8px;
	}
	.flow__inner h3 {
		font-size: 16px;
	}
}

/*------------------------------------
#faq
------------------------------------*/
#faq .ttl {
	margin-bottom: 8px;
}
.faq__txt {
	font-size: 20px;
	margin-bottom: 40px;
}
#accordion li {
	background-color: #fff;
}
#accordion li:not(:last-child) {
	margin-bottom: 16px;
}
#accordion .que {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-size: 18px;
	font-weight: 600;
	padding: 24px 32px;
	cursor: pointer;
}
#accordion .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border: 1px solid #155ca7;
	border-radius: 50%;
	width: 24px;
	height: 24px;
}
#accordion .arrow:after {
	content: "";
	background-image: url("../images/recruit/faq-arrow.svg");
	background-size: cover;
	width: 6px;
	height: 8px;
	transform: rotate(90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .que.active .arrow:after {
	transform: rotate(-90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .ans {
	display: none;
	font-size: 15px;
	padding: 0 32px 32px 32px;
}
#accordion a {
	text-decoration: underline;
}
#accordion a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.faq__txt {
		font-size: 14px;
		margin-bottom: 16px;
	}
	#accordion .que {
		font-size: 16px;
		padding: 16px 24px;
	}
	#accordion .ans {
		font-size: 14px;
		padding: 0 24px 24px 24px;
	}
}

/*------------------------------------
.links
------------------------------------*/
.recruit .links {
	margin: 160px 0;
}
.recruit .links-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1080px;
	width: calc(100% - 10vw);
	margin-inline: auto;
}
.recruit .links-list li {
	width: calc((100% - 40px) / 2);
}
.recruit .links-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #fff;
	/*border-radius: 28px;*/
	width: 100%;
	height: 180px;
}
.recruit .links-list a::before {
	content: "";
	position: absolute;
	top: 0;
	/*background-image: url("../images/recruit/rounded-bg.svg");*/
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.recruit .links-list .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	position: absolute;
	right: 20px;
	bottom: 20px;
	background-color: #155ca7;
	border-radius: 50%;
	width: 63px;
	height: 63px;
	transition: .3s cubic-bezier(.4,.4,0,1);
	z-index: 2;
}
.recruit .links-list a:hover .arrow {
	background-color: transparent;
	border: 1px solid #155ca7;
	transform: scale(1.1, 1.1);
}
.recruit .links-list .arrow::before {
	content: "";
	background-image: url("../images/recruit/rounded-arrow.svg");
	background-position: 50%;
	background-size: cover;
	width: 14px;
	height: 14px;
}
.recruit .links-list a:hover .arrow::before {
	background-image: url("../images/recruit/rounded-arrow_bl.svg");
}
.recruit .links-list h2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 80%;
	font-size: 28px;
	line-height: 1;
	z-index: 1;
}
.recruit .links-list h2 .en {
	font-size: 16px;
	letter-spacing: .08em;
	color: #155ca7;
}
@media screen and (max-width: 768px) {
	.recruit .links {
		margin: 80px 0;
	}
	.recruit .links-list {
		gap: 28px;
	}
	.recruit .links-list li {
		width: 100%;;
	}
	.recruit .links-list a {
		/*border-radius: 20px;*/
		height: 120px;
	}
	.recruit .links-list .arrow {
		right: 15px;
		bottom: 15px;
		width: 40px;
		height: 40px;
	}
	.recruit .links-list .arrow::before {
		width: 10px;
		height: 10px;
	}
	.recruit .links-list h2 {
		font-size: 20px;
	}
	.recruit .links-list h2 .en {
		font-size: 14px;
	}
}


/*------------------------------------
.hero
------------------------------------*/
:root {
	--accent-red: #d50000; /* お好みで差し替えOK */
}
.hero {
	position: relative;
	width: 100%;
	height: 47vh;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* 背景画像＋黒マスク */
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* 中央寄せ（幅1400px基準） */
.hero__inner {
	position: relative;
	top: 50px;
	z-index: 2;
	width: 1400px;
	max-width: 90%;
	margin: 0 auto;
	color: #fff;
}

/* h1（左に赤い丸＋ふわっと点滅） */
.hero__inner h1 {
	position: relative;
	font-size: 3.6rem;
	/*padding-left: 36px;*/
	line-height: 1.4;
	letter-spacing: .08em;
}

.hero__inner h1::before,
.hero__inner h1::after {
	content: "";
	display: none;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	pointer-events: none;
	will-change: transform, opacity;
}

/* 本体の赤い丸 */
.hero__inner h1::before {
	width: 14px;
	height: 14px;
	background-color: var(--accent-red);
	animation: dot-puff 2.4s ease-in-out infinite;
}

/* ほのかな外側の“にじみ” */
.hero__inner h1::after {
	width: 14px;
	height: 14px;
	box-shadow: 0 0 0 0 rgba(213,0,0,.45);
	animation: dot-glow 2.4s ease-in-out infinite;
}

/* ふわっと点滅：拡大＋透明度 */
@keyframes dot-puff {
	0%   { transform: translateY(-50%) scale(.92); opacity:.70; }
	50%  { transform: translateY(-50%) scale(1.12); opacity:1; }
	100% { transform: translateY(-50%) scale(.92); opacity:.70; }
}

/* 外側のにじみ：薄く広がって消える */
@keyframes dot-glow {
	0%   { box-shadow: 0 0 0 0 rgba(213,0,0,.45); opacity:.6; }
	50%  { box-shadow: 0 0 0 8px rgba(213,0,0,.0); opacity:.0; }
	100% { box-shadow: 0 0 0 0 rgba(213,0,0,.45); opacity:.6; }
}

/* 低速回線やモーション軽減設定に配慮 */
@media (prefers-reduced-motion: reduce){
.hero__inner h1::before,
.hero__inner h1::after{ animation: none; }
}
.hero__inner h1 span {
	display: block;
	font-size: 24px;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.hero{ height:40vh; min-height:280px; }
	.hero__inner{ width:90%; }
	.hero__inner h1{ font-size:2rem; /*padding-left:28px;*/ }
	.hero__inner h1::before,
	.hero__inner h1::after{ width:10px; height:10px; }
}


/*------------------------------------
.mv-slider
------------------------------------*/
.recruit .mv-slider {
	margin: 80px 0;
}
.recruit .mv-slider .slick-slide {
	margin: 0 30px;
}
@media screen and (max-width: 768px) {
	.recruit .mv-slider {
		margin: 40px 0;
	}
	.recruit .mv-slider .slick-slide {
		margin: 0 10px;
	}
}


/*------------------------------------
.table
------------------------------------*/
.recruit .table {
	border-top: 1px solid #ccc;
}
.recruit .table th,
.recruit .table td {
	border: none;
	border-bottom: 1px solid #ccc;
	letter-spacing: .08em;
	padding: 10px 0;
}
.recruit .table th {
	position: relative;
	width: 20%;
	font-weight: 400;
	padding-right: 16px;
}
.recruit .table th::after {
	content: "";
	position: absolute;
	top: 8px;
	right: 0;
	bottom: 8px;
	border-right: 1px solid #ccc;
}
.recruit .table td {
	width: 80%;
	padding-left: 16px;
}
.recruit .table td small {
	display: block;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.recruit .table th {
		width: 30%;
	}
	.recruit .table td {
		width: 70%;
	}
}


/*------------------------------------
.anchor
------------------------------------*/
.anchor {
	background-color: #fff;
	padding: 50px 0;
}
.anchor-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1080px;
	width: calc(100% - 10vw);
	margin: 0 auto;
}
.anchor-list li {
	position: relative;
	width: calc((100% - 20px)/3);
}
.anchor-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #ccc;
	height: 56px;
	text-align: center;
	white-space: nowrap;
	z-index: 0;
}
.anchor-list a:hover {
	opacity: 1;
}
.anchor-list li:before,
.anchor-list li:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list a:before,
.anchor-list a:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list li:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list li:after {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list a:before {
	top: 0;
	left: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list a:after {
	top: 0;
	right: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list li:hover:before,
.anchor-list li:hover:after {
	opacity: 1;
}
.anchor-list li:hover a:before,
.anchor-list li:hover a:after {
	opacity: 1;
}
.anchor-list li.current:before,
.anchor-list li.current:after {
	opacity: 1;
}
.anchor-list li.current a:before,
.anchor-list li.current a:after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.anchor {
		padding: 32px 0;
	}
	.anchor-list li {
		width: calc((100% - 10px)/2);
	}
	.anchor-list a {
		height: 48px;
	}
}
