@charset "UTF-8";

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
picture {
	display: block;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}
button:disabled {
	pointer-events: none;
	cursor: default;
}

::placeholder {
	color: #aaa;
}
::-ms-input-placeholder {
	color: #aaa;
}
:-ms-input-placeholder {
	color: #aaa;
}

.g-recaptcha {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
}

/* ==================================================

ICON FONT

*/
@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-next:before {
	content: "\e900";
}
.icon-arrow-prev:before {
	content: "\e901";
}
.icon-arrow:before {
	content: "\e902";
}
.icon-blank:before {
	content: "\e903";
}

/* ==================================================

HTML

*/
html {
	background-color: #fff;
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
	html {
		/* 幅1440px 1rem = 10px */
		font-size: 0.694444vw;
	}
}
@media screen and (max-width: 768px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: 2.666vw;
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2;
	color: #1E1E1E;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
		line-height: 1.7;
	}
}

img:not([class*=wp-image-]) {
	vertical-align: top;
	width: 100%;
	height: auto;
}

/* ==================================================

MAIN

*/
main {
	overflow: hidden;
	padding-top: 10rem;
}
@media screen and (max-width: 768px) {
	main {
		padding-top: 6.4rem;
	}
}

/* ==================================================

	[ UTILITY ] VISIBLE

*/
@media screen and (min-width: 769px) {
	.u-visible-sp {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.u-visible-pc {
		display: none;
	}
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28rem;
	height: 7rem;
	text-align: center;
	background-color: #001495;
	border: 1px solid #001495;
	font-family: 'Montserrat', "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 1.7rem;
	color: #fff;
}
.c-btn-lg {
	width: 46rem;
	height: 12rem;
	font-size: 2.4rem;
}
.c-btn i {
	display: block;
	position: absolute;
	right: 1.6rem;
	top: 50%;
	transform: translateY(-50%);
}
.c-btn-cs {
	flex-direction: column;
	width: 46rem;
	height: 12rem;
	border-color: #777;
	background-color: #777;
	font-size: 2.4rem;
	line-height: 1.7;
}
.c-btn-cs em {
	display: block;
	font-size: 83%;
}

@media (any-hover: hover) {
	a.c-btn,
	button.c-btn {
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	a.c-btn:hover,
	button.c-btn:hover {
		background-color: #fff;
		color: #001495;
	}
	a.c-btn i,
	button.c-btn i {
		transition: right 0.3s ease;
	}
	a.c-btn:hover i,
	button.c-btn:hover i {
		right: 1rem;
	}
}

@media screen and (max-width: 768px) {
	.c-btn-lg {
		width: 100%;
		height: 10rem;
		font-size: 1.9rem;
	}
	.c-btn-cs {
		width: 100%;
		height: 10rem;
		font-size: 1.9rem;
	}
}

.c-btn-submit,
.c-btn-back {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34rem;
	height: 6.8rem;
	background-color: #000;
	font-weight: 500;
	color: #fff;
	transition: opacity 0.3s ease;
}
.c-btn-submit:disabled {
	opacity: 0.3;
}
.c-btn-submit::after,
.c-btn-back::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -0.6rem;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url(../img/icon-arrow-submit.svg);
	background-size: contain;
}
.c-btn-submit::after {
	right: 2.6rem;
}
.c-btn-back::after {
	left: 2.6rem;
	transform: rotate(180deg);
}

@media (any-hover: hover) {
	.c-btn-submit:hover,
	.c-btn-back:hover {
		opacity: 0.7;
	}
}

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

}

.c-btn-novare {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32rem;
	height: 10rem;
	background-color: #BCAD85;
	color: #FFF;
}
.c-btn-novare span {
	display: block;
	width: 14.4rem;
}
.c-btn-novare i {
	position: absolute;
	top: 50%;
	right: 2rem;
	margin-top: -0.8rem;
	font-size: 1.6rem;
	line-height: 1;
}

@media (any-hover: hover) {
	.c-btn-novare {
		transition: background-color 0.3s ease;
	}
	.c-btn-novare:hover {
		background-color: #d0c6aa;
	}
}

/* ==================================================

	[ COMPONENT ] PAGINATION

*/
.c-pagination .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	text-align: center;
	font-family: "Inter", sans-serif;
	line-height: 2.4rem;
}
.c-pagination .page-numbers {
	display: block;
	padding: 0;
	min-width: 2.4rem;
}
.c-pagination .page-numbers.current {
	background-color: #2134B3;
	color: #fff;
	pointer-events: none;
}

/* ==================================================

	[ LAYOUT ] BLOCK CENTER

*/
.l-block-center {
	display: flex;
	justify-content: center;
}

/* ==================================================

	[ LAYOUT ] CONTAINER

*/
.l-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 120rem;
}
.l-container-middle {
	margin-left: auto;
	margin-right: auto;
	max-width: 96rem;
}

@media screen and (max-width: 768px) {
	.l-container {
		padding: 0 2rem;
	}
	.l-container-middle {
		padding: 0 2rem;
	}
}

/* ==================================================

	[ LAYOUT ] PAGE HEAD

*/
.l-page-head {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 21.2rem;
	background-position: center;
	background-image: url(../img/bg-page-head.jpg);
	background-size: cover;
	text-align: center;
	line-height: 1.5;
	color: #FFFFFF;
}
.l-page-head .title > span {
	display: block;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	color: #C8C8C8;
}
.l-page-head .title > em {
	display: block;
	font-weight: 500;
	font-size: 3.2rem;
	font-style: normal;
}
.l-page-head .title > em span {
	display: block;
	font-weight: 400;
	font-size: 2.2rem;
}
.l-page-head .title > em br.sp {
	display: none;
}
.l-page-head .lead {
	margin: 1rem 0 0 0;
	font-size: 1.8rem;
}
.l-page-head .lead br {
	display: none;
}
@media screen and (max-width: 768px) {
	.l-page-head {
		height: 16rem;
	}
	.l-page-head .title > span {
		font-size: 1.6rem;
	}
	.l-page-head .title > em {
		font-size: 2.4rem;
	}
	.l-page-head .title > em span {
		font-size: 1.8rem;
	}
	.l-page-head .title > em br.sp {
		display: block;
	}
	.l-page-head .lead {
		font-size: 1.6rem;
	}
	.l-page-head .lead br {
		display: block;
	}
}

/* ==================================================

	[ LAYOUT ] HEADER

*/
.l-header {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.l-header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 6rem 0 4rem;
	height: 10rem;
}
.l-header .logo {
	display: flex;
	align-items: center;
	gap: 4rem;
}
.l-header .logo a {
	display: block;
}
.l-header .logo a:nth-child(1) {
	width: 13.2rem;
}
.l-header .logo a:nth-child(2) {
	width: 24rem;
}
.l-header .logo img {
	display: block;
}
.l-header .nav ul {
	display: flex;
	gap: 4.8rem;
}
.l-header .nav ul a {
	color: #1E1E1E;
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	font-weight: 500;
	line-height: 1.5;
}
.l-header .nav ul a em {
	font-family: 'Montserrat', sans-serif;
}
.l-header .nav ul a span {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: color 0.3s ease, bottom 0.3s ease;
}
.l-header .nav ul a i {
	display: none;
}
.l-header .toggle {
	display: none;
}

@media (any-hover: hover) {
	.l-header .nav ul a {
		transition: color 0.3s ease;
	}
	.l-header .nav ul a:hover {
		color: #001495;
	}
	.l-header .nav ul a span {
		transition: color 0.3s ease, bottom 0.3s ease;
	}
	.l-header .nav ul a:hover span {
		bottom: -1rem;
		color: #001495;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.l-header .inner {
		padding: 0 0 0 2rem;
		height: 6.4rem;
	}
	.l-header .logo {
		gap: 2rem;
	}
	.l-header .logo a:nth-child(1) {
		width: 6.6rem;
	}
	.l-header .logo a:nth-child(2) {
		width: 13.2rem;
	}
	.l-header .nav {
		display: none;
	}
	.l-header .toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		right: 0;
		width: 6.4rem;
		height: 100%;
	}
	.l-header .toggle i {
		display: block;
		position: relative;
		width: 4.8rem;
		height: 4.8rem;
	}
	.l-header .toggle i:before,
	.l-header .toggle i:after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		height: 1px;
		background-color: #000;
		transition: all 0.4s ease;
	}
	.l-header .toggle i:before {
		margin-top: -0.4rem;
		width: 86%;
	}
	.l-header .toggle i:after {
		margin-top: 0.4rem;
		width: 62%;
	}
	.l-header .toggle[aria-expanded="true"] i:before,
	.l-header .toggle[aria-expanded="true"] i:after {
		left: 13%;
		margin-top: 0;
		width: 74%;
	}
	.l-header .toggle[aria-expanded="true"] i:before {
		transform: rotate(45deg);
	}
	.l-header .toggle[aria-expanded="true"] i:after {
		transform: rotate(-45deg);
	}
}

/* ==================================================

	[ LAYOUT ] MEGAMENU

*/
.l-megamenu {
	display: none;
	position: fixed;
	z-index: 99;
	top: 6.4rem;
	bottom: 0;
	right: 0;
	width: 0;
	background-color: #fff;
	transition: opacity 0.4s ease;
	opacity: 0;
}
.l-megamenu[aria-hidden="false"] {
	width: 100%;
}
.l-megamenu.show {
	opacity: 1;
}
.l-megamenu .scroll {
	overflow-y: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overscroll-behavior: none;
}
.l-megamenu ul li {
	padding-bottom: 0.2rem;
	line-height: 1.5;
}
.l-megamenu ul li a {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4.5rem 0 2rem;
	height: 10rem;
	background-color: #eee;
}
.l-megamenu ul li em {
	display: block;
	font-weight: 500;
  font-family: 'Montserrat', sans-serif;
	font-size: 1.9rem;
}
.l-megamenu ul li span {
	display: block;
	margin-bottom: 0.2em;
	font-size: 1.1rem;
}
.l-megamenu ul li i {
	display: block;
	position: absolute;
	top: 50%;
	right: 2rem;
	margin-top: -0.8rem;
	font-size: 1.6rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.l-megamenu {
		display: block;
	}
}

/* ==================================================

	[ LAYOUT ] FOOTER

*/
.l-footer {
	overflow: hidden;
	background-color: #BBAD85;
	padding: 4.8rem 0 4rem;
	line-height: 1.5;
}
.l-footer .top {
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
}
.l-footer .logo {
	margin-bottom: 2rem;
	width: 34.6rem;
}
.l-footer .logo a {
	display: block;
}
.l-footer .logo img {
	display: block;
}
.l-footer .info {
	margin-bottom: 5rem;
	font-size: 1.3rem;
	line-height: 1.4;
	color: #fff;
}
.l-footer .nav-sns ul {
	align-items: center;
	display: flex;
	gap: 4rem;
}
.l-footer .nav-sns a {
	display: block;
	width: 3.2rem;
}
.l-footer .nav-content ul {
	align-items: center;
	display: flex;
	gap: 4rem;
	margin-bottom: 3rem;
	margin-top: 2rem;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}
.l-footer .nav-content ul a {
	display: block;
	position: relative;
}
.l-footer .nav-content ul a::after {
	content: none;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #FFF;
}
.l-footer .nav-corporate {
	display: flex;
	justify-content: flex-end;
	margin-top: 10rem;
}
.l-footer .nav-corporate ul {
	align-items: center;
	display: flex;
	gap: 5rem;
	font-family: 'Montserrat', sans-serif;
}
.l-footer .nav-corporate ul li:first-child {
	font-family: inherit;
}
.l-footer .nav-corporate ul a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: #fff;
}
.l-footer .nav-corporate ul a::after {
	content: none;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #FFF;
}
.l-footer .nav-corporate img {
	width: 1.6rem;
}
.l-footer .bottom {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.l-footer .nav-poricy ul {
	align-items: center;
	display: flex;
	gap: 4rem;
	font-family: 'Montserrat', sans-serif;
}
.l-footer .nav-poricy ul li:first-child {
	font-family: inherit;
}
.l-footer .nav-poricy ul a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: #fff;
}
.l-footer .nav-poricy ul a::after {
	content: none;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #FFF;
}
.l-footer .nav-poricy img {
	width: 1.6rem;
}
.l-footer small {
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.03em;
}
.l-footer .pagetop {
	display: none;
	overflow: hidden;
	position: fixed;
	z-index: 90;
	bottom: 2rem;
	right: 2rem;
	width: 8rem;
	height: 8rem;
	border: 1px solid #001495;
	border-radius: 50%;
	background-position: center;
	background-color: #fff;
	background-image: url(../img/pagetop.svg);
	background-size: contain;
	text-indent: -999rem;
}
.l-footer .pagetop::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-position: center;
	background-image: url(../img/pagetop-on.svg);
	background-size: contain;
	opacity: 0;
}
.has-recaptcha .l-footer .pagetop {
	bottom: 10rem;
}

