/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	background: #f0f0f0;
}
/* -----------------------------------------------
= page-title
----------------------------------------------- */
.page-title {
	margin: 0 0 35px 20px;
}
.page-title.js-inview {
	transform: translateY(0);
}
.page-title .set {
	display: flex;
	align-items: end;
	gap: 0 20px;
	padding: 17px 0 0;
}
.page-title .en {
	font-family: var(--josefin);
	font-size: calc(3rem / 1.6);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .2em;
}
.page-title h1 {
	margin-bottom: 10px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .2em;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-title {
	margin: 0 0 90px 220px;
}
.page-title .set {
	padding: 60px 0 15px;
}
.page-title .en {
	font-size: calc(6rem / 1.6);
}
.page-title h1 {
	margin-bottom: 20px;
	font-size: calc(2.4rem / 1.6);
}
.page-title img {
	height: calc(520 / 1500 * 100vw);
	max-height: 520px;
	object-fit: cover;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.page-title {
	margin-left: 80px;
}
}/* @media */
/* -----------------------------------------------
= page-link
----------------------------------------------- */
.page-link {
	padding-inline: 20px;
}
.page-link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px 16px;
}
.page-link li {
	width: calc(50% - 8px);
}
.page-link a {
	display: block;
	position: relative;
	min-height: 46px;
	padding: 5px;
	background: #fff;
	text-align: center;
}
.page-link a::before,
.page-link a::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.page-link a::before {
	bottom: -12px;
	width: 20px;
	height: 16px;
	background: #fff;
}
.page-link a::after {
	bottom: -6px;
	width: 8px;
	height: 6px;
	background: #5e5e5e;
}
.page-link span {
	display: block;
}
.page-link span:first-child {
	color: var(--red);
	font-family: var(--josefin);
	font-size: calc(1.1rem / 1.6);
	letter-spacing: .02em;
}
.page-link span:last-child {
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
	line-height: calc(30 / 24);
}
@media print, screen and (min-width: 768px) {/* PC */
.page-link {
	max-width: 1060px;
	margin: 0 auto 150px;
}
.page-link ul {
	gap: 28px 50px;
}
.page-link li {
	width: 320px;
}
.page-link a {
	min-height: 70px;
}
.page-link a::before {
	bottom: -20px;
	width: 30px;
	height: 20px;
}
.page-link a::after {
	bottom: -12px;
	width: 16px;
	height: 12px;
}
.page-link span:first-child {
	font-size: calc(2rem / 1.6);
}
.page-link span:last-child {
	font-size: calc(2rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
@media print, screen and (min-width: 768px) {/* PC */
.contents {
	display: flex;
	overflow: clip;
}
}/* @media */
/* -----------------------------------------------
= side
----------------------------------------------- */
.side {
	position: sticky;
	top: calc(100svh - 44px);
	z-index: 5;
}
.btn-side-nav {
	position: relative;
	width: 124px;
	height: 44px;
	padding-left: 44px;
	color: var(--red);
	background: #fff;
	border-radius: 0 5px 5px 0;
	font-size: 16px;
}
.btn-side-nav::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	width: 16px;
	height: 100%;
	background: url(../../img/shared/icon_circle_arrow_red.svg) no-repeat 50% / 100% auto;
}
.side-nav {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 300px;
	max-height: calc(100svh - 44px);
	overflow-y: auto;
	overscroll-behavior: contain;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0 5px 5px 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.side-nav.is-open {
	opacity: 1;
	pointer-events: auto;
}
.btn-side-nav-close {
	position: absolute;
	top: 6px;
	right: 6px;
	color: #333;
	font-size: 30px;
	line-height: 1;
}
.side-nav p {
	margin-bottom: 5px;
	padding: 10px 10px 0;
	color: var(--red);
	font-size: calc(1.4rem / 1.6);
	font-family: var(--josefin);
	font-weight: 600;
}
.side-nav ul {
	margin: 0 10px 10px;
}
.side-nav li a {
	display: inline-block;
	position: relative;
	padding-left: 16px;
}
.side-nav li a.is-active {
	color: var(--red);
}
.side-nav li a::before,
.side-nav li a::after {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	border-radius: 50%;
}
.side-nav li a::after {
	width: 6px;
	height: 6px;
	margin: 3px;
	background: #f48f97;
}
.side-nav li a.is-active::before {
	width: 10px;
	height: 10px;
	border: 1px solid var(--red);
}
.side-nav li a.is-active::after {
	background: var(--red);
}
.side-nav li {
	padding-block: 5px;
	font-size: calc(1.2rem / 1.6);
	line-height: 1.4;
}
.side-nav li span {
	display: block;
}
@media print, screen and (min-width: 768px) {/* PC */
.side {
	position: static;
	width: 98px;
}
.side .sticky {
	position: sticky;
	top: 0;
	z-index: 5;
	height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	margin-bottom: 80px;
}
.btn-side-nav {
	z-index: 1;
	width: 100px;
	height: 48px;
	margin-left: -26px;
	padding-left: 40px;
	border-radius: 10px 0 0 0;
	transform: rotate(90deg);
}
.btn-side-nav[aria-expanded="true"] {
	z-index: -1;
}
.btn-side-nav::before {
	top: 0;
	left: 10px;
	width: 20px;
	transform: rotate(-90deg);
}
.side-nav {
	top: calc(50% - 50px);
	bottom: auto;
	max-width: none;
	max-height: calc(100vh - 130px);
	border-radius: 0 10px 10px 0;
	opacity: 1;
	pointer-events: auto;
}
.side-nav.is-open {
	width: 172px;
}
.btn-side-nav-close {
	display: none;
	top: 12px;
	right: 12px;
	font-size: 30px;
}
.btn-side-nav-close {
	display: none;
	top: 12px;
	right: 12px;
	font-size: 30px;
}
.side-nav.is-open .btn-side-nav-close {
	display: block;
}
.side-nav p {
	display: none;
	margin-bottom: 5px;
	padding: 15px 20px 0;
	font-size: calc(1.6rem / 1.6);
}
.side-nav.is-open p {
	display: block;
}
.side-nav ul {
	margin: 80px 10px 20px 18px;
}
.side-nav.is-open ul {
	margin-top: 0;
}
.side-nav li a {
	padding-left: 20px;
}
.side-nav li a::before,
.side-nav li a::after {
	top: .3em;
}
.side-nav.is-open li {
	padding-block: 10px;
}
.side-nav li span {
	display: none;
}
.side-nav.is-open li span {
	display: block;
}
}/* @media */
/* -----------------------------------------------
= chapter
----------------------------------------------- */
.chapter {
	padding-bottom: 50px;
}
@media print, screen and (min-width: 768px) {/* PC */
.chapter {
	flex: 1;
	padding-bottom: 0;
}
}/* @media */
/* -----------------------------------------------
= section
----------------------------------------------- */
.section {
	scroll-margin-top: 44px;
	margin: 0 20px 50px;
}
.section .en {
	color: var(--red);
	font-family: var(--josefin);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
}
.section h2 {
	margin-bottom: 20px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: 1.4;
}
.section h3 {
	margin-bottom: 20px;
}
.section h3 span {
	display: inline-block;
	color: #fff;
	background: linear-gradient(90deg,var(--red) 10%,#5e5e5e 20%,#5e5e5e 70%,var(--red) 80%);
	font-size: calc(2.6rem / 1.6);
	font-weight: 700;
	font-feature-settings: "palt";
	line-height: 1.3;
	letter-spacing: .04em;
}
.section h3 br + span {
	margin-left: 2.3em;
}
@media print, screen and (min-width: 768px) {/* PC */
.section {
	scroll-margin-top: 80px;
	margin: 0;
}
.section .inner {
	max-width: 1280px;
	margin-inline: auto;
}
.section .en {
	font-size: clamp(calc(1.8rem / 1.6), calc(24 / 1500 * 100vw), calc(2.4rem / 1.6));
}
.section h2 {
	font-size: clamp(calc(2rem / 1.6), calc(28 / 1500 * 100vw), calc(2.8rem / 1.6));
}
.section h3 {
	margin-bottom: 20px;
}
.section h3 span {
	padding-inline: 10px;
	font-size: min(calc(5.2rem / 1.6), calc(52 / 1500 * 100vw));
}
}/* @media */
/* -----------------------------------------------
= message
----------------------------------------------- */
.message {
	padding-top: 10px;
}
.message .img01 {
	margin-bottom: 40px;
}
.message h4,
.message p {
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	font-feature-settings: "palt";
	line-height: calc(44 / 28);
	letter-spacing: .04em;
}
.message h4,
.message p + p {
	margin-top: 1em;
}
.message ul {
	margin-block: 10px 20px;
}
.message li {
	position: relative;
	padding-left: 15px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	font-feature-settings: "palt";
	line-height: calc(44 / 32);
	letter-spacing: .04em;
}
.message li + li {
	margin-top: 1em;
}
.message li::before {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	width: 10px;
	height: 10px;
	background: #f48f97;
	border-radius: 50%;
}
.message li.em {
	padding-inline: 0;
	color: var(--red);
}
.message li.em::before {
	display: none;
}
.message li span {
	font-size: calc(1.2rem / 1.6);
}
.message .img02 {
	margin: 30px -20px 30px 0;
	text-align: right;
}
.message .img02 img {
	width: calc(613 / 750 * 100vw);
}
.message .img03 {
	width: calc(617 / 750 * 100vw);
	margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {/* PC */
.message {
	padding-block: 20px 250px;
}
.message .message-head {
	display: flex;
	gap: 0 20px;
	position: relative;
}
.message .message-head h3 {
	position: absolute;
	top: min(210px, calc(210 / 1500 * 100vw));
	left: 0;
}
.message .message-head .img01 {
	max-width: calc(773 / 1280 * 100%);
	margin-bottom: 0;
}
.message .text-wrap {
	display: flex;
	align-items: end;
}
.message .text-wrap.type01 {
	gap: 0 50px;
	padding-bottom: 150px;
}
.message .text-wrap .text {
	flex: 1;
	position: relative;
	max-width: calc(727 / 1280 * 100%);
	margin-top: calc(-140 / 1500 * 100vw);
	padding-bottom: 100px;
	background: #f0f0f0;
}
.message p,
.message ul {
	max-width: calc(727 / 1280 * 100%);
}
.message .text p,
.message .text ul {
	max-width: none;
}
.message h4,
.message p {
	font-size: calc(2rem / 1.6);
	line-height: calc(36 / 20);
}
.message ul {
	margin-block: 15px 30px;
}
.message li {
	padding-left: 30px;
	font-size: calc(2.8rem / 1.6);
	line-height: calc(40 / 28);
}
.message li::before {
	top: .25em;
	width: 20px;
	height: 20px;
}
.message li span {
	font-size: calc(2rem / 1.6);
}
.message .text-wrap .img02 {
	width: calc(511 / 1280 * 100%);
	margin: 0 0 calc(-210 / 1280 * 100%);
}
.message .text-wrap .img02 img {
	width: 100%;
}
.message .text-wrap.type02 .text {
	order: 1;
}
.message .text-wrap .img03 {
	order: 2;
	width: calc(514 / 1280 * 100%);
	margin-bottom: 0;
}
}/* @media */
/* -----------------------------------------------
= img-large
----------------------------------------------- */
@media print, screen and (min-width: 768px) {/* PC */
.img-large {
	display: block;
	margin-inline: -49px;
	text-align: center;
}
.img-large img {
	transform: translateX(-49px);
}
}/* @media */
/* -----------------------------------------------
= info
----------------------------------------------- */
.info {
	padding-top: 50px;
}
.info .block {
	padding: 12px;
	background: #fff;
}
.section.info .en {
	text-align: center;
}
.section.info h2 {
	margin-bottom: 40px;
	text-align: center;
}
.section.info h3 {
	display: inline-block;
	margin-bottom: 30px;
	padding: 1px 5px;
	color: #fff;
	background: #323232;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}
.info table {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
.info th,
.info td {
	display: block;
	font-size: calc(1.4rem / 1.6);
}
.info th {
	padding-bottom: 5px;
	border-bottom: 1px solid #ee505c;
	font-weight: 700;
	letter-spacing: .04em;
}
.info td {
	padding-block: 10px 1.5em;
}
.info td p + p {
	margin-top: 10px;
}
.info td a {
	color: var(--red);
}
.info h4 {
	margin-bottom: 10px;
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
	letter-spacing: .04em;
}
.info .attention {
	margin-bottom: 25px;
	margin-left: 1em;
	text-indent: -1em;
	color: var(--red);
	font-size: calc(1rem / 1.6);
	letter-spacing: .04em;
}
.info .target-flow {
	scroll-margin-top: 80px;
}
.info .flow .item {
	position: relative;
	margin-bottom: 20px;
	padding: 15px 10px;
	border-top: 1px solid #505050;
	border-bottom: 1px solid #505050;
}
.info .flow .item + .item {
	position: relative;
	margin-top: 42px;
}
.info .flow .item + .item::before {
	content: "";
	position: absolute;
	top: -49px;
	left: 50%;
	transform: translateX(-50%);
	width: 15px;
	height: 15px;
	background: #fff;
}
.info .flow .item + .item::after {
	content: "";
	position: absolute;
	top: -46px;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 34px;
	background: url(../../img/information/index_flow_arrow.svg) no-repeat 50% 100% / 100% auto;
}
.info .flow .item .num {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(4rem / 1.6);
	height: calc(6rem / 1.6);
	padding: .8em calc(2rem / 1.6) 0 0;
	color: #fff;
	background: #ee505c;
	font-family: var(--josefin);
	font-size: calc(.9rem / 1.6);
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	letter-spacing: .25em;
	clip-path: polygon(0 0, 100% 0,0 100%);
}
.info .flow .item .num span {
	display: block;
	font-size: calc(2.2rem / 1.6);
}
.info .flow .item .date {
	font-size: calc(1.4rem / 1.6);
	text-align: center;
	letter-spacing: .04em;
}
.info .flow .item .detail {
	position: relative;
	margin-top: 10px;
	padding-top: 10px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.info .flow .item .detail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 148px;
	height: 1px;
	background: #acacac;
}
.info .flow .item .detail span {
	display: block;
	padding-top: 10px;
	font-weight: 500;
	text-align: left;
}
.info .flow .item a {
	color: var(--red);
}
.info .note {
	font-size: calc(1rem / 1.6);
}
.info .note a {
	color: var(--red);
}
@media print, screen and (min-width: 768px) {/* PC */
.info {
	position: relative;
	z-index: 1;
	max-width: 1060px;
	margin: calc(-270 / 1500 * 100vw) auto;
	padding: 0 98px 0 0;
}
.info .block {
	padding: 40px 60px 70px;
	overflow: hidden;
}
.section.info h3 {
	padding: 1px 5px;
	font-size: calc(2.4rem / 1.6);
}
.info table {
	display: table;
	position: relative;
	margin-bottom: 100px;
}
.info table::before,
.info table::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
}
.info table::before {
	width: 100%;
	background: #acacac;
}
.info table::after {
	width: 136px;
	background: #ee505c;
}
.info th,
.info td {
	display: table-cell;
	vertical-align: top;
	font-size: calc(1.6rem / 1.6);
}
.info th {
	width: 140px;
	padding: 10px 15px 10px 0;
	text-align: justify;
	text-align-last: justify;
}
.info td {
	padding: 10px 0 10px 15px;
	border-bottom: 1px solid #acacac;
}
.info h4 {
	font-size: calc(2.4rem / 1.6);
}
.info .attention {
	margin-bottom: 55px;
	font-size: calc(1.4rem / 1.6);
}
.info .target-flow {
	scroll-margin-top: 120px;
}
.info .flow .item {
	display: flex;
	align-items: center;
	min-height: 120px;
	margin-bottom: 30px;
}
.info .flow .item + .item {
	margin-top: 55px;
}
.info .flow .item + .item::before {
	top: -69px;
	width: 30px;
	height: 30px;
}
.info .flow .item + .item::after {
	top: -66px;
	width: 7px;
	height: 51px;
}
.info .flow .item .num {
	top: -1px;
	width: calc(10rem / 1.6);
	height: calc(10rem / 1.6);
	padding: .8em calc(3rem / 1.6) 0 0;
	font-size: calc(1.4rem / 1.6);
}
.info .flow .item .num span {
	font-size: calc(3.6rem / 1.6);
}
.info .flow .item .date {
	width: calc(260 / 960 * 100%);
	margin-bottom: 0;
	padding-bottom: 0;
	padding-top: 10px;
	font-size: calc(2rem / 1.6);
	line-height: 1.2;
}
.info .flow .item .detail {
	flex: 1;
	padding-left: calc(60 / 960 * 100%);
	font-size: calc(2.4rem / 1.6);
	line-height: 1.3;
	text-align: left;
}
.info .flow .item .detail::before {
	left: 0;
	transform: translateX(0);
	width: 1px;
	height: 100%;
}
.info .flow .item .detail span {
	font-size: calc(1.6rem / 1.6);
	line-height: 1.5;
}
.info .note {
	float: right;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {/* TABLET */
.info .flow .item {
	display: block;
}
.info .flow .item .date {
	width: auto;
	text-align: center;
}
.info .flow .item .detail {
	padding-left: 0;
	text-align: center;
}
.info .flow .item .detail::before {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 148px;
	height: 1px;
}
.info .flow .item .detail span {
	text-align: center;
}
}/* @media */
/* -----------------------------------------------
= faq
----------------------------------------------- */
.faq {
	padding-top: 50px;
}
.faq .block {
	padding: 12px 12px 30px;
	background: #fff;
}
.section.faq .en {
	text-align: center;
}
.section.faq h2 {
	margin-bottom: 40px;
	text-align: center;
}
.section.faq h3 {
	display: inline-block;
	margin-bottom: 30px;
	padding: 1px 5px;
	color: #fff;
	background: #323232;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}
.faq .item {
	border-top: 1px solid #505050;
}
.faq .item + h3 {
	margin-top: 50px;
}
.faq .item button {
	display: flex;
	align-items: center;
	gap: 0 15px;
	position: relative;
	width: 100%;
	padding: 10px 40px 10px 10px;
	background: #f2f2ec;
	font-weight: 700;
}
.faq .item button::before {
	content: "";
	position: absolute;
	top: calc(50% - 7.5px);
	right: 10px;
	width: 15px;
	height: 15px;
	background: #505050;
}
.faq .item button::after {
	content: "＋";
	position: absolute;
	top: calc(50% - 7.5px);
	right: 10px;
	width: 15px;
	height: 15px;
	color: #fff;
	font-size: 15px;
	line-height: 1;
}
.faq .item button[aria-expanded="true"]::after {
	content: "－";
}
.faq .item button span:first-child {
	padding: 6px;
	color: #fff;
	background: #ee505c;
	font-size: calc(1.7rem / 1.6);
	line-height: 1;
}
.faq .item button span:last-child {
	font-size: calc(1.4rem / 1.6);
	line-height: 1.4;
}
.faq .item .answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.6s ease;
}
.faq .item .answer p {
	display: flex;
	align-items: start;
	gap: 0 15px;
	padding: 10px;
}
.faq .item .answer p span:first-child {
	padding: 6px;
	color: #ee505c;
	background: #f2f2ec;
	line-height: 1;
	font-size: calc(1.7rem / 1.6);
	font-weight: 700;
}
.faq .item .answer span:last-child {
	margin-top: .5em;
	font-size: calc(1.4rem / 1.6);
	font-weight: 500;
	line-height: 1.4;
}
.faq .item .answer p a {
	text-decoration: underline;
}
@media print, screen and (min-width: 768px) {/* PC */
.faq {
	position: relative;
	z-index: 1;
	max-width: 1060px;
	margin: calc(-270 / 1500 * 100vw) auto;
	padding: 0 98px 0 0;
}
.faq .block {
	padding: 40px 60px 70px;
	overflow: hidden;
}
.section.faq h3 {
	padding: 1px 5px;
	font-size: calc(2.4rem / 1.6);
}
.faq .item + h3 {
	margin-top: 95px;
}
.faq .item button {
	gap: 0 30px;
	padding: 30px 110px 30px 25px;
}
.faq .item button::before {
	top: calc(50% - 10px);
	right: 45px;
	width: 20px;
	height: 20px;
}
.faq .item button::after {
	top: calc(50% - 10px);
	right: 45px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}
.faq .item button span:first-child {
	padding: 9px 12px;
	font-size: calc(2.8rem / 1.6);
}
.faq .item button span:last-child {
	font-size: calc(2.4rem / 1.6);
}
.faq .item .answer p {
	gap: 0 30px;
	padding: 30px 25px;
}
.faq .item .answer p span:first-child {
	padding: 9px 12px;
	font-size: calc(2.8rem / 1.6);
}
.faq .item .answer span:last-child {
	font-size: calc(1.8rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.faq .item .answer p a:hover {
	text-decoration: none;
}
}/* @media */
