/* ------------------------------- */
/* nyukai_style_new.css */
/* ------------------------------- */

:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-red: #DF0E0E;
	--color-dark-blue: #1C3C5A;
	--color-light-blue: #EFEFF3;
	--color-bg-blue: #ECF4FB;
	--color-light-gray: #EEEEEE;
	--color-gray-border: #DDDDDD;
	
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-bold: 700;
	--height-header: 141px;
}
@media screen and (max-width: 1023px) {
	:root {
		/* header分の調整 */
		--height-header: calc(5vw + 45.4px);
	}
}


/* 共通 */
/* --------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 20px;
	box-sizing: border-box;
}
.nyukai-page {
	font-feature-settings: "palt";
}
p {
	font-size: 16px;
	line-height: 1.6;
	font-weight: var(--font-weight-regular);
	color: var(--color-black);
	text-decoration: none;
}
a {
	display: block;
	color: var(--color-dark-blue);
	text-decoration: underline;
}
a:visited,
a:link {
	color: var(--color-dark-blue);
}
a:hover,
a:focus {
	color: var(--color-dark-blue);
	text-decoration: none;
}
/* sp */
@media screen and (max-width: 767px) {
	p {
		font-size: 14px;
	}
}

.nyukai-page h2 {
	font-size: 40px;
	font-weight: var(--font-weight-medium);
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
	color: var(--color-black);
	line-height: 1;
}
h2.small {
	font-size: 24px;
}
h2:has(span.num) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	vertical-align: middle;
	gap: 20px;
}
h2 span {
	display: inline-block;
	vertical-align: middle;
}
h2 span.num {
	font-size: 58%;
	font-weight: var(--font-weight-medium);
	padding: 0.2em 1em 0.3em;
	margin: 0;
	color: var(--color-red);
	border: var(--color-red) 2px solid;
	margin-top: 3px;
}
.nyukai-page h3 {
	font-size: 24px;
	font-weight: var(--font-weight-medium);
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
	color: var(--color-black);
	line-height: 1.4;
}
.nyukai-page h3.list-style {
	padding-left: 1.2em;
	position: relative;
}
.nyukai-page h3.list-style::before {
	content: "";
	background: var(--color-black);
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	margin-top: 2px;
}
.nyukai-page h4 {
	font-size: 16px;
	line-height: 1.6;
	font-weight: var(--font-weight-medium);
	color: var(--color-black);
	margin-bottom: 0.3em;
}
.nyukai-page p + h4 {
	padding-top: 1em;
}