@media (any-hover: hover) {
	.l-footer .nav-sns a {
		transition: opacity 0.3s ease;
	}
	.l-footer .nav-sns a:hover {
		opacity: 0.7;
	}
	.l-footer .nav-content ul a:hover::after {
		content: '';
	}
	.l-footer .nav-corporate ul a:hover::after {
		content: '';
	}
	.l-footer .nav-poricy ul a:hover::after {
		content: '';
	}
	.l-footer .pagetop {
		transition: background-color 0.3s ease;
	}
	.l-footer .pagetop:hover {
		background-color: #001495;
	}
	.l-footer .pagetop::after {
		transition: opacity 0.3s ease;
	}
	.l-footer .pagetop:hover::after {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.l-footer {
		padding: 4rem 0 9rem;
	}
	.has-recaptcha .l-footer {
		padding-bottom: 16rem;
	}
	.l-footer .top {
		display: block;
		margin-bottom: 3rem;
		padding-bottom: 3rem;
	}
	.l-footer .logo {
		margin: 0 auto 1rem auto;
		width: 26rem;
	}
	.l-footer .logo span {
		margin-top: 0.5rem;
		font-size: 1.1rem;
	}
	.l-footer .info {
		margin-bottom: 3rem;
		text-align: center;
	}
	.l-footer .info br {
		display: none;
	}
	.l-footer .nav-sns ul {
		justify-content: center;
		gap: 4rem;
	}
	.l-footer .nav-sns a {
		display: block;
		width: 3.2rem;
	}
	.l-footer .nav-content {
		display: none;
	}
	.l-footer .nav-corporate {
		display: block;
		margin-top: 4rem;
	}
	.l-footer .nav-corporate ul {
		display: block;
	}
	.l-footer .nav-corporate ul li {
		display: flex;
		justify-content: center;
		margin-bottom: 1.5rem;
	}
	.l-footer .nav-corporate ul li:last-child {
		margin-bottom: 0;
	}
	.l-footer .nav-corporate a {
		gap: 0.5rem;
		font-size: 1.3rem;
	}
	.l-footer .nav-corporate a[target="_blank"]:after {
		width: 1.2rem;
		height: 1.2rem;
	}
	.l-footer .bottom {
		display: block;
	}
	.l-footer .nav-poricy ul {
		display: block;
	}
	.l-footer .nav-poricy ul li {
		display: flex;
		justify-content: center;
		margin-bottom: 1.5rem;
	}
	.l-footer .nav-poricy a {
		gap: 0.5rem;
		font-size: 1.3rem;
	}
	.l-footer .nav-poricy a[target="_blank"]:after {
		width: 1.2rem;
		height: 1.2rem;
	}
	.l-footer small {
		display: block;
		padding-top: 1rem;
		text-align: center;
		font-size: 1rem;
	}
	.l-footer .pagetop {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 6rem;
		height: 6rem;
	}
	.has-recaptcha .l-footer .pagetop {
		bottom: 9rem;
	}
}

/* ==================================================

	[ SYSTEM ]

*/
.l-system {
	padding: 10rem 0;
	text-align: center;
}
.l-system br {
	display: none;
}
.l-system h1 {
	margin-bottom: 2rem;
	font-size: 3rem;
}
.l-system .foot {
	display: flex;
	justify-content: center;
	margin-top: 8rem;
}

@media screen and (max-width: 768px) {
	.l-system {
		padding: 6rem 0;
	}
	.l-system br {
		display: block;
	}
	.l-system h1 {
		font-size: 2.4rem;
	}
	.l-system .foot {
		margin-top: 4rem;
	}
}

/* ==================================================

	[ HOME ]

*/
.p-home .bg {
	background-image: url(../img/home-bg.jpg);
	background-position: center;
	background-repeat: repeat-y;
	background-size: cover;
}

.p-home .section-title {
	display: flex;
	align-items: center;
	position: relative;
	line-height: 1.5;
}
.p-home .section-title::before {
	content: '';
	display: block;
	margin-right: 1rem;
	width: 1.75rem;
	height: 2.1rem;
	background-image: url(../img/logo-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.p-home .section-title .en {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
}
.p-home .section-title .ja {
	display: flex;
	align-items: center;
	margin-bottom: 0.2rem;
	font-size: 1.6rem;
	font-weight: 400;
}
.p-home .section-title .ja::before {
	content: '';
	display: block;
	margin: 0 1rem;
	width: 1.6rem;
	height: 0.1rem;
	background-color: #1E1E1E;
}

@media screen and (max-width: 768px) {
	.p-home .section-title.break-sp {
		flex-wrap: wrap;
	}
	.p-home .section-title.break-sp .ja {
		flex-basis: 100%;
		padding-left: 2.75rem;
	}
	.p-home .section-title.break-sp .ja::before {
		content: none;
	}
}

.p-home-mv {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: calc(100vh - 10rem);
	position: relative;
	line-height: 1;
	opacity: 0;
}
.loaded .p-home-mv {
	opacity: 1;
}
.p-home-mv .swiper,
.p-home-mv .swiper-wrapper,
.p-home-mv .swiper-slide,
.p-home-mv .swiper-slide__item,
.p-home-mv .swiper-slide__item img {
	width: 100%;
	height: 100%;
}
.p-home-mv .swiper-slide__item img {
	object-fit: cover;
}
.p-home-mv .swiper-slide-active .swiper-slide__item,
.p-home-mv .swiper-slide-duplicate-active .swiper-slide__item,
.p-home-mv .swiper-slide-prev .swiper-slide__item {
	animation: zoomanime 10s linear 0s normal both;
}
@keyframes zoomanime {
	0% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1);
	}
}
.p-home-mv .content {
	left: 50%;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 10;
}
.p-home-mv .title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	opacity: 1;
	text-align: center;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transform: translateY(0);
}
.p-home-mv .title br {
	display: none;
}
.p-home-mv .title span {
	display: block;
}
.p-home-mv .title-en {
	font-family: 'Montserrat', sans-serif;
	font-size: 7.8rem;
	font-weight: 600;
	margin-bottom: 8rem;
}
.p-home-mv .title-ja {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 7rem;
	position: relative;
}
.p-home-mv .title-ja::before,
.p-home-mv .title-ja::after {
	background-color: #fff;
	content: '';
	height: 0.1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.2rem;
}
.p-home-mv .title-ja::before {
	left: -1.8rem;
}
.p-home-mv .title-ja::after {
	right: -1.8rem;
}
.p-home-mv .title-text-ja {
	font-size: 6.3rem;
	letter-spacing: 0.1em;
	margin-bottom: 2.7rem;
}
.p-home-mv .title-text-en {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
}
.p-home-mv .title.fade-in {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-home-mv .title.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 768px) {
	.p-home-mv {
		height: calc(100vh - 6.4rem);
	}
	.p-home-mv .title br {
		display: block;
	}
	.p-home-mv .title-en {
		font-size: 5.6rem;
		line-height: 1.1;
		margin-bottom: 4rem;
	}
	.p-home-mv .title-ja {
		font-size: 1.6rem;
		margin-bottom: 7rem;
	}
	.p-home-mv .title-text-ja {
		font-size: 4rem;
		line-height: 1.3;
		margin-bottom: 1rem;
	}
	.p-home-mv .title-text-en {
		font-size: 1.8rem;
		line-height: 1.8;
	}
	.p-home-mv .title.fade-in {
		opacity: 0;
		transform: translateY(50px);
		transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}
	.p-home-mv .title.fade-in.show {
		opacity: 1;
		transform: translateY(0);
	}
}


.p-home-about {
	overflow: hidden;
	position: relative;
	padding-bottom: 8rem;
}
.p-home-about .inner {
	position: relative;
	padding: 8rem 0 0 0;
}
.p-home-about .section-title {
	margin-bottom: 5rem;
}
.p-home-about .content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem;
}
.p-home-about .content-title {
	line-height: 1.8;
}
.p-home-about .content-title-ja {
	display: inline-block;
	font-size: 3.8rem;
	letter-spacing: 0.1em;
	text-indent: -0.5em;
}
.p-home-about .content-title-en {
	font-family: 'Montserrat', sans-serif;
	font-size: 4rem;
	letter-spacing: 0.1em;
}
.p-home-about .content-text {
	padding-right: 5rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.6;
}
.p-home-about .foot {
	position: absolute;
	top: 37rem;
	left: 0;
}
.p-home-about .symbol {
	position: absolute;
	right: 18rem;
	top: 7.7rem;
	width: 45.6rem;
	z-index: 0;
}
.p-home-about .text-scroll {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.p-home-about .text-scroll li {
	-webkit-animation: scroll-left 40s linear infinite;
	animation: scroll-left 40s linear infinite;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 20rem;
	font-weight: 200;
	line-height: 1;
	padding-left: 0.2em;
	white-space: nowrap;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

@media screen and (max-width: 768px) {
	.p-home-about {
		padding-bottom: 5rem;
	}
	.p-home-about .inner {
		padding: 5rem 0 1rem 0;
	}
	.p-home-about .section-title {
		margin-bottom: 4rem;
	}
	.p-home-about .content {
		display: block;
		gap: 15rem;
		margin-bottom: 4rem;
	}
	.p-home-about .content-title {
		margin-bottom: 2rem;
		line-height: 1.8;
	}
	.p-home-about .content-title-ja {
		font-size: 2.8rem;
	}
	.p-home-about .content-title-en {
		font-size: 3rem;
	}
	.p-home-about .content-text {
		padding: 0;
		font-size: 1.6rem;
		line-height: 2.2;
	}
	.p-home-about .content-text br {
		display: none;
	}
	.p-home-about .foot {
		position: static;
		display: flex;
		justify-content: center;
	}
	.p-home-about .symbol {
		right: -4rem;
		top: 2rem;
		width: 24rem;
	}
	.p-home-about .text-scroll li {
		font-size: 12rem;
	}
}

@-webkit-keyframes scroll-left {
	100% {
		transform: translateX(-100%);
	}
}
@keyframes scroll-left {
	100% {
		transform: translateX(-100%);
	}
}

/* SVG Line Drawing Animation Styles */
.svg-draw-animation {
	margin: auto;
	position: relative;
	width: 100%;
}
.svg-draw-animation svg {
	height: auto;
	max-width: 486px;
	width: 100%;
}
.draw-path {
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	fill-opacity: 0;
	transition: opacity 0.3s ease-in-out, fill-opacity 0.5s ease-in-out;
}
.draw-path.animate {
	-webkit-animation: draw-line 1s ease-in-out forwards;
	animation: draw-line 1s ease-in-out forwards;
}
.draw-path.fill {
	fill-opacity: 0.2;
}
.draw-path.hide {
	opacity: 0;
}
.final-logo {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.final-logo.show {
	opacity: 0.2;
}

@-webkit-keyframes draw-line {
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes draw-line {
	to {
		stroke-dashoffset: 0;
	}
}

.p-home-message {
	margin-bottom: 10rem;
}
.p-home-message h2 {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}
.p-home-message h2 span {
	display: flex;
	align-items: center;
}
.p-home-message h2 span::before {
	content: '';
	display: block;
	margin: 0.2rem 1rem 0 0;
	width: 1.75rem;
	height: 2.1rem;
	background-image: url(../img/logo-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.p-home-message .frame {
	padding: 3rem 3rem 4rem 3rem;
	background-color: rgba(255,255,255,0.5);
	border: 1px solid #BBAD85;
	border-radius: 2rem;
	box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.15);
}
.p-home-message .inner {
	margin: 0 auto;
	max-width: 102rem;
}
.p-home-message .wrap {
	display: flex;
}
.p-home-message .portrait {
	flex-basis: 15.2rem;
	padding-top: 1.2rem;
}
.p-home-message .portrait dl {
	margin-top: 0.6rem;
	text-align: center;
	font-size: 2.1rem;
	line-height: 1.5;
}
.p-home-message .portrait dt {
	font-size: 1.4rem;
}
.p-home-message .text {
	flex: 1;
	padding-left: 6rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.5;
}
@media screen and (max-width: 768px) {
	.p-home-message {
		margin-bottom: 6rem;
	}
	.p-home-message .wrap {
		display: block;
	}
	.p-home-message .frame {
		padding: 3rem 2rem 3rem 2rem;
	}
	.p-home-message .portrait img {
		display: block;
		margin: 0 auto;
		max-width: 50%;
	}
	.p-home-message .text {
		margin-top: 3rem;
		padding: 0;
		line-height: 2.2;
	}
	.p-home-message .text br {
		display: none;
	}
}

.p-home-facility {
	position: relative;
	margin-bottom: 8rem;
}
.p-home-facility .image {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 8rem;
	padding-top: 12rem;
}
.p-home-facility .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-home-facility .image > div {
	overflow: hidden;
	display: flex;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
	padding-right: 29rem;
}
.p-home-facility .image > div:first-child {
	height: 59rem;
}
.p-home-facility .image > div:first-child > div:nth-child(1) {
	width: 24%;
}
.p-home-facility .image > div:first-child > div:nth-child(2) {
	width: 53%;
}
.p-home-facility .image > div:first-child > div:nth-child(3) {
	width: 23%;
}
.p-home-facility .image > div:last-child {
	height: 27.4rem;
}
.p-home-facility .image > div:last-child > div:nth-child(1) {
	width: 35%;
}
.p-home-facility .image > div:last-child > div:nth-child(2) {
	width: 27%;
}
.p-home-facility .image > div:last-child > div:nth-child(3) {
	width: 38%;
}
.p-home-facility .inner {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #EFEFEF;
	max-width: 72rem;
	padding: 6rem 9.5rem 5rem 12rem;
	z-index: 1;
}
.p-home-facility .section-title {
	margin-bottom: 4.4rem;
}
.p-home-facility .text {
	font-size: 1.6rem;
	line-height: 2.2;
	margin-bottom: 6rem;
	white-space: nowrap;
}
.p-home-facility .foot {
	display: flex;
	justify-content: center;
}


@media screen and (max-width: 768px) {
	.p-home-facility {
		margin-bottom: 5rem;
	}
	.p-home-facility .image {
		margin-bottom: 0;
		padding-top: 0;
	}
	.p-home-facility .image > div {
		gap: 0.2rem;
		margin-bottom: 0.2rem;
		padding-right: 0;
	}
	.p-home-facility .image > div:first-child {
		height: 22rem;
	}
	.p-home-facility .image > div:first-child > div:nth-child(1) {
		width: 30%;
	}
	.p-home-facility .image > div:first-child > div:nth-child(2) {
		width: 70%;
	}
	.p-home-facility .image > div:first-child > div:nth-child(3) {
		display: none;
	}
	.p-home-facility .image > div:last-child {
		height: 12rem;
	}
	.p-home-facility .inner {
		position: relative;
		max-width: initial;
		margin: -2rem 0 0 2rem;
		padding: 2.5rem 2rem 3rem 2rem;
	}
	.p-home-facility .section-title {
		margin-bottom: 2rem;
	}
	.p-home-facility .text {
		font-size: 1.6rem;
		margin-bottom: 3rem;
		white-space: normal;
	}
	.p-home-facility .text br {
		display: none;
	}
	.p-home-facility .inner a {
		margin: 0 auto;
	}
	.p-home-facility .link {
		display: flex;
		justify-content: center;
		padding-right: 2rem;
	}
	.p-home-facility .foot {
		display: flex;
		justify-content: center;
		margin-top: 4rem;
	}
}

.p-home-curriculum {
	position: relative;
	margin-bottom: 10rem;
}
.p-home-curriculum .image {
	position: relative;
	padding-top: 10rem;
}
.p-home-curriculum .image > div {
	padding-left: 29rem;
	height: 59rem;
}
.p-home-curriculum .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-home-curriculum .inner {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #EFEFEF;
	max-width: 72rem;
	padding: 6rem 9.5rem 5rem 12rem;
}
.p-home-curriculum .section-title {
	margin-bottom: 4.4rem;
}
.p-home-curriculum .text {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.2;
	margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
	.p-home-curriculum {
		margin-bottom: 5rem;
	}
	.p-home-curriculum .image {
		padding-top: 0;
	}
	.p-home-curriculum .image > div {
		padding-left: 0;
		height: 30rem;
	}
	.p-home-curriculum .inner {
		position: relative;
		max-width: initial;
		margin: -2rem 2rem 0 0;
		padding: 3rem 0 3rem 2rem;
	}
	.p-home-curriculum .section-title {
		margin-bottom: 2rem;
	}
	.p-home-curriculum .text {
		font-size: 1.6rem;
		margin-bottom: 3rem;
	}
	.p-home-curriculum .text br {
		display: none;
	}
	.p-home-curriculum .link {
		display: flex;
		justify-content: center;
	}
}

.p-home-news {
	padding: 8rem 0;
	background-color: #525D6C;
}
.p-home-news .section-title {
	justify-content: center;
	color: #fff;
}
.p-home-news .section-title .ja::before {
	background-color: #fff;
}
.p-home-news .list {
	margin: 2rem 0 4rem 0;
}
.p-home-news .list li {
	border-bottom: 1px solid #6C6C6C;
}
.p-home-news .list li:last-child {
	border-bottom: none;
}
.p-home-news .list li a {
	align-items: center;
	color: #fff;
	display: flex;
	padding: 6rem 0;
	position: relative;
	transition: all 0.3s;
}
.p-home-news .list li time {
	flex-basis: 14rem;
	font-family: 'Montserrat', sans-serif;
}
.p-home-news .list li span {
	display: block;
	flex: 1;
	padding-right: 5rem;
}
.p-home-news .list li i {
	display: block;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
}
.p-home-news .link {
	display: flex;
	justify-content: center;
}
.p-home-news .link .c-btn {
	background-color: #525D6C;
	border: 1px solid #E4E4E4;
}

@media (any-hover: hover) {
	.p-home-news .list li a i {
		transition: right 0.3s;
	}
	.p-home-news .list li a:hover i {
		right: 0;
	}
	.p-home-news .list li a:hover {
		background-color: #657284;
	}
	.p-home-news .c-btn:hover {
		background-color: #fff;
		border: 1px solid #001495;
		color: #001495;
	}
}

@media screen and (max-width: 768px) {
	.p-home-news {
		padding: 5rem 0;
	}
	.p-home-news .list {
		margin: 1rem 0 2rem 0;
	}
	.p-home-news .list li a {
		display: block;
		padding: 2rem 0;
	}
	.p-home-news .list li span {
		padding-right: 3.5rem;
	}
}

.p-home-nav {
	padding: 8rem 0 10rem;
	line-height: 1.5;
}
.p-home-nav ul {
	display: flex;
	margin: 0 auto;
	max-width: 120rem;
}
.p-home-nav ul li {
	flex-basis: 33.333%;
	padding: 0 1.5rem;
}
.p-home-nav a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 2.5rem;
	height: 12rem;
	background-color: #08187D;
	color: #fff;
	transition: background-color 0.4s;
}
.p-home-nav i {
	position: absolute;
	right: 3rem;
	top: 50%;
	font-size: 2.4rem;
	transform: translateY(-50%);
}
.p-home-nav .en {
	position: absolute;
	top: 1.2rem;
	left: 2.5rem;
	padding-left: 2.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 500;
}
.p-home-nav .en::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../img/logo-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}
.p-home-nav .ja {
	position: relative;
	font-size: 2.2rem;
	font-weight: 500;
}

@media (any-hover: hover) {
	.p-home-nav a:hover {
		background-color: #A08F5E;
	}
	.p-home-nav a i {
		transition: right 0.3s ease;
	}
	.p-home-nav a:hover i {
		right: 2.5rem;
	}
}

@media screen and (max-width: 768px) {
	.p-home-nav {
		padding: 0;
	}
	.p-home-nav ul {
		display: block;
		padding: 1rem 2rem;
	}
	.p-home-nav ul li {
		padding: 1rem 0;
	}
	.p-home-nav a {
		padding: 0 2rem;
		height: 12rem;
	}
	.p-home-nav a i {
		right: 2rem;
		font-size: 2rem;
	}
	.p-home-nav .en {
		top: 1.8rem;
		left: 2rem;
		padding-left: 2.5rem;
		font-size: 1.6rem;
	}
	.p-home-nav .ja {
		font-size: 2rem;
	}
	.p-home-nav .ja::before {
		width: 5rem;
		height: 5rem;
	}
}

/* ==================================================

	[ ABOUT ]

*/

/*
	concept
*/
.p-about-concept {
	margin: 9rem 0;
}
.p-about-concept .heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-about-concept .lead {
	margin-bottom: 5rem;
	text-align: center;
	font-size: 2rem;
}
.p-about-concept .list {
	display: flex;
	justify-content: center;
	margin: 0 -1.5rem;
}
.p-about-concept .list li {
	padding: 0 1.5rem;
	flex-basis: 33.333%;
}
.p-about-concept .item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 23rem;
	background-color: #FAF8F6;
	text-align: center;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.7;
	color: #998346;
}
.p-about-concept .item::before,
.p-about-concept .item::after {
	content: '';
	display: block;
	position: absolute;
	width: 10rem;
	height: 10rem;
	border: 0.2rem solid #BBAD85;
	pointer-events: none;
}
.p-about-concept .item::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}
.p-about-concept .item::after {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0;
}
@media screen and (max-width: 768px) {
	.p-about-concept {
		margin: 4rem 0;
	}
	.p-about-concept .heading {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	.p-about-concept .lead {
		margin-bottom: 4rem;
		text-align: center;
		font-size: 1.6rem;
	}
	.p-about-concept .list {
		display: block;
		margin: 0;
	}
	.p-about-concept .list li {
		margin-bottom: 2rem;
		padding: 0;
	}
	.p-about-concept .item {
		min-height: 16rem;
		font-size: 2rem;
	}
	.p-about-concept .item::before,
	.p-about-concept .item::after {
		width: 8rem;
		height: 8rem;
	}
}

/*
	facility
*/
.p-about-facility {
	margin: 9rem 0;
}
.p-about-facility .heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-about-facility .lead {
	margin-bottom: 5rem;
	text-align: center;
	font-size: 2rem;
}
.p-about-facility .slide .swiper {
	margin: 0 -18vw;
	padding-bottom: 7rem;
}
.p-about-facility .slide .swiper-slide {
	display: flex;
	align-items: center;
	opacity: .3;
  transform: scale(.76);
	transform-origin: center;
	transition-duration: 0.5s;
	transition-property: opacity, transform, margin;
}
.p-about-facility .slide .swiper-button-prev,
.p-about-facility .slide .swiper-button-next {
	top: 13.6vw;
	margin: 0;
	width: 6.2rem;
	height: 6.2rem;
	transform: translateY(-50%);
	background-color: #FFF;
	border: 1px solid #001495;
	border-radius: 50%;
	font-size: 2.6rem;
	color: #001495;
}
.p-about-facility .slide .swiper-button-prev {
	margin-right: 36vw;
	padding-right: 0.4rem;
	right: 50%;
	left: auto;
}
.p-about-facility .slide .swiper-button-next {
	margin-left: 36vw;
	padding-left: 0.4rem;
	right: auto;
	left: 50%;
}
.p-about-facility .slide .swiper-button-prev::after,
.p-about-facility .slide .swiper-button-next::after {
	content: none;
}
.p-about-facility .slide .swiper-pagination-bullets {
	top: auto;
	bottom: 0;
	display: flex;
	justify-content: center;
	gap: 0.2rem;
	margin: 0;
	padding: 0;
}
.p-about-facility .slide .swiper-pagination-bullets .swiper-pagination-bullet {
	display: flex;
	align-items: center;
	margin: 0;
	width: 8rem;
	height: 3rem;
	border-radius: 0;
	background-color: transparent;
	opacity: 1;
	cursor: pointer;
}
.p-about-facility .slide .swiper-pagination-bullets .swiper-pagination-bullet::before {
	content: '';
	display: block;
	width: 100%;
	height: 0.2rem;
	background-color: #E3E3E3;
	opacity: 1;
}
.p-about-facility .slide .swiper-pagination-bullets .swiper-pagination-bullet-active {
	cursor: default;
	pointer-events: none;
}
.p-about-facility .slide .swiper-pagination-bullets .swiper-pagination-bullet-active::before {
	background-color: #000;
	opacity: 1;
}
.p-about-facility .item {
	transition: transform 0.5s;
	position: relative;
	color: #fff;
}
.p-about-facility .item img {
	display: block;
	position: relative;
}
.p-about-facility .detail {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
}
.p-about-facility .detail div {
	width: 100%;
	padding: 3rem 2.5rem 2rem 2.5rem;
	background-image: linear-gradient(180deg,rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.8) 100%);
}
.p-about-facility .detail h3 {
	font-weight: 500;
	font-size: 2.4rem;
}
.p-about-facility .detail ul {
	font-size: 1.4rem;
	line-height: 1.5;
}
.p-about-facility .detail ul li {
	position: relative;
	padding-left: 1.5rem;
}
.p-about-facility .detail ul li:not(:last-child) {
	margin-bottom: 0.2rem;
}
.p-about-facility .detail ul li::before {
	content: 'ー';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.p-about-facility .detail p {
	min-height: 3em;
	font-size: 1.4rem;
	line-height: 1.7;
}

@media (any-hover: hover) {
	.p-about-facility .slide .swiper-button-prev,
	.p-about-facility .slide .swiper-button-next {
		transition: color 0.3s ease, background-color 0.3s ease;
	}
	.p-about-facility .slide .swiper-button-prev:hover,
	.p-about-facility .slide .swiper-button-next:hover {
		background-color: #001495;
		color: #FFF;
	}
}

@media screen and (min-width: 769px) {
	.p-about-facility .slide .swiper-slide-next,
	.p-about-facility .slide .swiper-slide-next + .swiper-slide {
		opacity: 1;
		transform: scale(1);
	}
	.p-about-facility .slide .swiper-slide-next .item {
		transform: translateX(-2rem);
	}
	.p-about-facility .slide .swiper-slide-next + .swiper-slide .item {
		transform: translateX(2rem);
	}
}

@media screen and (max-width: 768px) {
	.p-about-facility {
		margin: 5rem 0;
	}
	.p-about-facility .heading {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	.p-about-facility .lead {
		margin-bottom: 4rem;
		text-align: center;
		font-size: 1.6rem;
	}
	.p-about-facility .lead br {
		display: none;
	}
	.p-about-facility .slide .swiper {
		margin: 0 -76vw;
		padding-bottom: 4rem;
	}
	.p-about-facility .slide .swiper-slide {
		transform: scale(.88);
	}
	.p-about-facility .slide .swiper-slide-next {
		opacity: 1;
		transform: scale(1);
	}
	.p-about-facility .slide .swiper-button-prev,
	.p-about-facility .slide .swiper-button-next {
		display: none;
	}
	.p-about-facility .slide .swiper-pagination-bullets .swiper-pagination-bullet {
		width: 3rem;
	}
	.p-about-facility .detail div {
		padding: 4rem 1.5rem 1rem 1.5rem;
	}
	.p-about-facility .detail h3 {
		margin-bottom: 0.5rem;
		font-size: 1.8rem;
		line-height: 1.5;
	}
	.p-about-facility .detail ul {
		font-size: 1.2rem;
	}
	.p-about-facility .detail p {
		font-size: 1.2rem;
	}
}

/*
	teacher
*/
.p-about-teacher {
	margin: 9rem 0;
}
.p-about-teacher .heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-about-teacher .lead {
	margin-bottom: 5rem;
	text-align: center;
	font-size: 2rem;
}
.p-about-teacher .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.5rem;
	line-height: 1.5;
}
.p-about-teacher .list > li {
	flex-basis: 25%;
	padding: 0 1.5rem;
}
.p-about-teacher .card {
	display: block;
	text-align: center;
}
.p-about-teacher .card .portrait {
	position: relative;
}
.p-about-teacher .card .portrait::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 19rem;
	background-image: url(../img/about-teacher-bg.png);
	background-size: cover;
	border-radius: 1.6rem 1.6rem 0 0;
}
.p-about-teacher .card .portrait img {
	display: block;
	position: relative;
}
.p-about-teacher .card .position {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 5rem;
	background-color: #3A3A3A;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #BBAD85;
}
.p-about-teacher .card .detail {
	padding: 1rem 1.5rem 1.5rem 1.5rem;
	background-color: #F0F0F0;
	border-radius: 0 0 1.6rem 1.6rem;
}
.p-about-teacher .card .name {
	margin: 0 0 1.5rem 0;
	line-height: 1.5;
	font-weight: 500;
}
.p-about-teacher .card .name dt {
	font-size: 3rem;
	letter-spacing: 0.16em;
}
.p-about-teacher .card .name dd {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
}
.p-about-teacher .card ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.1rem;
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 1.2;
}
.p-about-teacher .card ul li {
	padding: 0.1rem;
	flex-basis: 50%;
}
.p-about-teacher .card ul li span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.1rem;
	min-height: 3.2rem;
	height: 100%;
	background-color: #DFDBD0;
}
.p-about-teacher .card ul li span i {
	display: block;
	margin: 0 -2rem;
	transform: scale(0.8);
}
.p-about-teacher .card .more {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.4rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
}
.p-about-teacher .card .more i {
	position: relative;
	display: block;
	margin-left: 0.5rem;
	width: 2.2rem;
	height: 2.2rem;
}
.p-about-teacher .card .more i::before,
.p-about-teacher .card .more i::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.p-about-teacher .card .more i::before {
	background-image: url(../img/about-teacher-plus.svg);
}
.p-about-teacher .card .more i::after {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/about-teacher-plus-on.svg);
	opacity: 0;
}
@media (any-hover: hover) {
	.p-about-teacher .card .more {
		transition: color 0.3s ease;
	}
	.p-about-teacher .card:hover .more {
		color: #001495;
	}
	.p-about-teacher .card .more i::after {
		transition: opacity 0.3s ease;
	}
	.p-about-teacher .card:hover .more i::after {
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.p-about-teacher {
		margin: 5rem 0 0 0;
	}
	.p-about-teacher .heading {
		margin-bottom: 2rem;
    font-size: 2.4rem;
	}
	.p-about-teacher .lead {
		margin-bottom: 2rem;
    text-align: center;
    font-size: 1.6rem;
	}
	.p-about-teacher .list {
		display: block;
		margin: 0;
		padding: 0 2rem;
	}
	.p-about-teacher .list > li {
		padding: 0;
	}
}

/*
	teacher modal
*/
.p-about-teacher-modal {
	position: fixed;
	z-index: 9999;
	display: none;
	inset: 0;
	padding: 12rem 5rem;
	background-color: rgba(30,30,30,0.92);
	overflow-y: auto;
	opacity: 0;
	transition: opacity 0.4s linear;
}
.p-about-teacher-modal[aria-hidden="false"] {
	display: flex;
}
.p-about-teacher-modal.show {
	opacity: 1;
}
.p-about-teacher-modal .modal-body {
	position: relative;
	margin: auto;
	max-width: 76rem;
	width: 100%;
}
.p-about-teacher-modal .modal-body .close {
	position: absolute;
	bottom: 100%;
	left: 100%;
	margin: 0 0 4rem 4rem;
	width: 4rem;
	height: 4rem;
	background-repeat: no-repeat;
	background-image: url(../img/icon-close.svg);
	background-size: contain;
}
.p-about-teacher-modal .modal-frame {
	display: flex;
	padding: 3rem;
	background-color: #FFF;
	border-radius: 1.6rem;
}
.p-about-teacher-modal .modal-image {
	flex-basis: 31.6rem;
}
.p-about-teacher-modal .modal-detail {
	flex: 1;
	padding-left: 2rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.p-about-teacher-modal .modal-detail .label {
	padding: 0.8rem 1rem 0.9rem 1.2rem;
	background-position: center;
	background-image: url(../img/about-teacher-label-bg.png);
	background-size: cover;
	border-left: 0.3rem solid #2134B3;
	line-height: 1.5;
}
.p-about-teacher-modal .modal-detail h2 {
	margin: 0.8rem 0 1rem 0;
	font-weight: 500;
}
.p-about-teacher-modal .modal-detail h2 em {
	display: block;
	font-size: 4rem;
	line-height: 1.3;
	letter-spacing: 0.16em;
}
.p-about-teacher-modal .modal-detail h2 span {
	display: block;
	margin-top: 0.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
}
.p-about-teacher-modal .modal-detail .list {
	display: table;
	width: 100%;
	line-height: 1.5;
}
.p-about-teacher-modal .modal-detail .list li {
	display: table-row;
}
.p-about-teacher-modal .modal-detail .list li > div {
	display: table-cell;
	padding: 0.7rem 0 0.9rem 0;
	font-weight: 500;
}
.p-about-teacher-modal .modal-detail .list li:first-child > div {
	border-top: 0 !important;
}
.p-about-teacher-modal .modal-detail .list li > div:first-child {
	width: 1em;
	white-space: nowrap;
	padding-right: 1em;
	border-top: 0;
	border-top: 1px solid #C0C0C0;
	font-weight: 700;
	font-size: 1.2rem;
}
.p-about-teacher-modal .modal-detail .list li > div:first-child span {
	display: block;
	position: relative;
	padding-left: 1rem;
}
.p-about-teacher-modal .modal-detail .list li > div:first-child span::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0.2rem;
	bottom: 0.16rem;
	width: 0.3rem;
	background-color: #2134B3;
}
.p-about-teacher-modal .modal-detail .list li > div:last-child {
	border-top: 1px solid #C0C0C0;
}
@media (any-hover: hover) {
	.p-about-teacher-modal .modal-body .close {
		transition: opacity 0.3s ease;
	}
	.p-about-teacher-modal .modal-body .close:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 768px) {
	.p-about-teacher-modal {
		padding: 6rem 2rem;
	}
	.p-about-teacher-modal .modal-body {
		max-width: initial;
	}
	.p-about-teacher-modal .modal-body .close {
		bottom: auto;
		left: auto;
		top: -5rem;
		right: 0;
		margin: 0;
		width: 4rem;
		height: 4rem;
	}
	.p-about-teacher-modal .modal-frame {
		display: block;
		padding: 2rem;
		border-radius: 1.2rem;
	}
	.p-about-teacher-modal .modal-detail {
		margin-top: 2rem;
		padding-left: 0;
	}
}

/*
	foot
*/
.p-about-foot {
	margin: 9rem 0 12rem 0;
}
@media screen and (max-width: 768px) {
	.p-about-foot {
		margin: 6rem 0 6rem 0;
	}
}

/* ==================================================

	[ CURRICULUM ]

*/
.p-curriculum {
	background-color: #E0EAF4;
}
.p-curriculum .link-cancel {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4rem;
	width: 28.8rem;
	height: 6.8rem;
	border: 1px solid #1e1e1e;
	font-size: 1.6rem;
}
@media (any-hover: hover) {
	.p-curriculum .link-cancel {
		transition: color 0.3s ease, background-color 0.3s ease;
	}
	.p-curriculum .link-cancel:hover {
		background-color: #1e1e1e;
		color: #FFF;
	}
}
@media screen and (max-width: 768px) {
	.p-curriculum .link-cancel {
		margin: 3rem 0 2rem 0;
	}
}

/*
	training
*/
.p-curriculum-training {
	padding: 5rem 0 10rem 0;
}
.p-curriculum-training .l-block-center + .l-block-center {
	margin-top: 4rem;
}
.p-curriculum-training .frame {
	margin: 6rem auto;
	padding: 7rem;
	max-width: 134.8rem;
	background-color: #E9E9E9;
	border: 2px solid #FFF;
	border-radius: 4rem;
	box-shadow: 0 0.4rem 2.4rem rgba(0,0,0,0.1);
}
.p-curriculum-training .heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-curriculum-training .lead {
	text-align: center;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.p-curriculum-training {
		padding: 0 1.5rem 4rem 1.5rem;
	}
	.p-curriculum-training .frame {
		margin: 4rem auto;
		padding: 3rem 2rem 2rem 2rem;
		border-radius: 2rem;
	}
	.p-curriculum-training .heading {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	.p-curriculum-training .lead {
		font-size: 1.6rem;
	}
}

/*
	training-menu
*/
.p-curriculum-training .training-menu .menu {
	margin-top: 5rem;
}
.p-curriculum-training .training-menu .menu-head {
	display: flex;
	align-items: flex-end;
	gap: 4rem;
	margin-bottom: 4rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #1E1E1E;
	line-height: 1.5;
}
.p-curriculum-training .training-menu .menu-head .h {
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.2;
}
.p-curriculum-training .training-menu .menu-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.4rem -2rem -2.4rem;
}
.p-curriculum-training .training-menu .menu-list > li {
	flex-basis: 33.333%;
	margin-bottom: 4.8rem;
	padding: 0 2.4rem;
}
.p-curriculum-training .training-menu .menu-card {
	overflow: hidden;
	padding-bottom: 2.5rem;
	height: 100%;
	border-radius: 2rem;
	background-color: #FFF;
	line-height: 1.5;
}
.p-curriculum-training .training-menu .menu-card-detail {
	padding: 0 2rem;
}
.p-curriculum-training .training-menu .menu-card-title {
	padding: 0.8rem 0;
	border-bottom: 1px solid #D9D9D9;
	font-weight: 500;
	font-size: 2rem;
}
.p-curriculum-training .training-menu .menu-card-time {
	padding: 0.8rem 0;
	border-bottom: 1px solid #D9D9D9;
}
.p-curriculum-training .training-menu .menu-card-time dl {
	display: flex;
	align-items: center;
}
.p-curriculum-training .training-menu .menu-card-time dt {
	font-size: 1.2rem;
}
.p-curriculum-training .training-menu .menu-card-time dt::before {
	content: '■';
	color: #A4A4A4;
}
.p-curriculum-training .training-menu .menu-card-theme {
	padding: 1.2rem 0 0 0;
}
.p-curriculum-training .training-menu .menu-card-theme dt {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}
.p-curriculum-training .training-menu .menu-card-theme dt::before {
	content: '■';
	color: #A4A4A4;
}
.p-curriculum-training .training-menu .menu-card-theme ul li {
	position: relative;
	margin-bottom: 0.5rem;
	padding-left: 1em;
}
.p-curriculum-training .training-menu .menu-card-theme ul li:last-child {
	margin-bottom: 0;
}
.p-curriculum-training .training-menu .menu-card-theme ul li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.p-curriculum-training .training-menu .menu-card-note {
	margin-top: 1rem;
	font-size: 1.5rem;
	color: #005EAD;
}

@media screen and (max-width: 768px) {
	.p-curriculum-training .training-menu .menu {
		margin-top: 3rem;
	}
	.p-curriculum-training .training-menu .menu-head {
		display: block;
		margin-bottom: 3rem;
	}
	.p-curriculum-training .training-menu .menu-head .h {
		margin-bottom: 1rem;
		font-size: 2.4rem;
	}
	.p-curriculum-training .training-menu .menu-list {
		display: block;
		margin: 0;
	}
	.p-curriculum-training .training-menu .menu-list > li {
		margin-bottom: 2rem;
		padding: 0;
	}
	.p-curriculum-training .training-menu .menu-card {
		height: auto;
		border-radius: 1rem;
	}
	.p-curriculum-training .training-menu .menu-card-detail {
		padding: 0 2rem;
	}
	.p-curriculum-training .training-menu .menu-card-title {
		padding: 1rem 0;
		font-size: 1.8rem;
	}
	.p-curriculum-training .training-menu .menu-card-note {
		font-size: 1.2rem;
	}
}

/*
	schedule-link
*/
.p-curriculum-training .schedule-link {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.p-curriculum-training .schedule-link a {
	display: block;
	padding: 1rem 2rem;
	background-color: #001495;
	border: 1px solid #001495;
	text-align: center;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #FFF;
}
@media (any-hover: hover) {
	.p-curriculum-training .schedule-link a {
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	.p-curriculum-training .schedule-link a:hover {
		background-color: #FFF;
		color: #001495;
	}
}
@media screen and (max-width: 768px) {
	.p-curriculum-training .schedule-link {
		margin-top: 4rem;
	}
}

/*
	training-type
*/
.p-curriculum-training .training-type {
	margin-top: 8rem;
	padding-top: 7rem;
	border-top: 4px solid #D7D7D7;
}
.p-curriculum-training .training-type .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
	padding: 3rem 0 0 0;
}
.p-curriculum-training .training-type .list > li {
	flex-basis: 50%;
	padding: 2rem;
}
.p-curriculum-training .training-type .list .item {
	padding: 2.5rem;
	height: 100%;
}
.p-curriculum-training .training-type .list .item-a {
	background-color: #FFEEF2;
}
.p-curriculum-training .training-type .list .item-b {
	background-color: #DFF4FF;
}
.p-curriculum-training .training-type .list .item-c {
	background-color: #FFFDEC;
}
.p-curriculum-training .training-type .list .item-d {
	background-color: #F3FFE9;
}
.p-curriculum-training .training-type .list .item-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1.1;
}
.p-curriculum-training .training-type .list .item-title {
	display: flex;
	align-items: center;
}
.p-curriculum-training .training-type .list .item-title span {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1rem;
	width: 4rem;
	height: 4rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.4rem;
}
.p-curriculum-training .training-type .list .item-a .item-title span {
	background-color: #FFBFC2;
}
.p-curriculum-training .training-type .list .item-b .item-title span {
	background-color: #78C1E9;
}
.p-curriculum-training .training-type .list .item-c .item-title span {
	background-color: #FFE062;
}
.p-curriculum-training .training-type .list .item-d .item-title span {
	background-color: #B9E892;
}
.p-curriculum-training .training-type .list .item-title em {
	display: block;
	font-weight: 500;
	font-size: 3rem;
}
.p-curriculum-training .training-type .list .item-deadline span {
	display: block;
	padding: 1rem 1.2rem;
	border: 1px solid #000;
}
.p-curriculum-training .training-type .list .item-price {
	margin: 2rem 0 3rem 0;
	text-align: center;
	font-weight: 500;
	font-size: 1.9rem;
	line-height: 1.1;
}
.p-curriculum-training .training-type .list .item-price dt {
	margin-bottom: 1.5rem;
	font-size: 2.4rem;
}
.p-curriculum-training .training-type .list .item-price dt em {
	font-family: 'Montserrat', sans-serif;
	font-size: 4.4rem;
}
.p-curriculum-training .training-type .list .item-price dd {
	line-height: 1.5;
}
.p-curriculum-training .training-type .list ul li {
	padding-left: 1em;
	text-indent: -1em;
}
.p-curriculum-training .training-type .list .pdf {
	margin-top: 0.5rem;
}
.p-curriculum-training .training-type .list .pdf a {
	text-decoration: underline;
	color: #005EAC;
}
.p-curriculum-training .training-type .list .foot {
	margin-top: 1rem;
	font-weight: 500;
	text-align: center;
	font-size: 1.8rem;
}
.p-curriculum-training .training-type .list .foot a {
	text-decoration: underline;
	color: #005EAC;
}
.p-curriculum-training .training-type .note {
	font-size: 1.4rem;
	line-height: 1.5;
}
.p-curriculum-training .training-type .note h3 {
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
	line-height: 1.5;
}
.p-curriculum-training .training-type .note ul {
	margin-bottom: 0.5rem;
}
.p-curriculum-training .training-type .note li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.4rem;
	line-height: 1.5;
}
.p-curriculum-training .training-type .note a {
	text-decoration: underline;
}
@media (any-hover: hover) {
	.p-curriculum-training .training-type .list a:hover {
		text-decoration: underline;
	}
	.p-curriculum-training .training-type .note a:hover {
		color: #001495;
	}
}
@media screen and (max-width: 768px) {
	.p-curriculum-training .training-type {
		margin-top: 4rem;
		padding-top: 4rem;
		border-top-width: 2px;
	}
	.p-curriculum-training .training-type .list {
		display: block;
		margin: 0;
		padding: 3rem 0 0 0;
	}
	.p-curriculum-training .training-type .list > li {
		margin-bottom: 2rem;
		padding: 0;
	}
	.p-curriculum-training .training-type .list .item {
		padding: 1.5rem;
	}
	.p-curriculum-training .training-type .list .item-title span {
		margin-right: 0.8rem;
		width: 2.8rem;
		height: 2.8rem;
		font-size: 1.8rem;
	}
	.p-curriculum-training .training-type .list .item-title em {
		font-size: 2rem;
	}
	.p-curriculum-training .training-type .list .item-deadline span {
		margin-top: 0.1rem;
		padding: 0.4rem 0.4rem;
		font-size: 1rem;
	}
	.p-curriculum-training .training-type .list .item-price {
		margin: 2rem 0 2rem 0;
		font-size: 1.7rem;
	}
	.p-curriculum-training .training-type .list .item-price dt {
		margin-bottom: 1rem;
		font-size: 2rem;
	}
	.p-curriculum-training .training-type .list .item-price dt em {
		font-size: 4.4rem;
	}
	.p-curriculum-training .training-type .note h3 {
		font-size: 1.6rem;
	}
	.p-curriculum-training .training-type .note li {
		font-size: 1.2rem;
	}
	.p-curriculum-training .training-type .list .foot {
		font-size: 1.6rem;
	}
}