/* tablet */
@media screen and (max-width: 980px) {
	.nyukai-page h2 {
		font-size: 30px;
		margin-bottom: 34px;
	}
	h2.small {
		font-size: 18px;
	}
	.nyukai-page h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.nyukai-page h3.list-style::before {
		margin-top: 1px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.nyukai-page h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	h2.small {
		font-size: 18px;
		margin-bottom: 20px;
	}
	h2 span.num {
		margin-top: 2px;
	}
	.nyukai-page h3 {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.nyukai-page h3.list-style::before {
		margin-top: 1px;
	}
	.nyukai-page h4 {
		font-size: 14px;
	}
}

.nyukai-page ul {
	list-style-type: none;
}
.nyukai-page ul,
.nyukai-page dl {
	margin: 1em 0;
}
.nyukai-page ul li,
.nyukai-page dl dt,
.nyukai-page dl dd {
	font-size: 16px;
	line-height: 1.8;
	font-weight: var(--font-weight-regular);
	color: var(--color-black);
}
/* sp */
@media screen and (max-width: 767px) {
	.nyukai-page ul li,
	.nyukai-page dl dt,
	.nyukai-page dl dd {
		font-size: 14px;
	}
}

ul.text-list li {
	padding-left: 1.5em;
	position: relative;
}
ul.text-list li::before {
	content: '';
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: var(--color-dark-blue);
	position: absolute;
	left: 0.5em;
	top: 0.65em;
}
ul.text-list li a {
	width: fit-content;
}
/* pc */
@media screen and (min-width: 980.01px) {
	ul.text-list li::before {
		margin-top: 0.5px;
	}
}

/* ボタン button */
/* ------------------- */
.button {
	width: 100%;
	transition: opacity 0.5s ease;
}
.button.btn-blue {
	background: var(--color-dark-blue);
	border: var(--color-dark-blue) 2px solid;
}
.button.btn-red {
	background: var(--color-red);
	border: var(--color-red) 2px solid;
}
.button.btn-white {
	background: var(--color-white);
	border: var(--color-dark-blue) 2px solid;
}
.button:has(a:hover) {
	opacity: 0.7;
}
.button a {
	color: var(--color-white);
	padding: 15px 20px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: var(--font-weight-bold);

	/* icon用 調整 */
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.button a img {
	height: 22px;
	width: auto;
}
/* iconサイズ・位置調整 */
.button a img.icon-mail {
	transform: scale(80%) translateY(2px);
}
.button a img.icon-book {
	transform: translateY(2px);
}
.button a img.icon-tel {
	transform: scale(120%);
}

.button.btn-white a {
	color: var(--color-dark-blue);
}
.button.btn-tel a {
	font-size: 20px;
}
.btn-group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 3vw;
	justify-content: center;
}
.btn-group > div {
	width: calc( (100% - 3vw)/2 );
}
.btn-group .button a {
	min-height: 52px;
}
/* sp 以外 */
@media screen and (min-width: 767.01px) {
	.button.btn-tel a {
		pointer-events: none;
	}
}
/* tablet */
@media screen and (max-width: 980px) {
	.button a {
		gap: 14px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.button a {
		padding: 15px 15px;
		font-size: 14px;
		gap: 12px;
	}
	.button.btn-tel a {
		font-size: 16px;
	}
	.btn-group {
		flex-direction: column;
		gap: 10px;
	}
	.btn-group > div {
		width: 100%;
	}
	.btn-group .button a {
		min-height: auto;
	}
	.button a img {
		height: 18px;
		width: auto;
	}
}

/* ボタン装飾 */
.button {
	position: relative;
}
/* 三角形 */
.button::before {
	content: "";
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	background: white;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	width: 12px;
	height: 15px;
}
.button.btn-tel::before {
	content: none;
}
/* ボタン上部の文字 */
.button .btn-top-text {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background: var(--color-white);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	padding: 3px 26px;
	border: 2px var(--color-dark-blue) solid;
	border-radius: 16px;
	color: var(--color-dark-blue);
	min-width: 170px;
	text-align: center;
}
.button.btn-red .btn-top-text {
	border: 2px var(--color-red) solid;
	color: var(--color-red);
}
/* tablet */
@media screen and (max-width: 980px) {
	.button::before {
		right: 18px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.button::before {
		width: 10px;
		height: 12.5px;
		right: 16px;
	}
}

/* .c-card */
/* ------------------- */
.p-card-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3vw;
}
.p-card-list .c-card {
	width: calc( (100% - (3vw * 2))/3 );
	background: var(--color-white);
	border: var(--color-gray-border) 1px solid;
	transition: opacity 0.5s ease;
}
.c-card a {
	text-decoration: none;
	height: 100%;
}
.c-card:has( > a:hover)  {
	opacity: 0.6;
}
/* tablet */
@media screen and (max-width: 980px) {
	.p-card-list .c-card {
		width: calc( (100% - 3vw)/2 );
	}
}
/* .card-inner */
.card-inner {
	padding: 30px 10px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	vertical-align: middle;
	align-items: center;
}
.card-icon {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--color-light-blue);
	position: relative;
}
.card-icon > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	height: 44px;
	width: 44px;
}
.card-icon img {
	object-position: center;
	object-fit: contain;
	height: 100%;
	width: 100%;
}
.card-title {
	font-size: 22px;
	font-weight: var(--font-weight-medium);
}
.card-text {
	padding: 0 2vw;
	margin: 0 auto;
	max-width: calc(280px + 4vw);
	text-align: left;
	width: 100%;
}
.card-button {
	width: calc(100% - 4vw);
	max-width: 280px;
	margin: 0 auto;
}
/* tablet */
@media screen and (max-width: 980px) {
	.card-text {
		padding: 0;
		max-width: 280px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.card-inner {
		padding: 15px 10px;
		gap: 10px;
	}
	.card-title {
		font-size: 16px;
	}
	.card-icon {
		width: 80px;
		height: 80px;
	}
	.card-icon > div {
		height: 32px;
		width: 32px;
	}
	.card-button {
		width: 100%;
	}
}
/* sp 調整 */
@media screen and (max-width: 568px) {
	.card-title {
		font-size: 14px;
		letter-spacing: -0.05em;
	}
}


/* 調整用 */
/* ------------------- */
.mb30 {
	margin-bottom: 30px;
}
/* sp */
@media screen and (max-width: 767px) {
	.mb30 {
		margin-bottom: 15px;
	}
}


/* .nyukai--first-view */
/* --------------------------------------------- */
.nyukai--first-view {
	height: calc(100dvh - var(--height-header));
	max-height: 80vw;
	position: relative;
}

/* .text-area */
.nyukai--first-view .text-area {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.invitation {
}
.invitation p {
	font-weight: var(--font-weight-bold);
	color: var(--color-white);
	width: fit-content;
	text-align: center;
	margin: 0 auto;
}
.invitation p.u-line {
	border-bottom: var(--color-white) 1px solid;
	padding-bottom: 2px;
	margin-bottom: 1em;
	font-size: 18px;
}
.invitation p.main-text {
	font-size: 56px;
	line-height: 1.2;
}
.invitation p.main-text .large {
	font-size: 1.4em;
}
.feature-list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 15px;
	margin: 0 auto;
	width: fit-content;
}
.feature-item {
	padding: 20px 30px;
	background: var(--color-white);
	width: fit-content;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.feature-item p {
	font-weight: var(--font-weight-bold);
	font-size: 26px;
	text-align: center;
	display: inline-block;
}
.feature-item .red {
	color: var(--color-red);
}
.feature-item .num {
	font-size: 1.5em;
	line-height: 1.1;
}
.feature-item .md-large {
	font-size: 1.2em;
}
/* tablet */
@media screen and (max-width: 980px) {
	.nyukai--first-view {
		max-height: none;
	}
	.nyukai--first-view .text-area {
		padding-bottom: 16%;
	}
	.invitation p.main-text {
		font-size: 48px;
	}
	.feature-list {
		gap: 15px;
	}
	.feature-item p {
		font-size: 22px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.invitation p {
		text-align: left;
		margin: 0;
	}
	.nyukai--first-view .text-area {
		padding-bottom: 0;
		padding-left: 6.67vw;
		gap: 12px;
	}
	.invitation p.u-line {
		font-size: 14px;
		margin-bottom: 0.6em;
	}
	.invitation p.main-text {
		font-size: 32px;
	}
	.feature-list {
		gap: 10px;
		margin: 0;
	}
	.feature-item {
		padding: 10px 15px;
	}
	.feature-item p {
		font-size: 14px;
	}
}
/* sp 調整 */
@media screen and (max-width: 480px) {
	.invitation p.main-text {
		font-size: 26px;
	}
	.feature-list {
		gap: 8px;
		margin: 0;
	}
	.feature-item {
		padding: 8px 10px;
	}
	.feature-item p {
		font-size: 12px;
	}
}

/* .first-view--background */
.first-view--background {
	background: #7493A7;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}
.first-view--pc {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	height: 100%;
	gap: 0;
}
.first-view--pc .img-wrap {
	width: calc(100% / 5);
	height: 100%;
	position: relative;
}
.first-view--background .img-wrap:has(img)::before {
	background: #06223A;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	content: "";
	z-index: 20;
	opacity: 0.45;
}
.first-view--background img {
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center top;
}
/* tablet */
@media screen and (max-width: 980px) {
	.first-view--pc .img-wrap-3 {
		width: calc(100% / 3);
		height: 60%;
	}
	.first-view--pc .img-wrap-2 {
		width: calc(100% / 2);
		height: 40%;
	}
}
/* spより大きい */
@media screen and (min-width: 767.01px) {
	.first-view--sp {
		display: none;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.nyukai--first-view {
		height: 173.3vw;
		max-height: none;
	}
	.nyukai--first-view .first-view--pc {
		display: none;
	}
	.first-view--background {
		overflow: hidden;
	}
	.first-view--sp {
		width: 120vw;
		height: 173.32vw;
		padding: 0;
		padding-left: 6.67vw;
		display: grid;
		grid-template-rows: repeat(3, 1fr);
		grid-template-columns: repeat(2, 1fr);
		gap: 6.67vw;
	}
	.first-view--sp .img-wrap {
		position: relative;
		width: 53.33vw;
		height: 53.33vw;
	}
}


/* .nyukai--contents-body */
/* --------------------------------------------- */
.nyukai--contents-body {
}
.nyukai--contents-item {
	padding: 0 60px;
	margin: 120px 0;
}
.nyukai--contents-item .wrap {
	max-width: 1400px;
	padding: 0;
	margin: 0 auto;
}
.nyukai--contents-item .wrap .wrap-inner:not(:last-child) {
	margin-bottom: 60px;
}
.nyukai--contents-item.bg-blue {
	background: var(--color-bg-blue);
	padding: 120px 60px;
}

/* tablet */
@media screen and (max-width: 980px) {
	.nyukai--contents-item {
		padding: 0 6vw;
		margin: 80px 0;
	}
	.nyukai--contents-item.bg-blue {
		background: var(--color-bg-blue);
		padding: 80px 6vw;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.nyukai--contents-item {
		padding: 0 4vw;
		margin: 40px 0;
	}
	.nyukai--contents-item.bg-blue {
		background: var(--color-bg-blue);
		padding: 40px 4vw;
	}
	.nyukai--contents-item .wrap .wrap-inner:not(:last-child) {
		margin-bottom: 40px;
	}
}

/* .top-nav */
/* ------------------- */
ul.top-nav-list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: min(3vw, 20px);
}
ul.top-nav-list li {
	border: var(--color-gray-border) 1px solid;
	position: relative;
	padding: 0;
	width: calc((100% - ((min(3vw, 20px)) * 3))/4);
}
ul.top-nav-list li:has(a:hover) {
	background: var(--color-light-gray);
}
ul.top-nav-list li a {
	padding: 15px 60px 15px 30px;
	color: var(--color-black);
	text-decoration: none;
	display: block;
	font-size: 22px;
	line-height: 1;
	font-weight: var(--font-weight-medium);
	text-align: center;
}
ul.top-nav-list li::before {
	content: "";
	height: 22px;
	width: 22px;
	position: absolute;
	right: 20px;
	top: 52%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	background-image: url(../images/nyukai/icon-link.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}
/* pc 調整 */
@media screen and (max-width: 1300px) {
	ul.top-nav-list li a {
		padding: 15px 30px 15px 10px;
		font-size: 18px;
	}
	ul.top-nav-list li::before {
		right: 10px;
	}
}
/* tablet */
@media screen and (max-width: 980px) {
	ul.top-nav-list li {
		width: calc((100% - 3vw)/2);
	}
}
/* sp 568px */
@media screen and (max-width: 568px) {
	ul.top-nav-list li a {
		padding: 12px 30px 12px 10px;
		font-size: 14px;
	}
	ul.top-nav-list li::before {
		height: 18px;
		width: 18px;
	}
}


/* .merit */
/* ------------------- */
.merit-title {
	position: relative;
	padding-left: 1.6em;
}
.merit-title span {
	font-size: 0.55em;
	color: var(--color-white);
	background: var(--color-red);
	border-radius: 12px;
	padding: 2px 8px;
	line-height: 1;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	margin-top: 1px;
}
.merit .wrap-inner:not(:last-child) {
	margin-bottom: 3vw !important;
}
.merit .p-card-list .c-card {
	position: relative;
}
.merit .card-inner {
	padding-bottom: 80px;
}
.detail-link {
	display: flex;
	flex-direction: row;
	gap: 7px;
	width: fit-content;
	position: absolute;
	bottom: 30px;
	right: 24px;
}
.detail-link img {
	height: 22px;
	width: 22px;
}
.detail-link p {
	line-height: 22px;
	font-size: 14px;
}
/* tablet */
@media screen and (max-width: 980px) {
}
/* sp */
@media screen and (max-width: 767px) {
	.merit-title span {
		padding: 2px 5px;
	}
	.merit .card-inner {
		padding-bottom: 60px;
	}
	.detail-link {
		gap: 5px;
		bottom: 20px;
		right: 10px;
	}
	.detail-link img {
		height: 16px;
		width: 16px;
	}
	.detail-link p {
		line-height: 16px;
		font-size: 12px;
	}
}

/* .guidebook */
.guidebook {
	border: var(--color-gray-border) 1px solid;
	background-color: var(--color-white);
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), var(--color-light-gray) calc(100% - 1px)),
						linear-gradient(90deg, transparent calc(100% - 1px),  var(--color-light-gray) calc(100% - 1px));
	background-size: 20px 20px;
	background-repeat: repeat;
	background-position: -1px -1px;
}
.guidebook-inner {
	padding: 60px calc(30% + 8%) 60px 10%;
	position: relative;
}
.guidebook-inner .guidebook-img {
	position: absolute;
	bottom: 0;
	right: 8%;
	width: 28%;
	height: 100%;
}
.guidebook-inner .guidebook-img img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center bottom;
}
.guidebook .button {
	width: 400px;
}
.guidebook .button a {
	padding: 20px;
}

/* tablet */
@media screen and (max-width: 980px) {
	.guidebook-inner {
		padding: 30px 8%;
	}
	.guidebook .button {
		width: 100%;
		max-width: 100%;
		height: 56px;
	}
	.guidebook-inner .guidebook-img img {
		object-position: right bottom;
	}
	.guidebook-inner > p {
		padding-right: calc(22vw + 61px);
		min-height: 100px;
	}
	.guidebook-inner .guidebook-img {
		bottom: calc(30px + 56px);
		top: auto;
		right: calc(12.5vw - 35px);
		height: min(calc(14vw + 95px), 218px);
		width: min(calc(14vw + 95px), 218px);
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.guidebook-inner {
		padding: 30px;
	}
	.guidebook-inner > p {
		min-height: 125px;
	}
	.guidebook .button {
		height: 48px;
	}
	.guidebook .button a {
		padding: 15px 10px;
	}
	.guidebook-inner .guidebook-img {
		bottom: calc(30px + 48px);
	}
}


/* .flow */
/* ------------------- */
.flow .p-card-list .c-card {
	position: relative;
}
.flow .p-card-list .c-card::before {
	position: absolute;
	content: "";
	height: 5vw;
	width: 2.2vw;
	background: var(--color-red);
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	right: -2.8vw;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
}
.flow .p-card-list .c-card:last-child::before {
	content: none;
}
/* .flow-title {
	position: relative;
	padding-top: 1em;
}
.flow-title span {
	font-size: 0.55em;
	color: var(--color-white);
	background: var(--color-red);
	border-radius: 12px;
	padding: 2px 8px;
	line-height: 1;
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
} */
.flow-title {
	position: relative;
	padding-left: 3.2em;
}
.flow-title span {
	font-size: 0.55em;
	color: var(--color-white);
	background: var(--color-red);
	border-radius: 12px;
	padding: 2px 8px;
	line-height: 1;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	margin-top: 1px;
}
/* pc 調整 */
@media screen and (max-width: 1100px) and (min-width: 980.01px) {
	.flow-title {
		font-size: 20px;
	}
}
/* pc 調整 */
@media screen and (max-width: 1010px) and (min-width: 980.01px) {
	.flow .button::before {
		right: 14px;
	}
}
/* tablet */
@media screen and (max-width: 980px) {
	.flow .p-card-list {
		gap: max(5vw, 25px);
	}
	.flow .p-card-list .c-card {
		width: 100%;
	}
	.flow .p-card-list .c-card:not(:last-child)::before {
		height: max(3vw, 15px);
		width: max(5.5vw, 27.5px);;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		top: auto; /* reset */
		right: auto; /* reset */
		bottom: min(-4.2vw, -21px);
		left: 50%;
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
	}
}

/* .flow-offline */
.flow-offline {
	border: var(--color-gray-border) 1px solid;
	padding: 30px;
}
.aline-right {
	text-align: right;
	font-size: 14px;
	padding-top: 0.3em;
}
/* sp */
@media screen and (max-width: 767px) {
	.flow-offline {
		padding: 15px;
	}
	.aline-right {
		font-size: 12px;
	}
}
span.ib {
	display: inline-block;
}


/* .about */
/* ------------------- */
dl.fee-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border-right: var(--color-gray-border) 1px solid;
	border-bottom: var(--color-gray-border) 1px solid;
}
dl.fee-list dt,
dl.fee-list dd {
	padding: 10px 20px;
	font-weight: var(--font-weight-medium);
	border-top: var(--color-gray-border) 1px solid;
	border-left: var(--color-gray-border) 1px solid;
}
dl.fee-list dt {
	width: 23%;
	background: var(--color-light-gray);
}
dl.fee-list dd {
	width: 77%;
	padding-left: 40px;
}
/* sp */
@media screen and (max-width: 767px) {
	dl.fee-list dt,
	dl.fee-list dd {
		padding: 10px 15px;
	}
	dl.fee-list dt {
		width: 36%;
	}
	dl.fee-list dd {
		width: 64%;
		padding-left: 20px;
	}
}


/* .voice */
/* ------------------- */
.p-card-list.voice {
	gap: 2vw;
}
.p-card-list.voice .c-card {
	width: calc( (100% - (2vw * 4))/5 );
}

.p-card-list.voice .card-inner {
	position: relative;
	padding-bottom: 160px;
	height: 100%;
}
.p-card-list.voice .card-text {
	padding: 0 1vw;
}
.p-card-list.voice .card-inner .job-type {
	position: absolute;
	bottom: 10px;
	right: 130px;
	font-size: 14px;
}
.p-card-list.voice .card-inner .voice-img {
	position: absolute;
	bottom: 0;
	right: 8px;
	height: 145px;
}
.p-card-list.voice .card-inner .voice-img img {
	height: 100%;
	width: auto;
}
/* pc 調整 */
@media screen and (max-width: 1260px) {
	.p-card-list.voice .card-inner {
		padding-bottom: 120px;
	}
	.p-card-list.voice .card-inner .voice-img {
		height: 110px;
	}
	.p-card-list.voice .card-inner .job-type {
		right: 96px;
	}
}
/* tablet */
@media screen and (max-width: 980px) {
	.p-card-list.voice .c-card {
		width: calc( (100% - 3vw)/2 );
	}
	.p-card-list.voice .card-inner {
		min-height: 125px;
		padding: 30px 20px 30px 100px;
	}
	.p-card-list.voice .card-text {
		margin-right: 0;
		margin-left: auto;
		padding: 0;
	}
	.p-card-list.voice .card-inner .job-type {
		position: unset;
		text-align: right;
		margin-right: 0;
		margin-left: auto;
		padding: 0;
	}
	.p-card-list.voice .card-inner .voice-img {
		height: 110px;
		right: auto;
		left: 12px;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.p-card-list.voice {
		flex-direction: column;
		/* gap: 4vw; */
		gap: 3vw;
	}
	.p-card-list.voice .c-card {
		width: 100%;
	}
	.p-card-list.voice .card-inner {
		min-height: 105px;
		padding: 15px max(12px, calc(36vw - 130px)) 15px calc(36vw - 130px + 90px);
	}
	.p-card-list.voice .card-inner .job-type {
	}
	.p-card-list.voice .card-inner .voice-img {
		height: 90px;
		left: max(12px, calc(36vw - 130px));
	}
}

/* .event-list */
.event-list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6vw 3vw;
}
.event-list .event-item {
	width: calc( (100% - (3vw * 3))/4 );
}
.event-item img {
	width: 100%;
	height: auto;
}
.event-item figcaption {
	font-size: 14px;
	text-align: center;
	margin-top: 1em;
}
.red-line {
	text-decoration-line: underline;
	text-decoration-color: var(--color-red);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}
/* sp */
@media screen and (max-width: 767px) {
	.event-list .event-item {
		width: calc( (100% - (3vw))/2 );
	}
	.event-item figcaption {
		font-size: 12px;
	}
}


/* .nyukai--contact-area */
/* --------------------------------------------- */
.nyukai--contact-area {
	position: relative;
}
.nyukai--contact-area .button {
	margin-top: 7px;
}
.nyukai--contact-area .button a {
	padding: 23px 20px 20px;
	font-size: 20px;
}
.nyukai--contact-area .button::before {
	top: calc(50% + 3px);
}
.nyukai--contact-area .button.btn-tel a {
	font-size: 24px;
}
.nyukai--contact-area .button a img {
	height: 24px;
}
/* .text-area */
.nyukai--contact-area .text-area {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	text-align: center;
	padding: 120px 0 60px;
}
.nyukai--contact-area .text-area > div {
	width: 80%;
	max-width: 860px;
	margin: 0 auto;
}
.nyukai--contact-area h2,
.nyukai--contact-area p {
	color: var(--color-white);
}
.nyukai--contact-area h2 {
	font-weight: var(--font-weight-bold);
	margin-bottom: 0;
}
.nyukai--contact-area p {
	line-height: 1.8;
}
.nyukai--contact-area .first-view--background {
	z-index: -1;
}
.nyukai--contact-area .first-view--background .img-wrap:has(img)::before {
	background: #434343;
	mix-blend-mode: multiply;
	opacity: 0.9;
}
/* tablet */
@media screen and (max-width: 980px) {
	.nyukai--contact-area .text-area {
		gap: 20px;
		padding: 60px 0 40px;
	}
	.nyukai--contact-area .text-area > div {
		width: 86%;
	}
	.nyukai--contact-area .first-view--background .img-wrap:nth-child(5) {
		display: none;
	}
	.nyukai--contact-area .first-view--pc .img-wrap {
		width: calc(100% / 4);
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.nyukai--contact-area .text-area p:not(.aline-right) {
		text-align: left;
	}
	.nyukai--contact-area .btn-group {
		gap: 20px;
	}
	.nyukai--contact-area .button a {
		padding: 20px 15px 17px;
		font-size: 16px;
	}
	.nyukai--contact-area .button.btn-tel a {
		font-size: 18px;
	}
	.nyukai--contact-area .btn-group .button a {
		min-height: auto;
	}
	.nyukai--contact-area .button a img {
		height: 20px;
	}
	.nyukai--contact-area .first-view--background .img-wrap:nth-child(4) {
		display: none;
	}
	.nyukai--contact-area .first-view--pc .img-wrap {
		width: calc(100% / 3);
	}
}

/* .nyukai--bottom-btn */
/* --------------------------------------------- */
.nyukai--bottom-btn {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 20px 17px;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	z-index: 100;
	transition: 0.5s ease;
}

.nyukai--bottom-btn .btn-group > div {
	width: 330px;
}

.nyukai--bottom-btn .button a {
	padding: 18px 20px 15px;
	font-size: 20px;
}
.nyukai--bottom-btn .button::before {
	top: calc(50% + 3px);
}

/* sp */
@media screen and (max-width: 767px) {
	.nyukai--bottom-btn {
		padding: 14px 8px 8px;
	}
	.nyukai--bottom-btn .btn-group {
		flex-direction: row;
		gap: 5px;
	}
	.nyukai--bottom-btn .btn-group > div {
		width: calc((100% - 5px)/2);
	}
	.nyukai--bottom-btn .button a {
		padding: 18px 13px 15px 5px;
		font-size: 16px;
		gap: 0.4em;
	}
	.nyukai--bottom-btn .button .btn-top-text {
		min-width: 140px;
		font-size: 10px;
		padding: 3px 14px;
	}
	.nyukai--bottom-btn .button::before {
		right: 5px;
		height: 8px;
		width: 6px;
	}
	.nyukai--bottom-btn .button a img {
		height: 16px;
	}
	/* iconサイズ・位置 調整 */
	.button a img.icon-mail {
		transform: scale(80%) translateY(1px);
	}
	.button a img.icon-book {
		transform: translateY(1px);
	}

	#pageTop:has(+.nyukai-page) {
		bottom: 80px;
	}
}
/* sp 調整 */
@media screen and (max-width: 568px) {
	.nyukai--bottom-btn .button a {
		font-size: 12px;
	}
	.nyukai--bottom-btn .button a img {
		height: 12px;
	}
}