/*
	training
*/
.p-curriculum-training .foot-reservation-info {
	margin-top: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2rem;
}
@media screen and (max-width: 768px) {
	.p-curriculum-training .foot-reservation-info {
		font-size: 1.8rem;
	}
}

/* ==================================================

	[ NEWS ]

*/

.p-news-list {
	padding: 5rem 0 10rem 0;
}
.p-news-list .list {
	margin-bottom: 5rem;
}
.p-news-list .list ul li {
	border-bottom: 1px solid #D4D4D4;
	line-height: 1.5;
}
.p-news-list .list ul li:last-child {
	border-bottom: 0;
}
.p-news-list .list ul li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 5rem 0;
}
.p-news-list .list ul li time {
	display: block;
	width: 14rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}
.p-news-list .list ul li span {
	display: block;
	flex: 1;
	padding-right: 5rem;
}
.p-news-list .list ul li i {
	display: block;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
}

@media (any-hover: hover) {
	.p-news-list .list ul li a span {
		transition: color 0.3s ease;
	}
	.p-news-list .list ul li a:hover span {
		color: #001495;
	}
	.p-news-list .list ul li a i {
		transition: right 0.3s ease;
	}
	.p-news-list .list ul li a:hover i {
		right: 0;
	}
}

@media screen and (max-width: 768px) {
	.p-news-list {
		padding: 2rem 0 4rem 0;
	}
	.p-news-list .list {
		margin-bottom: 2rem;
	}
	.p-news-list .list ul li a {
		display: block;
		padding: 2rem 0;
	}
	.p-news-list .list ul li span {
		padding-right: 3.5rem;
	}
}

.p-news-detail {
	padding: 10rem 0;
}
.p-news-detail .head .title {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.5;
}
.p-news-detail .head time {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
}
.p-news-detail .kv {
	display: flex;
	justify-content: center;
	margin: 5rem 0;
}
.p-news-detail .kv img {
	max-width: 60rem;
}
.p-news-detail .detail {
	margin: 5rem 0;
}
.p-news-detail .detail::before {
	content: '';
	display: block;
	clear: both;
}
.p-news-detail .detail img {
	display: inline;
	max-width: 100%;
	height: auto;
}
.p-news-detail .pagination {
	display: flex;
	justify-content: center;
	gap: 8rem;
	margin-top: 8rem;
}
.p-news-detail .pagination .prev {
	order: 1;
}
.p-news-detail .pagination .next {
	order: 3;
}
.p-news-detail .pagination .back {
	order: 2;
}
.p-news-detail .pagination span.link {
	visibility: hidden;
}

.p-news-detail .detail a {
	text-decoration: underline;
	color: #001495;
}
.p-news-detail .detail h1,
.p-news-detail .detail h2,
.p-news-detail .detail h3,
.p-news-detail .detail h4,
.p-news-detail .detail h5,
.p-news-detail .detail h6 {
	margin-top: 2em;
	font-weight: 700;
}
.p-news-detail .detail h1,
.p-news-detail .detail h2 {

}
.p-news-detail .detail .aligncenter {
	margin-left: auto;
	margin-right: auto;
}
.p-news-detail .detail .alignleft {
	float: left;
}
.p-news-detail .detail .alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}
.p-news-detail .detail ul > br,
.p-news-detail .detail ol > br {
	display: none
}
.p-news-detail .detail ul,
.p-news-detail .detail ol {
	margin-left: 2rem
}
.p-news-detail .detail ul li {
	list-style-type: disc;
}
@media (any-hover: hover) {
	.p-news-detail .pagination a {
		transition: color 0.3s ease;
	}
	.p-news-detail .pagination a:hover {
		color: #001495;
	}
}
@media screen and (max-width: 768px) {
	.p-news-detail {
		padding: 4rem 0;
	}
	.p-news-detail .head .title {
		font-size: 2rem;
	}
	.p-news-detail .kv {
		margin: 2rem 0;
	}
	.p-news-detail .kv img {
		max-width: initial;
		width: 100%;
	}
	.p-news-detail .detail {
		margin: 2rem 0;
	}
	.p-news-detail .pagination {
		margin-top: 5rem;
		justify-content: space-between;
		gap: 0;
		font-size: 1.6rem;
	}
}

/* ==================================================

	[ VOICE ]

*/

/*
list
*/
.p-voice-list {
	padding: 10rem 0;
}
.p-voice-list .head {
	margin-bottom: 7rem;
	text-align: center;
	font-size: 1.6rem;
}
.p-voice-list .head h2 {
	margin-bottom: 1.5rem;
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-voice-list .head .logos {
	margin: 3rem 0 0 0;
}
.p-voice-list .head .logos ul {
	display: flex;
	justify-content: center;
	gap: 4rem;
}
.p-voice-list .head .logos img {
	width: auto;
	height: 5rem;
}
.p-voice-list .wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
}
.p-voice-list .item {
	flex-basis: 33.333%;
	margin-bottom: 5rem;
	padding: 0 2rem;
}
.p-voice-list .item a {
	color: inherit;
}
.p-voice-list .item .thumb {
	overflow: hidden;
	aspect-ratio: 728 / 496;
}
.p-voice-list .item .thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-voice-list .item .type {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2rem;
}
.p-voice-list .item .type span {
	display: block;
	padding: 0.24em 0.8em 0.32em 0.8em;
	border: 1px solid #FFF;
	border-radius: 999rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3;
}
.p-voice-list .item .type .type-a {
	background-color: #FFBFC2;
	border-color: #FFBFC2;
}
.p-voice-list .item .type .type-b {
	background-color: #78C1E9;
	border-color: #78C1E9;
}
.p-voice-list .item .type .type-c {
	background-color: #FFE26C;
	border-color: #FFE26C;
}
.p-voice-list .item .type .type-d {
	background-color: #B9E892;
	border-color: #B9E892;
}
.p-voice-list .item .title {
	margin: 1.5rem 0 0.5rem 0;
	font-weight: 500;
	font-size: 1.7rem;
	line-height: 1.5;
}
.p-voice-list .item p {
	font-size: 1.4rem;
}
.p-voice-list .item time {
	margin-top: 1rem;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
}
.p-voice-list .item .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}
.p-voice-list .item .menu > div {
	padding: 0.24em 0.8em 0.32em 0.8em;
	border: 1px solid #717071;
	border-radius: 999rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3;
}
.p-voice-list .item .menu .menu-root {
	background-color: #E7E7E7;
}
.p-voice-list .pagination {
	margin: 0 auto;
	width: 45.5rem;
}

@media (any-hover: hover) {
	.p-voice-list .item a .thumb img {
		transition: transform 0.6s ease;
	}
	.p-voice-list .item a:hover .thumb img {
		transform: scale(1.06);
	}
	.p-voice-list .item a .title {
		transition: color 0.3s ease;
	}
	.p-voice-list .item a:hover .title {
		color: #001495;
	}
}

@media screen and (max-width: 768px) {
	.p-voice-list {
		padding: 4rem 0;
	}
	.p-voice-list .head {
		margin-bottom: 5rem;
	}
	.p-voice-list .head h2 {
		font-size: 2.2rem;
	}
	.p-voice-list .head .logos {
		margin: 3rem 0 0 0;
	}
	.p-voice-list .head .logos ul {
		flex-wrap: wrap;
		gap: 1.5rem 0;
	}
	.p-voice-list .head .logos li {
		flex-basis: 50%;
		display: flex;
		justify-content: center;
	}
	.p-voice-list .head .logos img {
		height: 3.6rem;
	}
	.p-voice-list .wrap {
		display: block;
		margin: 0;
	}
	.p-voice-list .item {
		margin-bottom: 4rem;
		padding: 0;
	}
}

/*
detail
*/
.p-voice-detail .section1 {
	padding: 10rem 0 6rem 0;
	background-color: #F4F2EE;
}
.p-voice-detail .section2 {
	padding: 6rem 0 10rem 0;
}
.p-voice-detail .head {
	margin-bottom: 4rem;
	text-align: center;
}
.p-voice-detail .head .company {
	font-size: 2.4rem;
	line-height: 1.5;
}
.p-voice-detail .head time {
	display: block;
	margin: 2rem 0;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
}
.p-voice-detail .head .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}
.p-voice-detail .head .wrap .type {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.p-voice-detail .head .wrap .type span {
	display: block;
	padding: 0.24em 0.8em 0.32em 0.8em;
	border: 1px solid #FFF;
	border-radius: 999rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3;
}
.p-voice-detail .head .wrap .type .type-a {
	background-color: #FFBFC2;
	border-color: #FFBFC2;
}
.p-voice-detail .head .wrap .type .type-b {
	background-color: #78C1E9;
	border-color: #78C1E9;
}
.p-voice-detail .head .wrap .type .type-c {
	background-color: #FFE26C;
	border-color: #FFE26C;
}
.p-voice-detail .head .wrap .type .type-d {
	background-color: #B9E892;
	border-color: #B9E892;
}
.p-voice-detail .head .wrap .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.p-voice-detail .head .wrap .menu > div {
	padding: 0.24em 0.8em 0.32em 0.8em;
	border: 1px solid #717071;
	border-radius: 999rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3;
}
.p-voice-detail .head .wrap .menu .menu-root {
	background-color: #E7E7E7;
}
.p-voice-detail .head .title {
	margin: 0 -5rem;
	font-weight: 700;
	font-size: 2.9rem;
	color: #001495;
}
.p-voice-detail .kv {
	margin: 0 auto;
	max-width: 56rem;
}
.p-voice-detail .kv span {
	display: block;
	margin-top: 0.6rem;
	font-size: 1.2rem;
	line-height: 1.5;
}
.p-voice-detail .info {
	margin: 4rem auto 0 auto;
	max-width: 66rem;
	line-height: 1.3;
}
.p-voice-detail .info .company {
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
}
.p-voice-detail .info .row {
	margin-top: 3rem;
}
.p-voice-detail .info .row dl {
	display: flex;
	justify-content: center;
	padding: 1rem;
}
.p-voice-detail .info .row dt {
	flex-basis: 8rem;
	flex-shrink: 0;
}
.p-voice-detail .info .row dt span {
	display: block;
	padding: 0.2rem 0 0.3rem 0;
	background-color: #001495;
	border-radius: 999rem;
	text-align: center;
	font-size: 1.4rem;
	color: #FFF;
}
.p-voice-detail .info .row dd {
	flex-shrink: 0;
	padding-top: 0.1rem;
	padding-left: 1rem;
	font-size: 1.6rem;
}
.p-voice-detail .info .row dd span {
	font-size: 1.2rem;
}
.p-voice-detail .training {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 8rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.3;
}
.p-voice-detail .training .block {
	position: relative;
	flex: 1;
	padding: 0 1.5rem 1rem 1.5rem;
}
.p-voice-detail .training .block::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	top: 1.6rem;
	border: 1px solid #000;
	border-radius: 1rem;
}
.p-voice-detail .training .block::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	right: -2.6rem;
	margin-top: -0.8rem;
	width: 3.2rem;
	height: 3.2rem;
	background-repeat: no-repeat;
	background-image: url(../img/voice-training-arrow.svg);
	background-size: contain;
}
.p-voice-detail .training .block:last-child::after {
	content: none;
}
.p-voice-detail .training .block1::before {
	border-color: #8433D8;
}
.p-voice-detail .training .block2::before {
	border-color: #001495;
}
.p-voice-detail .training .block3::before {
	border-color: #E78C32;
}
.p-voice-detail .training .block .title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 19rem;
	height: 3.2rem;
	border-radius: 999rem;
	text-align: center;
	color: #FFF;
}
.p-voice-detail .training .block1 .title {
	background-color: #8433D8;
}
.p-voice-detail .training .block2 .title {
	background-color: #001495;
}
.p-voice-detail .training .block3 .title {
	background-color: #E78C32;
}
.p-voice-detail .training .block ul {
	margin-top: 1rem;
}
.p-voice-detail .training .block ul li {
	position: relative;
	margin-bottom: 0.5rem;
	padding-left: 1em;
}
.p-voice-detail .training .block ul li::before {
	content: '●';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.p-voice-detail .training .block1 ul li::before {
	color: #8433D8;
}
.p-voice-detail .training .block2 ul li::before {
	color: #001495;
}
.p-voice-detail .training .block3 ul li::before {
	color: #E78C32;
}
.p-voice-detail .beginning {
	padding: 2.5rem;
	border: 1px solid #AFAFAF;
	border-radius: 1rem;
}
.p-voice-detail .beginning h3 {
	margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 700;
	font-size: 2rem;
}
.p-voice-detail .beginning h3 br.sp {
	display: none;
}
.p-voice-detail .question {
	position: relative;
	margin-top: 5rem;
	padding-left: 1.2em;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
}
.p-voice-detail .question + .question {
	margin-top: 0;
}
.p-voice-detail .question::before {
	content: '';
	position: absolute;
	top: 0.8em;
	left: 0;
	display: block;
	width: 0.8em;
	height: 1px;
	background-color: #1E1E1E;
}
.p-voice-detail .answer {
	margin-bottom: 8rem;
	margin-top: 3rem;
}
.p-voice-detail .answer .title {
	margin-bottom: 3rem;
	font-size: 2.1rem;
	line-height: 1.5;
	color: #001495;
}
.p-voice-detail .answer .text p {
	margin-bottom: 3rem;
}
.p-voice-detail .answer .text p:last-child {
	margin-bottom: 0;
}
.p-voice-detail .answer .text li {
	padding-left: 1em;
	text-indent: -1em;
}
.p-voice-detail .answer .text strong {
	font-weight: 700;
}
.p-voice-detail .answer .image {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.p-voice-detail .answer .image img {
	max-width: 54.6rem;
}
.p-voice-detail .pagination {
	display: flex;
	justify-content: center;
	gap: 8rem;
}
.p-voice-detail .pagination .link {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.p-voice-detail .pagination .prev {
	order: 1;
	font-family: 'Montserrat', sans-serif;
}
.p-voice-detail .pagination .next {
	order: 3;
	font-family: 'Montserrat', sans-serif;
}
.p-voice-detail .pagination .next .link {
	flex-direction: row-reverse;
}
.p-voice-detail .pagination .back {
	order: 2;
	flex-shrink: 0;
}
.p-voice-detail .pagination .back .link {
	display: block;
}
.p-voice-detail .pagination span.link {
	visibility: hidden;
}
@media (any-hover: hover) {
	.p-voice-detail .pagination a {
		transition: color 0.3s ease;
	}
	.p-voice-detail .pagination a:hover {
		color: #001495;
	}
}
@media screen and (max-width: 768px) {
	.p-voice-detail .section1 {
		padding: 4rem 0 3rem 0;
	}
	.p-voice-detail .section2 {
		padding: 3rem 0 5rem 0;
	}
	.p-voice-detail .head {
		margin-bottom: 2rem;
		text-align: center;
	}
	.p-voice-detail .head .company {
		font-size: 1.6rem;
	}
	.p-voice-detail .head time {
		margin: 1rem 0;
	}
	.p-voice-detail .head .title {
		margin: 0;
		font-size: 1.9rem;
	}
	.p-voice-detail .kv {
		max-width: initial;
	}
	.p-voice-detail .info {
		margin: 2.5rem 0 0 0;
		max-width: initial;
	}
	.p-voice-detail .info .company {
		font-size: 1.8rem;
	}
	.p-voice-detail .info .row {
		display: block;
		margin-top: 1.5rem;
	}
	.p-voice-detail .info .row dl {
		padding: 0.5rem 0;
	}
	.p-voice-detail .info .row dt span {
		font-size: 1.3rem;
	}
	.p-voice-detail .info .row dd {
		font-size: 1.5rem;
	}
	.p-voice-detail .training {
		display: block;
		margin-bottom: 4rem;
	}
	.p-voice-detail .training .block {
		margin-bottom: 5rem;
	}
	.p-voice-detail .training .block::after {
		top: 100%;
		right: 50%;
		margin: 0.9rem -1.6rem 0 0;
		transform: rotate(90deg);
	}
	.p-voice-detail .beginning {
		margin: 4rem 0;
		padding: 2rem;
	}
	.p-voice-detail .beginning h3 {
		margin-bottom: 1.5rem;
		font-size: 1.8rem;
	}
	.p-voice-detail .beginning h3 br.sp {
		display: block;
	}
	.p-voice-detail .question {
		margin-top: 2rem;
		font-size: 1.8rem;
	}
	.p-voice-detail .answer {
		margin-bottom: 4rem;
		margin-top: 2rem;
	}
	.p-voice-detail .answer .title {
		margin-bottom: 1.5rem;
		font-size: 1.6rem;
	}
	.p-voice-detail .answer .text p {
		margin-bottom: 1.5rem;
	}
	.p-voice-detail .answer .image {
		margin-top: 3rem;
	}
	.p-voice-detail .pagination {
		gap: 0;
		font-size: 1.6rem;
	}
	.p-voice-detail .pagination .back {
		flex: 1;
		text-align: center;
	}
}

/* ==================================================

	[ ACCESS ]

*/
.p-access {
	background-color: #F0F4FB;
}
.p-access-info {
	padding: 10rem 0 10rem 0;
}
.p-access-info .wrap {
	display: flex;
}
.p-access-info .wrap .detail {
	flex: 1;
	font-size: 2rem;
}
.p-access-info .wrap .detail .logo {
	margin: 0 0 3rem 0;
	max-width: 44.8rem;
}
.p-access-info .wrap .detail dl {
	display: flex;
	margin-top: 1rem;
}
.p-access-info .wrap .map {
	flex-basis: 60rem;
}
.p-access-info .exterior {
	margin: 8rem 0;
}
.p-access-info .gmap {
	height: 33.6rem;
	height: 29.8rem;
}
.p-access-info .gmap iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.p-access-info {
		padding: 4rem 0 4rem 0;
	}
	.p-access-info .wrap {
		display: block;
	}
	.p-access-info .wrap .detail {
		font-size: 1.6rem;
	}
	.p-access-info .wrap .detail .logo {
		margin: 0 0 1.5rem 0;
	}
	.p-access-info .wrap .map {
		margin-top: 2rem;
	}
	.p-access-info .exterior {
		margin: 4rem 0;
	}
	.p-access-info .gmap {
		height: 299px;
	}
}

/* ==================================================

	[ CONTACT ]

*/

/*
faq
*/
.p-contact-faq {
	padding: 10rem 0 0 0;
}
.p-contact-faq .heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.4rem;
}
.p-contact-faq .list ul li {
	margin-bottom: 3rem;
	background-color: #EFEFEF;
	border-radius: 0.8rem;
}
.p-contact-faq .list ul li:last-child {
	margin-bottom: 0;
}
.p-contact-faq .list .question {
	display: block;
	position: relative;
	padding: 1.5rem 5rem 1.5rem 7rem;
	width: 100%;
	text-align: left;
	font-size: 2rem;
	line-height: 1.5;
	color: #001C4F;
}
.p-contact-faq .list .question::before {
	content: 'Q.';
	display: block;
	position: absolute;
	top: 1.8rem;
	left: 2rem;
	font-family: "Inter", sans-serif;
	font-size: 2.4rem;
	line-height: 1;
}
.p-contact-faq .list .question i {
	position: absolute;
	top: 50%;
	right: 2.5rem;
	margin-top: -0.8rem;
	width: 1.6rem;
	height: 1.6rem;
}
.p-contact-faq .list .question i::before,
.p-contact-faq .list .question i::after {
	content: '';
	display: block;
	position: absolute;
	background-color: #000;
}
.p-contact-faq .list .question i::before {
	top: 50%;
	left: 0;
	margin-top: -0.1rem;
	width: 100%;
	height: 0.2rem;
}
.p-contact-faq .list .question i::after {
	top: 0;
	left: 50%;
	margin-left: -0.1rem;
	width: 0.2rem;
	height: 100%;
}
.p-contact-faq .list .question[aria-expanded="true"] i::after {
	content: none;
}
.p-contact-faq .list .question + div {
	overflow: hidden;
	height: 0;
}
.p-contact-faq .list .question + div[aria-hidden="false"] {
	height: auto;
}
.p-contact-faq .list .answer {
	position: relative;
	margin: 0 2rem;
	padding: 1.2rem 3rem 1.5rem 5rem;
	border-top: 1px dashed #ccc;
}
.p-contact-faq .list .answer::before {
	content: 'A.';
	display: block;
	position: absolute;
	top: 1.8rem;
	left: 0;
	font-family: "Inter", sans-serif;
	font-size: 2.4rem;
	line-height: 1;
}
.p-contact-faq .list .answer a {
	text-decoration: underline;
	color: #001495;
}

@media (any-hover: hover) {
	.p-contact-faq .list .answer a {
		transition: opacity 0.3s ease;
	}
	.p-contact-faq .list .answer a:hover {
		opacity: 0.6;
	}
}

@media screen and (max-width: 768px) {
	.p-contact-faq {
		padding: 4rem 0 0 0;
	}
	.p-contact-faq .heading {
		margin-bottom: 2rem;
		font-size: 2rem;
	}
	.p-contact-faq .list ul li {
		margin-bottom: 1.5rem;
	}
	.p-contact-faq .list .question {
		padding: 1.5rem 4rem 1.5rem 4.5rem;
		font-size: 1.5rem;
	}
	.p-contact-faq .list .question::before {
		top: 1.8rem;
		left: 1.5rem;
		font-size: 2rem;
	}
	.p-contact-faq .list .question i {
		right: 1.5rem;
	}
	.p-contact-faq .list .answer {
		margin: 0 1.5rem;
		padding: 1.5rem 0 1.5rem 3rem;
	}
	.p-contact-faq .list .answer::before {
		top: 1.8rem;
		font-size: 2rem;
	}
}

/*
	input
*/
.p-contact-input {
	margin: 10rem 0;
}
.p-contact-input .head {
	font-size: 1.8rem;
	text-align: center;
}
.p-contact-input .heading {
	font-size: 2.4rem;
}
.p-contact-input select,
.p-contact-input textarea,
.p-contact-input input[type="text"] {
	display: block;
	padding: 0.5em 1em;
	width: 100%;
	border: 1px solid #999A9E;
	border-radius: 0.4rem;
	font-family: inherit;
	font-weight: 400;
	font-size: 1.6rem;
}
.p-contact-input select {
	padding: 0 4em 0 1em;
	height: 5.2rem;
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-image: url(../img/input-select.svg);
	background-size: 3rem 3rem;
}
.p-contact-input textarea {
	height: 40rem;
}
.p-contact-input input[type="radio"] {
	display: block;
	margin-right: 0.5em;
	width: 2.6rem;
	height: 2.6rem;
	border: 0.3rem solid #B2B2B2;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.6rem 1.6rem;
	flex-shrink: 0;
}
.p-contact-input input[type="radio"]:checked {
	background-image: url(../img/input-radio.svg);
}
.p-contact-input input[type="checkbox"] {
	display: block;
	margin-right: 0.3em;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid #000;
	flex-shrink: 0;
}
.p-contact-input input[type="checkbox"]:checked {
	border-color: #001495;
	background-color: #001495;
	background-image: url(../img/input-checkbox.svg);
	background-size: contain;
}
.p-contact-input h2 {
	margin: 4rem 0 1.5rem 0;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.3;
}
.p-contact-input h2:first-child {
	margin-top: 0;
}
.p-contact-input h2 em {
	font-weight: 400;
	font-size: 1.4rem;
	color: #FF2C5D;
}
.p-contact-input h2 em.opt {
	color: inherit;
}
.p-contact-input .date input[type="text"] {
	padding-left: 6rem;
	background-repeat: no-repeat;
	background-position: 1rem 50%;
	background-image: url(../img/icon-calendar.svg);
	background-size: 4rem 4rem;
}
.p-contact-input .select {
	display: flex;
	flex-wrap: wrap;
}
.p-contact-input .select select {
	width: auto;
}
.p-contact-input .select .alert {
	flex-basis: 100%;
}
.p-contact-input .privacy {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.4rem;
}
.p-contact-input .privacy a {
	text-decoration: underline;
}
.p-contact-input .agree {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.p-contact-input .agree label {
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-contact-input .agree input[type="checkbox"] {
	margin-right: 0.8rem;
	width: 2rem;
	height: 2rem;
}
.p-contact-input .foot {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.p-contact-input .alert {
	font-weight: 500;
	font-size: 1.6rem;
	color: #FF2C5D;
}

@media screen and (max-width: 768px) {
	.p-contact-input {
		margin: 5rem 0;
	}
	.p-contact-input .head {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
	.p-contact-input .heading {
		font-size: 2rem;
	}
	.p-contact-input select,
	.p-contact-input textarea,
	.p-contact-input input[type="text"] {
		padding: 0.5em;
		border-radius: 0.8rem;
		font-size: 1.6rem;
	}
	.p-contact-input select {
		padding: 0 4em 0 0.5em;
		height: 4.7rem;
		background-size: 3rem 3rem;
	}
	.p-contact-input input[type="radio"] {
		margin-right: 0.5em;
		width: 2rem;
		height: 2rem;
		border-width: 0.2rem;
		background-size: 1.2rem 1.2rem;
	}
	.p-contact-input input[type="checkbox"] {
		margin-right: 0.3em;
		width: 2rem;
		height: 2rem;
	}
	.p-contact-input h2 {
		margin: 2rem 0 1rem 0;
		font-size: 1.8rem;
	}
	.p-contact-input h2 em {
		font-size: 1.4rem;
	}
	.p-contact-input .select select {
		width: 100%;
	}
	.p-contact-input .agree {
		margin-top: 3rem;
	}
	.p-contact-input .privacy {
		margin-top: 1rem;
		text-align: center;
		font-size: 1.4rem;
	}
	.p-contact-input .privacy a {
		text-decoration: underline;
	}
	.p-contact-input .alert {
		font-size: 1.6rem;
	}
	.p-contact-input .foot {
		margin-top: 3rem;
	}
}

/*
	confirm
*/
.p-contact-confirm {
	padding: 10rem 0;
}
.p-contact-confirm .head {
	margin-bottom: 4rem;
	text-align: center;
	font-size: 1.8rem;
}
.p-contact-confirm dl {
	display: flex;
	padding: 3rem 0;
	line-height: 1.7;
}
.p-contact-confirm dt {
	flex-shrink: 0;
	width: 35%;
	font-weight: 500;
	font-size: 2rem;
}
.p-contact-confirm dd {
	font-size: 2rem;
}
.p-contact-confirm .foot {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 5rem;
}

@media screen and (max-width: 768px) {
	.p-contact-confirm {
		padding: 4rem 0;
	}
	.p-contact-confirm .head {
		margin-bottom: 2rem;
		font-size: 1.5rem;
	}
	.p-contact-confirm dl {
		display: block;
		padding: 1rem 0;
	}
	.p-contact-confirm dt {
		width: auto;
		font-size: 1.8rem;
	}
	.p-contact-confirm dd {
		font-size: 1.6rem;
	}
	.p-contact-confirm .foot {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
		margin-top: 3rem;
	}
}

/*
	complete
*/
.p-contact-complete {
	padding: 10rem 0 14rem 0;
	text-align: center;
}
.p-contact-complete h2 {
	margin-bottom: 2rem;
	font-size: 2.8rem;
}
.p-contact-complete p {
	font-size: 2rem;
}
.p-contact-complete .foot {
	margin-top: 8rem;
	text-align: center;
	font-size: 1.8rem;
}
.p-contact-complete .foot a {
	color: #001495;
}

@media screen and (max-width: 768px) {
	.p-contact-complete {
		padding: 6rem 0 6rem 0;
	}
	.p-contact-complete h2 {
		margin-bottom: 2rem;
		font-size: 2.2rem;
	}
	.p-contact-complete p {
		font-size: 1.6rem;
	}
}

/* ==================================================

	[ SUBSIDY ]

*/
.p-subsidy .section-heading {
	margin-bottom: 4rem;
	text-align: center;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5;
}
.p-subsidy .section-heading::after {
	content: '';
	display: block;
	margin: 2rem auto 0 auto;
	width: 4rem;
	height: 0.4rem;
	background-color: #005EAD;
	border-radius: 99rem;
}

@media screen and (max-width: 768px) {
	.p-subsidy .section-heading {
		margin: 0 -1rem 2.5rem -1rem;
		font-size: 2rem;
	}
}

/*
guidance
*/
.p-subsidy-guidance {
	margin-bottom: 10rem;
	padding: 10rem 0 0 0;
}
.p-subsidy-guidance .merit {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.p-subsidy-guidance .merit h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 6rem;
	background-color: #F9730D;
	border-radius: 999rem;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.4;
	color: #fff;
}
.p-subsidy-guidance .merit ul {
	margin-top: 3.5rem;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.5;
}
.p-subsidy-guidance .merit li {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 4.4rem;
}
.p-subsidy-guidance .merit li:last-child {
	margin-bottom: 0;
}
.p-subsidy-guidance .merit li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.16rem;
	left: 0;
	width: 3.2rem;
	height: 3.2rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/subsidy-check01.svg);
	background-size: contain;
}
.p-subsidy-guidance .merit li em {
	font-weight: 700;
	color: #F9730D;
}

@media screen and (max-width: 768px) {
	.p-subsidy-guidance {
		margin-bottom: 5rem;
		padding: 4rem 0 0 0;
	}
	.p-subsidy-guidance .merit {
		display: block;
	}
	.p-subsidy-guidance .merit h3 {
		padding: 1rem 0;
		height: auto;
		font-size: 1.8rem;
	}
	.p-subsidy-guidance .merit ul {
		margin-top: 2.5rem;
		font-size: 1.7rem;
	}
	.p-subsidy-guidance .merit li {
		padding-left: 3.2rem;
	}
	.p-subsidy-guidance .merit li::before {
		top: 0.16rem;
		width: 2.2rem;
		height: 2.2rem;
	}
}

/*
refer
*/
.p-subsidy-refer {
	margin: 8rem 0;
}
.p-subsidy-refer .lead {
	font-weight: 500;
	font-size: 2rem;
}
.p-subsidy-refer .lead em {
	font-style: normal;
	font-weight: 700;
	color: #005EAD;
}

@media screen and (max-width: 768px) {
	.p-subsidy-refer {
		margin: 5rem 0;
	}
	.p-subsidy-refer .lead {
		font-size: 1.6rem;
	}
}

/*
about
*/
.p-subsidy-about {
	margin: 8rem 0;
}
.p-subsidy-about .lead {
	font-weight: 500;
	font-size: 2rem;
}
.p-subsidy-about .item {
	display: table;
	margin: 2rem 0;
	width: 100%;
	font-size: 1.8rem;
}
.p-subsidy-about .item dt {
	display: table-cell;
	vertical-align: middle;
	padding: 1rem 0;
	width: 15.4rem;
	background-color: #005EAD;
	text-align: center;
	font-weight: 700;
	color: #fff;
}
.p-subsidy-about .item dd {
	display: table-cell;
	vertical-align: middle;
	padding: 1rem;
	background-color: #ECECEC;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.p-subsidy-about {
		margin: 5rem 0;
	}
	.p-subsidy-about .lead {
		font-size: 1.6rem;
	}
	.p-subsidy-about .item {
		margin: 2rem 0;
		font-size: 1.5rem;
	}
	.p-subsidy-about .item dt {
		width: 13rem;
	}
}

/*
price
*/
.p-subsidy-price {
	margin: 8rem 0;
}
.p-subsidy-price .note {
	text-align: right;
	font-size: 1.4rem;
}
.p-subsidy-price .table {
	margin: 0.5rem 0;
	width: 100%;
	text-align: center;
	border-collapse: separate;
	border-spacing: 0.2rem;
	line-height: 1.5;
}
.p-subsidy-price .table th {
	padding: 1rem 1rem;
	background-color: #FBE2D5;
	font-weight: 500;
	vertical-align: middle;
}
.p-subsidy-price .table th span {
	display: block;
	font-weight: 400;
	font-size: 1.2rem;
}
.p-subsidy-price .table td {
	padding: 2rem 1rem;
	background-color: #ECECEC;
	vertical-align: middle;
}
.p-subsidy-price .table td.cell {
	background-color: #CAEDFB;
}
.p-subsidy-price .table br {
	display: none;
}
.p-subsidy-price .text {
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.p-subsidy-price {
		margin: 5rem 0;
	}
	.p-subsidy-price .note {
		font-size: 1.2rem;
	}
	.p-subsidy-price .table {
		margin: 0.5rem 0;
		font-size: 1.3rem;
	}
	.p-subsidy-price .table th {
		padding: 1rem 0.6rem;
	}
	.p-subsidy-price .table th span {
		font-size: 1rem;
	}
	.p-subsidy-price .table td {
		padding: 1rem 0.6rem;
	}
	.p-subsidy-price .table br {
		display: block;
	}
	.p-subsidy-price .text {
		font-size: 1.2rem;
	}
}

/*
scope
*/
.p-subsidy-scope {
	margin: 8rem 0;
}
.p-subsidy-scope .lead {
	font-weight: 500;
	font-size: 2rem;
}
.p-subsidy-scope .table {
	margin: 3rem 0 0 0;
	width: 100%;
	text-align: center;
	border-collapse: separate;
	border-spacing: 0.2rem;
	line-height: 1.5;
}
.p-subsidy-scope .table th {
	padding: 2rem 1rem;
	background-color: #3C3C3C;
	vertical-align: middle;
	font-weight: 500;
	color: #fff;
}
.p-subsidy-scope .table td {
	padding: 2rem 1rem;
	background-color: #E8E8E8;
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	.p-subsidy-scope {
		margin: 5rem 0;
	}
	.p-subsidy-scope .lead {
		font-size: 1.6rem;
	}
	.p-subsidy-scope .table {
		margin: 2rem 0 0 0;
		font-size: 1.3rem;
	}
	.p-subsidy-scope .table th {
		padding: 1rem 0.6rem;
	}
	.p-subsidy-scope .table td {
		padding: 1rem 0.6rem;
	}
}

/*
flow
*/
.p-subsidy-flow {
	margin: 8rem 0;
}
.p-subsidy-flow .block {
	position: relative;
}
.p-subsidy-flow .heading {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	bottom: 0;
	width: 11.2rem;
}
.p-subsidy-flow .heading::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0.5px;
	width: 100%;
	height: 4rem;
	background-color: #0476CA;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.p-subsidy-flow .heading span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 4rem;
	width: 100%;
	border-radius: 1.6rem 1.6rem 0 0;
	writing-mode: vertical-rl;
	font-weight: 500;
	font-size: 3.2rem;
	letter-spacing: 0.25em;
	color: #fff;
	background-image: linear-gradient(180deg,#11A7ED 0%, #0476CA 100%);
}
.p-subsidy-flow .block:first-child {
	padding-top: 1rem;
}
.p-subsidy-flow .block:last-child {
	padding-bottom: 4rem;
}
.p-subsidy-flow .block:last-child .heading {
	z-index: 1;
	top: -10rem;
}
.p-subsidy-flow .block:last-child .heading::before {
	background-color: #0047A4;
}
.p-subsidy-flow .block:last-child .heading span {
	padding-top: 20rem;
	background-image: linear-gradient(180deg,#0164BB 0%, #0047A4 100%);
}
.p-subsidy-flow .item-frame {
	display: flex;
	justify-content: space-between;
	padding: 2rem 2rem 2rem 14rem;
	border: 0.2rem solid #005EAD;
	border-radius: 1.6rem;
}
.p-subsidy-flow .title {
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.4;
	color: #005EAD;
}
.p-subsidy-flow .list {
	margin: 1rem 0 0 2.8rem;
	font-size: 1.8rem;
	line-height: 1.5;
}
.p-subsidy-flow .list li {
	padding-left: 1em;
	text-indent: -1em;
}
.p-subsidy-flow .list li::before {
	content: '●';
}
.p-subsidy-flow .contact {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.p-subsidy-flow .contact::before {
	content: '';
	display: block;
	width: 12rem;
	height: 6rem;
	background-image: url(../img/subsidy-arrow02.svg);
	background-size: contain;
}
.p-subsidy-flow .contact em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19.2rem;
	height: 14.4rem;
	border: 0.3rem solid #FF3700;
	text-align: center;
	font-style: normal;
	font-size: 2.6rem;
	color: #FF3700;
}
.p-subsidy-flow .item-full-frame {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	padding: 2rem;
	border: 0.2rem solid #F9730D;
	border-radius: 1.6rem;
	background-color: #FFECC8D1;
	text-align: center;
	font-weight: 700;
	font-size: 28px;
}
.p-subsidy-flow .item::after,
.p-subsidy-flow .item-full::after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 6rem;
	height: 4.5rem;
	background-image: url(../img/subsidy-arrow01.svg);
	background-size: contain;
	transform: translateX(2rem);
}
.p-subsidy-flow .block:last-child .item:last-child::after {
	content: none;
}

@media screen and (max-width: 768px) {
	.p-subsidy-flow {
		margin: 5rem 0;
	}
	.p-subsidy-flow .block {
		position: relative;
	}
	.p-subsidy-flow .heading {
		width: 4rem;
	}
	.p-subsidy-flow .heading::before {
		height: 2.4rem;
	}
	.p-subsidy-flow .heading span {
		bottom: 2.4rem;
		border-radius: 1rem 1rem 0 0;
		font-size: 2.2rem;
	}
	.p-subsidy-flow .block:last-child {
		padding-bottom: 2.4rem;
	}
	.p-subsidy-flow .block:last-child .heading {
		z-index: 1;
		top: -10rem;
	}
	.p-subsidy-flow .block:last-child .heading span {
		padding-top: 14rem;
	}
	.p-subsidy-flow .item-frame {
		display: block;
		padding: 1.3rem 1.3rem 1.5rem 5rem;
		border-radius: 1.2rem;
	}
	.p-subsidy-flow .title {
		font-size: 1.8rem;
	}
	.p-subsidy-flow .list {
		margin: 1rem 0 0 0;
		font-size: 1.4rem;
	}
	.p-subsidy-flow .contact {
		margin-top: 1.5rem;
		gap: 1.5rem;
	}
	.p-subsidy-flow .contact::before {
		width: 6rem;
		height: 3rem;
	}
	.p-subsidy-flow .contact em {
		flex: 1;
		width: auto;
		height: auto;
		font-size: 2rem;
	}
	.p-subsidy-flow .contact em br {
		display: none;
	}
	.p-subsidy-flow .item-full-frame {
		padding: 1.5rem;
		border-radius: 1rem;
		font-size: 20px;
	}
	.p-subsidy-flow .item::after,
	.p-subsidy-flow .item-full::after {
		width: 4rem;
		height: 3rem;
		transform: translateX(1.5rem);
	}
}

/*
requirements
*/
.p-subsidy-requirements {
	margin: 8rem 0;
}
.p-subsidy-requirements .list {
	margin-bottom: 7rem;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
}
.p-subsidy-requirements .list li {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 3.2rem;
}
.p-subsidy-requirements .list li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.16em;
	left: 0;
	width: 2.4rem;
	height: 2.4rem;
	background-position: center;
	background-repeat: none;
	background-image: url(../img/subsidy-check02.svg);
	background-size: contain;
}
.p-subsidy-requirements .document {
	padding: 2rem 2rem 2.5rem 2rem;
	border: 1px solid #E6E6E6;
	background-color: #F8F8F8;
	text-align: center;
	line-height: 1.7;
}
.p-subsidy-requirements .document p {
	font-size: 1.7rem;
}
.p-subsidy-requirements .document p em {
	font-weight: 700;
}
.p-subsidy-requirements .document ul {
	display: flex;
	justify-content: center;
	gap: 8rem;
	margin-top: 1.5rem;
	font-size: 1.8rem;
}
.p-subsidy-requirements .document ul a {
	display: block;
	position: relative;
	padding-left: 3rem;
	text-decoration: underline;
}
.p-subsidy-requirements .document ul a::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1.1rem;
	width: 2.4rem;
	height: 2.4rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-pdf.svg);
	background-size: contain;
}

@media screen and (max-width: 768px) {
	.p-subsidy-requirements {
		margin: 5rem 0;
	}
	.p-subsidy-requirements .list {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
	.p-subsidy-requirements .list li {
		padding-left: 2.8rem;
	}
	.p-subsidy-requirements .list li::before {
		width: 2rem;
		height: 2rem;
	}
	.p-subsidy-requirements .document {
		padding: 2rem 1.5rem 2.5rem 1.5rem;
	}
	.p-subsidy-requirements .document p {
		font-size: 1.5rem;
	}
	.p-subsidy-requirements .document p br {
		display: none;
	}
	.p-subsidy-requirements .document ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 1.5rem;
		font-size: 1.6rem;
	}
}

/*
faq
*/
.p-subsidy-faq {
	margin: 8rem 0;
}
.p-subsidy-faq .list ul > li {
	margin-bottom: 2rem;
	border: 1px solid #1E1E1E;
}
.p-subsidy-faq .list .question {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 7rem 1rem 1rem;
	width: 100%;
	text-align: left;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.7;
}
.p-subsidy-faq .list .question i {
	position: absolute;
	top: 50%;
	right: 2.5rem;
	display: block;
	margin-top: -1.2rem;
	width: 2.4rem;
	height: 2.4rem;
}
.p-subsidy-faq .list .question i::before,
.p-subsidy-faq .list .question i::after {
	content: '';
	display: block;
	position: absolute;
	background-color: #000;
}
.p-subsidy-faq .list .question i::before {
	top: 50%;
	left: 0;
	margin-top: -0.1rem;
	width: 100%;
	height: 0.2rem;
}
.p-subsidy-faq .list .question i::after {
	top: 0;
	left: 50%;
	margin-left: -0.1rem;
	width: 0.2rem;
	height: 100%;
}
.p-subsidy-faq .list .question[aria-expanded="true"] i::after {
	content: none;
}
.p-subsidy-faq .list .question + div {
	overflow: hidden;
	height: 0;
}
.p-subsidy-faq .list .question + div[aria-hidden="false"] {
	height: auto;
}
.p-subsidy-faq .list .answer {
	display: flex;
	align-items: flex-start;
	padding: 1.8rem 7rem 2rem 1rem;
	font-size: 1.8rem;
	line-height: 1.7;
}
.p-subsidy-faq .list .question::before,
.p-subsidy-faq .list .answer::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin-right: 2rem;
	width: 4.8rem;
	height: 4.8rem;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 2rem;
	color: #fff;
}
.p-subsidy-faq .list .question::before {
	content: 'Q';
	background-color: #005EAD;
}
.p-subsidy-faq .list .answer::before {
	content: 'A';
	margin-top: -0.8rem;
	background-color: #F9730D;
}

@media screen and (max-width: 768px) {
	.p-subsidy-faq {
		margin: 5rem 0;
	}
	.p-subsidy-faq .list ul > li {
		margin-bottom: 1.5rem;
	}
	.p-subsidy-faq .list .question {
		align-items: flex-start;
		padding: 1rem 5rem 1rem 1rem;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.p-subsidy-faq .list .question i {
		right: 1.5rem;
		margin-top: -1rem;
		width: 2rem;
		height: 2rem;
	}
	.p-subsidy-faq .list .answer {
		padding: 1rem 1.5rem 2rem 1rem;
		font-size: 1.5rem;
	}
	.p-subsidy-faq .list .question::before,
	.p-subsidy-faq .list .answer::before {
		margin-right: 1rem;
		width: 4.8rem;
		height: 4.8rem;
		font-family: "Inter", sans-serif;
		font-weight: 500;
		font-size: 2rem;
		color: #fff;
	}
	.p-subsidy-faq .list .answer::before {
		margin-top: 0.5rem;
	}
}

/*
foot
*/
.p-subsidy-foot {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10rem;
}
.p-subsidy-foot a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34rem;
	height: 7.2rem;
	background-color: #2134B3;
	border: 1px solid #2134B3;
	font-weight: 500;
	font-size: 1.6rem;
	color: #FFF;
}
@media (any-hover: hover) {
	.p-subsidy-foot a {
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	.p-subsidy-foot a:hover {
		background-color: #fff;
		color: #001495;
	}
}
@media screen and (max-width: 768px) {
	.p-subsidy-foot {
		margin-bottom: 6rem;
		padding: 0 2rem;
	}
	.p-subsidy-foot a {
		width: 100%;
	}
}

/* ==================================================

	[ privacy policy ]

*/
.p-privacy-poricy {
	padding: 10rem 0;
	font-size: 1.8rem;
}
.p-privacy-poricy .info {
	text-align: right;
	margin-bottom: 5rem;
}
.p-privacy-poricy .lead {
	margin-bottom: 6rem;
}
.p-privacy-poricy .block {
	margin-bottom: 4rem;
	font-size: 1.8rem;
	line-height: 1.7;
}
.p-privacy-poricy .block:last-child {
	margin-bottom: 0;
}
.p-privacy-poricy .title {
	margin-bottom: 2rem;
	padding-left: 2rem;
	border-left: 0.6rem solid #005EAD;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}
.p-privacy-poricy a {
	text-decoration: underline;
	color: #004D9E;
}

@media screen and (max-width: 768px) {
	.p-privacy-poricy {
		padding: 4rem 0;
		font-size: 1.4rem;
	}
	.p-privacy-poricy .info {
		margin-bottom: 2rem;
	}
	.p-privacy-poricy .lead {
		margin-bottom: 4rem;
	}
	.p-privacy-poricy .block {
		margin-bottom: 4rem;
		font-size: 1.4rem;
	}
	.p-privacy-poricy .title {
		margin-bottom: 1.5rem;
		padding-left: 1.5rem;
		border-left-width: 0.4rem;
		font-size: 1.6rem;
	}
}

/* ==================================================

	[ cancel policy ]

*/
.p-cancel-poricy {
	padding: 10rem 0 12rem 0;
	font-size: 1.8rem;
}
.p-cancel-poricy ol {
	margin: 4rem 0;
	font-weight: 500;
	font-size: 2rem;
}
.p-cancel-poricy ol li {
	position: relative;
	padding-left: 3.2em;
}
.p-cancel-poricy ol li::before {
	content: '';
	position: absolute;
	top: 0.4em;
	bottom: 0.36em;
	left: 0;
	display: block;
	width: 0.6rem;
	background-color: #005EAD;
}
.p-cancel-poricy ol li:not(:last-child) {
	margin-bottom: 2.5rem;
}
.p-cancel-poricy ol li i {
	position: absolute;
	top: 0;
	left: 1.6em;
}
.p-cancel-poricy ol li em {
	padding: 0 0.3rem;
	font-weight: 700;
	color: #005EAD;
}
@media screen and (max-width: 768px) {
	.p-cancel-poricy {
		padding: 4rem 0 5rem 0;
		font-size: 1.4rem;
	}
	.p-cancel-poricy ol {
		margin: 3rem 0;
		font-size: 1.6rem;
	}
	.p-cancel-poricy ol li {
		padding-left: 2.8em;
	}
	.p-cancel-poricy ol li::before {
		width: 0.4rem;
	}
	.p-cancel-poricy ol li i {
		left: 1.2em;
	}
}

/* ==================================================

	[ cancel policy ]

*/
.p-training-services-agreement-body {
	padding: 10rem 0 12rem 0;
	font-size: 1.8rem;
}
.p-training-services-agreement-body .block {
	margin: 2em 0;
}
.p-training-services-agreement-body .block .indent {
	text-indent: 1em;
}
.p-training-services-agreement-body .block .num {
	display: inline-block;
	min-width: 1.2em;
	text-align: right;
}
.p-training-services-agreement-body .block .indent-num1 > li {
	position: relative;
	padding-left: 1em;
}
.p-training-services-agreement-body .block .indent-num1 > li > i {
	position: absolute;
	top: 0;
	left: 0;
}
.p-training-services-agreement-body .block .indent-num2 > li {
	position: relative;
	padding-left: 1.5em;
}
.p-training-services-agreement-body .block .indent-num2 > li > i {
	position: absolute;
	top: 0;
	left: 0;
}
.p-training-services-agreement-body .foot {
	text-align: right;
}
@media screen and (max-width: 768px) {
	.p-training-services-agreement-body {
		padding: 4rem 0 5rem 0;
		font-size: 1.4rem;
	}
	.p-training-services-agreement-body h2 {
		margin-bottom: 0.3em;
		font-size: 1.6rem;
	}
}

/* ==================================================

	[ Animation ]

*/
/* ===== Fade In Animation ===== */
.fade-in {
	opacity: 0 !important;
	transform: translateY(30px) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.8s !important;
	visibility: hidden !important;
}
.fade-in.show {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	visibility: visible !important;
}

.fade-in-delay-1 {
	transition-delay: 0.1s;
}
.fade-in-delay-2 {
	transition-delay: 0.2s;
}
.fade-in-delay-3 {
	transition-delay: 0.3s;
}
.fade-in-delay-4 {
	transition-delay: 0.4s;
}

/* 左からフェードイン */
.fade-in-left {
	opacity: 0 !important;
	transform: translateX(-40px) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.8s !important;
	visibility: hidden !important;
}
.fade-in-left.show {
	opacity: 1 !important;
	transform: translateX(0) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	visibility: visible !important;
}

/* 右からフェードイン */
.fade-in-right {
	opacity: 0 !important;
	transform: translateX(40px) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.8s !important;
	visibility: hidden !important;
}
.fade-in-right.show {
	opacity: 1 !important;
	transform: translateX(0) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	visibility: visible !important;
}

/* スケールアニメーション */
.fade-in-scale {
	opacity: 0 !important;
	transform: scale(0.8) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.8s !important;
	visibility: hidden !important;
}
.fade-in-scale.show {
	opacity: 1 !important;
	transform: scale(1) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	visibility: visible !important;
}

/* ローテーションアニメーション */
.fade-in-rotate {
	opacity: 0 !important;
	transform: rotate(-3deg) scale(0.9) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.8s !important;
	visibility: hidden !important;
}
.fade-in-rotate.show {
	opacity: 1 !important;
	transform: rotate(0deg) scale(1) !important;
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	visibility: visible !important;
}

/* アニメーション前の初期状態でちらつきを防ぐ */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale,
.fade-in-rotate {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: opacity, transform, visibility;
}

/* アニメーション完了後はwill-changeを削除 */
.fade-in.show,
.fade-in-left.show,
.fade-in-right.show,
.fade-in-scale.show,
.fade-in-rotate.show {
	will-change: auto;
}

/* ホバー効果を追加 */
@media (any-hover: hover) {
	.fade-in.show:hover,
	.fade-in-left.show:hover,
	.fade-in-right.show:hover {
		transform: translateY(-2px);
		transition: transform 0.3s ease;
	}
}

/* ボタン要素のアニメーション */
.btn.fade-in {
	transform: translateY(20px) scale(0.95);
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.fade-in.show {
	transform: translateY(0) scale(1);
}