@charset "UTF-8";

@font-face {
  font-family: "Shippori Antique";
  src: url("../fonts/ShipporiAntique-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-Italic-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
button,
div {
  -webkit-tap-highlight-color: transparent;
}

:root {
	--black: #000;
    --blue: #0658a0;
    --p_blue: #1A3987;
    --white: #fff;
    --orange: #E65B01;
	--grey: #3A3A3A;
	--box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	--font-base: "Shippori Antique", sans-serif;
	--font-heading: "Google Sans", sans-serif;
	--mv-bg: url("../img/common/mv_bg.webp");
	--mv-bg-sp: url("../img/common/mv_bg-sp.webp");
	--grada-bg: url("../img/top/grada_bg.webp");
	--gd-ico: url("../img/common/gd-icon.webp");
	--h-ico: url("../img/common/h-icon.webp");
	--space-section-pc: 6.75rem;
	--space-section-sp: 3.75rem;
	--site-padding-pc: 2.5rem;
	--site-padding-sp: min(5.208vw, 2.5rem);
	--section-img-margin: 4rem auto;
	--section-img-margin-top: 4rem auto 0;
}

/* -------------------------------------
// 共通
------------------------------------- */
html {
    font-size: 100%;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-weight: 400;
    color: var(--black);
	-webkit-font-smoothing: antialiased;
    min-height: 100vh;
    font-size: 1rem;
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: 0.7;
  }
}

[id] {
	scroll-margin-top: 120px;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }
}

.bg {
    padding-inline: var(--site-padding-pc);
}

.l-container {
    max-width: 1260px;
    margin-inline: auto;
    position: relative;
    z-index: +2;
}

.section-box {
    background: var(--white);
    border-radius: 32px;
    padding: 6.25rem 5rem;
}

@media only screen and (max-width: 768px) {
    .bg {
        padding-inline: var(--site-padding-sp);
    }

    .section-box {
        padding: 4rem min(7.292vw, 3.5rem);
    }
}

.page {
    position: relative;
}


.page__bg {
    position: fixed;
    inset: 0;
    background: url("../img/top/bg.webp") center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.section-heading {
    margin-bottom: 2.3rem;
}

.section-heading__sub {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1.625rem;
}

.section-heading__title {
	font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
	font-weight: 700;
    margin-bottom: 1rem;
    background-image: var(--grada-bg);
    background-size: cover;
    background-position: center;
    background-size: 140%;
    background-position: 100% 37%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
}

.section-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-caption::before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.section__text {
    font-size: 1.125rem;
}

@media only screen and (max-width: 768px) {
    .section-heading__sub {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    .section-heading__title {
        font-size: clamp(2.5rem, 6vw, 6rem);
    }

    .section-subtitle {
        font-size: clamp(1.25rem, 4.5vw, 3.875rem);
    }

    .section-caption {
        font-size: clamp(1rem, 2.5vw, 1.55rem);
        gap: 6px;
    }

    .section-caption::before {
        width: clamp(1rem, 2.5vw, 1.55rem);
        height: clamp(1rem, 2.5vw, 1.55rem);
    }

    .section__text {
        font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    }
}

/* -------------------------------------
// アニメーション
------------------------------------- */
.js-fadeup {
    opacity: 0;
}

.parallax-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: +2;
}

.parallax-bg__layer {
    position: absolute;
    top: 20%;
    left: -3%;
    width: 103%;
    height: 200%;
    background: url("../img/top/parallax-bg.svg") repeat;
    background-size: 100% auto;
    opacity: 0.6;
    transform: translateZ(0);
    will-change: transform;
}

.js-reveal {
    position: relative;
    overflow: hidden;
}

.js-reveal__cover {
    position: absolute;
    inset: 0;
    background: var(--blue);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: bottom;
}

.js-reveal img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
}

/* -------------------------------------
// HEADER
------------------------------------- */
header {
    position: relative;
    z-index: 1;
}

.page-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1730px;
	min-width: 1260px;
	width: clamp(2.5rem, 89.58vw, 1730px);
	z-index: 10;
	height: 90px;
	margin-inline: auto;
	background: var(--white);
	z-index: 100;

	.header__nav {
		display: flex;
		align-items: center;
		width: 100%;
		height: 90px;
		padding-left: clamp(5px, 2vw, 2rem);
		box-sizing: border-box;

		&.nav-sp {
			display: none;
		}
	}

	.header__logo {
		flex: 1 1 0;
		max-width: 360px;
		width: auto;
		background: var(--white);
		display: grid;
		place-items: center;
		min-width: 0;

		img {
			width: 100%;
			height: auto;
		}
	}

	.header__main-nav {
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		flex: 1 1 0;
		min-width: 0;
	}

	.header__list {
		position: static;
		display: flex;
		justify-content: center;
		align-items: center;
		list-style: none;
		flex: 1 4 0;
		gap: 0 24px;
		max-width: 370px;
		min-width: 0;
		height: 100%;
		background: var(--grada-bg) center top / cover no-repeat;
		padding: 0;
	}

	.header__item:nth-child(1) {
		border-right: 3px solid var(--white);
		padding-right: clamp(8px, 2vw, 53px);
		margin-right: 5px;
	}

	.header__link {
		text-decoration: none;
		color: var(--white);
	}

}

.nav-link {
	font-family: var(--font-heading);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: clamp(0.8rem, 1.2vw, 1.5rem);
	line-height: 1;
	white-space: nowrap;

	span {
		font-family: var(--font-base);
		font-size: clamp(0.625rem, 1.25vw, 0.75rem);
		font-weight: normal;
	}
}

@media only screen and (max-width: 1495px) {
	.page-header {
		min-width: initial;
		width: calc(100% - 5rem);
	}
}

.header__main-nav--item {
	font-family: var(--font-heading);
	font-size: clamp(0.8rem, 1.2vw, 1.5rem);
	font-weight: 700;
	position: relative;

	&.open > .dropdown {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	&:hover, &.open > .nav-link {
		background: var(--white);
	}
}

@media only screen and (max-width: 1730px) {
	.page-header .header__list {
		max-width: 280px;
	}
}

button.nav-link {
	background: none;
}

@media (hover: hover) and (pointer: fine) {
	button.nav-link:hover {
		color: var(--p_blue);

		span {
			color: var(--black);
		}
	}
}

.dropdown {
	position: absolute;
	top: calc(100% + 30px);
	left: 0;
	background: #FFFFFFD9;
	border-radius: 15px;
	padding: 1rem;
	min-width: 180px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 1000;
}

.dropdown-item {
	position: relative;
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 1.25rem;
	line-height: 1;
	text-decoration: none;
	transition: background 0.12s;
	cursor: pointer;
	display: flex;
	flex-direction: column;

	&::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0.45em;
		width: 0.8125em;
		height: 0.8125em;
		background: var(--p_blue);
		border-radius: 50%;
	}
}

.dropdown-item span{
	font-family: var(--font-base);
	padding: 0;
	font-size: 0.5em;
	font-weight: normal;
}
.drawer {
	display: none;
}

@media only screen and (max-width: 1200px) {
	.page-header .header__logo {
		max-width: 300px;
	}

	.page-header .header__list {
		max-width: 160px;
		gap: 0 5px;
	}

	.page-header .header__item:nth-child(1) {
		padding-right: 5px;
		margin-right: 0;
	}
}

@media only screen and (max-width: 1024px) {
	.page-header {
		top: 0;
		height: 90px;
		width: 100%;

		.header__nav.nav-pc {
			display: none;
		}

		.header__nav.nav-sp {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: clamp(1rem, 1.2vw, 3rem);
			width: 100%;
			height: 90px;
			padding-block: clamp(10px, 8vw, 1rem);
			padding-inline: var(--site-padding-sp);
			box-sizing: border-box;
		}

		.header__logo {
			max-width: 227px;
		}

		.header__list {
			max-width: 320px;
			gap: 0;
		}

		.header__item {
			flex: 1;
			text-align: center;
			line-height: 100%;

			&:nth-child(1) {
				padding: 0;
				margin: 0;
			}
		}

		.header__link {
			font-size: clamp(0.7rem, 1.2vw, 1.3rem);
			line-height: 1.2;
		}
	}

	.nav-sp__right {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-left: auto;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 12px;
		width: 56px;
		height: 36px;
		background: none;
		border: none;
		cursor: pointer;
		flex-shrink: 0;

		&.is-open .hamburger__line:nth-child(1) {
			transform: translateY(7px) rotate(45deg);
		}

		&.is-open .hamburger__line:nth-child(2) {
			opacity: 0;
			transform: scaleX(0);
		}

		&.is-open .hamburger__line:nth-child(3) {
			transform: translateY(-22px) rotate(-45deg);
		}
	}

	.hamburger__line {
		display: block;
		width: 100%;
		height: 4px;
		background: var(--black);
		transition: transform 0.3s ease, opacity 0.3s ease;
		transform-origin: center;

		&:nth-child(2) {
			width: 70%;
		}
	}

	.nav-sp.is-open .header__list {
		opacity: 0;
		pointer-events: none;
	}

	.drawer {
		display: block;
		position: fixed;
		top: 90px;
		left: 0;
		width: 100%;
		height: calc(100dvh - 110px);
		overflow-y: auto;
		background: var(--white);
		z-index: 9;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, transform 0.25s ease;

		&.is-open {
			opacity: 1;
			pointer-events: auto;
			transform: translateY(0);
		}
	}

	.drawer__group {
		padding-top: 4rem;
	}

	.drawer__heading {
		font-family: var(--font-heading);
		font-size: clamp(2rem, 6vw, 3.625rem);
		line-height: 1;
		font-weight: 700;
		color: var(--p_blue);
		margin-bottom: 1rem;
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
		.drawer__heading span{
		font-family: var(--font-base);
		font-size: clamp(0.8rem, 3vw, 1.5rem);
		line-height: 1;
		font-weight: normal;
		color: var(--black);
	}

	.drawer__list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

	.drawer__link {
		display: block;
		position: relative;
		font-size: clamp(0.8rem, 3vw, 1.5rem);
		text-decoration: none;

		span {
			font-family: var(--font-heading);
			font-size: clamp(1rem, 4vw, 2.375rem);
			font-weight: 700;
		}

		&::after {
			content: '';
			position: absolute;
			bottom: 0.2em;
			width: 0.8em;
			height: 0.8em;
			border-top: 3px solid var(--grey);
			border-right: 3px solid var(--grey);
			transform: rotate(45deg);
			margin-left: 0.5em;
		}
	}

	.drawer__footer {
		display: flex;
		justify-content: center;
		align-items: center;
		list-style: none;
		width: 100%;
		height: 160px;
		background: var(--grada-bg) center top / cover no-repeat;
		padding: 0;
		margin-top: 5rem;
		height: 100px;
	}

	.drawer__footer-item {
		position: relative;
		flex: 1;
		text-align: center;
		color: var(--white);
		font-family: var(--font-heading);
		font-size: clamp(20px, 4.6875vw, 36px);
		font-style: italic;
		white-space: nowrap;

		&:first-child::after {
			content: "";
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			width: 3px;
			height: 110px;
			background: var(--white);
		}
	}

	.drawer__footer-link {
		display: block;
		width: 100%;
		height: 100%;
		line-height: 100%;
	}
}

@media only screen and (max-width: 480px) {
	.page-header {
		top: 0;
		height: 60px;

		.header__nav.nav-sp {
			gap: 10px;
			height: 60px;
			padding-block: 10px;
		}

		.header__logo {

			max-width: 200px;
		}

		.header__item:nth-child(1) {
			border-right: 2px solid var(--white);
		}
	}

	.hamburger {
		gap: 8px;
		width: 48px;

		&.is-open .hamburger__line:nth-child(3) {
			transform: translateY(-13px) rotate(-45deg);
		}
	}

	.hamburger__line {
		height: 2px;
	}

	.drawer {
		top: 60px;
		height: calc(100dvh - 60px);
	}

	.drawer__footer-item:first-child::after {
		width: 2px;
		height: 80px;
	}
}

/* -------------------------------------
// フッター前文字
------------------------------------- */
.message__visual {
    max-width: none;
    margin-top: 22rem;
    text-align: center;
    overflow: hidden;
    position: relative;
    top: 43px;
}

.message__visual img {
    width: calc(100% + 3%);
    transform: translateX(-1%);
    max-width: none;
}

@media only screen and (max-width: 768px) {
    .message__marquee {
        overflow: hidden;
        padding-top: 3.5rem;
        position: relative;
        top: 43px;
    }

    .marquee__track {
        display: flex;
    }

    .marquee__list {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-right: 15px;
        flex-shrink: 0;
    }

    .marquee__list img {
        width: 40%;
        height: auto;
        display: block;
    }
}

/* -------------------------------------
// FOOTER
------------------------------------- */
footer {
	position: relative;
	z-index: 2;
	bottom: -30px;
	padding: 6rem 20px 3rem;
	background: var(--white);
	overflow: hidden;
}

.footer_heading {
	border-bottom: 1px solid #707070;
	margin: 0 -20px 3.5rem;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer__logo {
	margin-bottom: 2.5rem;

	img {
		width: 320px;
	}
}

.footer__main-nav-wrap {
	max-width: 1680px;
	width: 100%;
	margin: 0 auto 5%;
}

.footer__main-nav {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 100px;
}

.footer__nav-category {
	padding-inline: 1.875rem 1rem;

	&:nth-child(-n + 5) {
		border-left: 1px solid #bababa;
	}
}

.footer__nav-category--sub:nth-child(6) {
	grid-column: 1;
	border-left: none;
}

.footer__nav-category--sub:nth-child(7) {
	grid-column: 2;
	border-left: none;
}

.footer__nav-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--p_blue);
	margin-bottom: 4.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;

	.footer__nav-category--sub & {
		margin-bottom: 1rem;
	}
}

.footer__nav-title.footer__nav--small{
	font-size: 2.5rem;
}

.footer__nav-title span{
	font-family: var(--font-base);
	font-size: 1.25rem;
	font-weight: normal;
	color: var(--black);
}

.footer__nav-list {
	width: 100%;

	li + li {
		margin-top: 2.75rem;
	}
}

.footer__nav-list--link {
	font-size: 1.25rem;
	line-height: 1.2;

	span {
		font-family: var(--font-heading);
		font-size: 2rem;
		font-weight: 700;
	}
}

.footer__nav {
	margin-bottom: 5rem;
	width: 100%;
}

.footer__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 36px;
}

.footer__link {
	text-decoration: underline;
	font-size: 1.125rem;
}

.footer_mail {
	text-align: center;
	font-size: 0.8125rem;
}

.footer_mail--link {
	display: inline;
	text-decoration: underline;
}

.footer__copy {
	text-align: center;
	font-size: 0.875rem;
	margin-top: 1rem;
}

@media (min-width: 1501px) {
	.footer__nav-category--sub:nth-child(6) {
		grid-column: 1;
	}

	.footer__nav-category--sub:nth-child(7) {
		grid-column: 2;
	}
}

@media (max-width: 1500px) {
	.footer__main-nav {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer__nav-category {
		padding-inline: 1rem;
	}

	.footer__nav-title {
		font-size: clamp(2rem, calc(0.8571rem + 2.3810vw), 3rem);
	}
	.footer__nav-title span{
	font-size: clamp(0.825rem,
  calc(0.339rem + 1.013vw),
  1.25rem
);
}

	.footer__nav-list--link {
		font-size: 1rem;

		span {
			font-size: 1.5rem;
		}
	}
}

@media only screen and (max-width: 768px) {
	footer {
		padding: 3.5rem min(2.083vw, 1rem);
	}

	.footer__logo {
		margin-bottom: 1rem;
	}

	.footer__list {
		gap: min(3.125vw, 1.5rem);
	}

	.footer__link {
		font-size: clamp(0.625rem, 2vw, 1.125rem);
	}
}

/* -------------------------------------
// 下層ページ共通
------------------------------------- */
.page-mv {
	position: relative;
	aspect-ratio: 1920 / 770;
	width: 100%;
	height: auto;
	padding-top: clamp(160px, 13.5417vw, 260px);
	z-index: 2;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: -100vh;
		background-image: var(--mv-bg);
		background-size: 66%;
		background-position: left top;
		background-repeat: no-repeat;
	}
}

.page-mv .mv__content {
	position: relative;
	z-index: 100;
	width: 100%;
	padding-inline: 95px;
	margin-inline: auto;
	color: var(--white);
}

@media only screen and (max-width: 1340px) {
	.page-mv .mv__content {
		padding-inline: 40px;
	}
}

@media only screen and (max-width: 768px) {
	.page-mv {
		aspect-ratio: 768 / 445;
		padding-top: clamp(120px, 27.34375vw, 210px);

		&::before {
			background-image: var(--mv-bg-sp);
			background-size: 96%;
		}
	}

	.page-mv .mv__content {
		padding-inline: var(--site-padding-sp);
	}
}

.c-heading {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.c-heading__ja {
	display: flex;
	align-items: center;
	gap: 0.52em;
	font-size: clamp(1.5rem, calc(0.5833rem + 1.9097vw), 2.875rem);
	line-height: 1;
	padding-left: 20px;

	&::before {
		content: "";
		width: 0.85em;
		height: 0.85em;
		background: var(--white);
		border-radius: 100%;
		translate: 0 4px;
	}
}

.c-heading__en {
	font-family: var(--font-heading);
	font-size: clamp(6rem, calc(-0.75rem + 14.0625vw), 13.75rem);
	font-weight: 700;
	line-height: 1;
}

.page-tag {
	position: absolute;
	top: clamp(180px, 11.4583vw, 220px);
	right: -0.5em;
	font-family: var(--font-heading);
	font-size: 2.1875rem;
	line-height: 1;
	font-weight: 700;
	display: inline-block;
	transform: rotate(90deg) translateY(-150px);
}

@media (min-width: 1730px) {
	.page-tag {
		right: calc((100vw - 1730px) / 2);
		transform: rotate(90deg) translateY(-155px);
	}
}

@media only screen and (max-width: 768px) {
	.c-heading {
		gap: 0.5rem;
	}

	.c-heading__ja {
		font-size: clamp(0.9rem, 3.52vw, 1.6875rem);
		padding-left: 5px;
	}

	.c-heading__en {
		font-size: clamp(2.5rem, 13.17vw, 6.1875rem);
	}

	.page-tag {
		top: 30px;
		right: 85px;
		font-size: 0.9rem;
	}
}

.reveal-h2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-block: 1rem 3.5rem;
	font-size: clamp(2.2rem, 4.583vw, 2.875rem);
	line-height: 1;
}

.reveal-row {
	position: relative;
	display: inline-block;
	padding: 0.5rem 0.2rem;
	overflow: hidden;
}

.reveal-bg {
	position: absolute;
	inset: 0;
	display: block;
	width: 0%;
	transform-origin: left center;
	background-image: var(--grada-bg);
	background-size: cover;
	background-position: left 25%;
	z-index: 0;
}

.reveal-overlay {
	position: absolute;
	inset: 0;
	display: block;
	z-index: 1;
}

.reveal-text {
	position: relative;
	display: block;
	z-index: 2;
	color: var(--white);
	transition: color 0.3s ease 0.2s;
	white-space: nowrap;
}

@media only screen and (max-width: 768px) {
	.reveal-h2 {
		gap: 4px;
		margin-block: 0.8rem 6rem;
		font-size: clamp(1rem, 5.47vw, 2.625rem);
	}
}

.div-heading__sub {
	font-family: var(--font-heading);
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1;
	background-image: url("../img/common/grada_bg-s.webp");
	background-size: 50%;
	background-position: 62% 52%;
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.div-heading__title {
	font-size: 2.25rem;
	line-height: 1.5;
	color: var(--p_blue);
	margin-block: 0 4rem;
}

.section__text {
	font-size: 1.25rem;
	line-height: 3rem;

	span {
		color: var(--orange);
	}
}

.section__text--large {
	font-size: 1.5rem;
}

.section__text--middle {
	font-size: 1.5rem;
}

.section__image {
	margin: 4rem auto 6rem;

	img {
		max-width: 1082px;
		width: 100%;
		height: auto;
	}
}

.c-image-button {
	background-image: var(--grada-bg);
	background-size: cover;
	background-position: 75% 75%;
	background-repeat: no-repeat;
	border-radius: 100vmax;
	max-width: 33rem;
	min-height: 7.125rem;
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-inline: auto;
	transition: background-color 0.3s;

	svg {
		position: absolute;
		right: 40px;
		width: 2rem;
		height: 2rem;
		color: var(--white);
	}
}

@media (hover: hover) and (pointer: fine) {
	.c-image-button:hover {
		opacity: 1;
		background-image: none;
		background-color: var(--p_blue);
	}
}

.c-image-button__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.c-image-button__text--large {
	font-size: 1.75rem;
}

.c-image-button__text--small {
	font-size: 1.25rem;
}

.c-image-button__text--medium {
	font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
		.div-heading__sub {
		font-size: clamp(0.9rem, 2.42vw, 1.16rem);
	}

	.div-heading__title {
		font-size: clamp(1.25rem, 3.39vw, 2.25rem);
		margin-block: 0 3rem;
	}

	.section__text {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
		line-height: 1.7;
	}

	.section__text--large {
		font-size: clamp(0.875rem, 3.5vw, 1.75rem);
	}

	.section__text--middle {
		font-size: clamp(0.85rem, 3.5vw, 1.5rem);
	}

	.section__image {
		margin: 4rem auto 3.75rem;
	}

	.c-image-button {
		width: stretch;
		min-width: initial;
		min-height: clamp(5rem, 14.3229vw, 6.875rem);

		svg {
			position: absolute;
			right: 10px;
			width: 1rem;
			height: 1rem;
		}
	}
	.c-image-button__text--large {
		font-size: clamp(1rem, 3.91vw, 1.75rem);
	}

	.c-image-button__text--small {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}

	.c-image-button__text--medium {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}
}

.c-frame {
	position: relative;
	width: 100%;
	border: 1px solid var(--grey);

	&::before {
		content: "";
		position: absolute;
		top: -1px;
		left: -1px;
		width: 79px;
		height: 79px;
		background: url("../img/common/corner.webp") no-repeat;
		background-size: contain;
	}
}

/* -------------------------------------
// NEWS＆INTERNSHIP Single　ページネーション
------------------------------------- */
.post-pagination {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 280px;
	width: 100%;
	margin: 4rem auto 0;

	a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
		color: var(--white);

		&:not([href]) {
			pointer-events: none;
			opacity: 0;
		}
	}

	svg {
		width: 3rem;
		height: 3rem;
		color: var(--white);
	}

	span {
		font-family: var(--font-heading);
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1;
	}
}

@media only screen and (max-width: 768px) {
	.post-pagination {
		margin: 2.5rem auto 0;

		svg {
			width: 2.5rem;
			height: 2.5rem;
		}

		span {

			font-size: 1rem;
		}
	}
}

/* -------------------------------------
// NEWS＆INTERNSHIP Archive　ページネーション
------------------------------------- */
.archive-pagination {
	display: flex;
	align-items: stretch;
	justify-content: center;
	max-width: 520px;
	width: 100%;
	margin: 4.5rem auto 0;

	> a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-decoration: none;
		color: var(--p_blue);
		padding-inline: 1.25rem;

		&:not([href]) {
			pointer-events: none;
			opacity: 0;
		}

		span {
			font-family: var(--font-heading);
			font-size: 1.5rem;
			font-weight: 700;
		}

		svg {
			width: 3rem;
			height: 3rem;
			color: var(--p_blue);
		}
	}
}

.archive-pagination__numbers {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: nowrap;

	a, span.current {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		padding: 0.5rem 0.5rem 1.2rem;
		position: relative;
		font-family: var(--font-heading);
		font-weight: 700;
		color: var(--p_blue);
		text-decoration: none;
		min-width: 2.5rem;
	}

	.num {
		font-size: 2.5rem;
		line-height: 1;
		display: block;
	}

	.line {
		display: block;
		width: 60%;
		height: 4px;
		background: transparent;

		.current & {
			background: var(--p_blue);
		}
	}
}

.pagination-disabled {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 2.5rem 1.25rem;
	opacity: 0;
	pointer-events: none;
}

@media only screen and (max-width: 768px) {
	.archive-pagination {
		max-width: 100%;
		margin: 1rem 0 0;

		> a {
			gap: 5px;
			padding-inline: 0;

			span {
				font-size: 0.8125rem;
				padding-inline: 0;
				flex-shrink: 0;
			}

			svg {
				width: 2rem;
				height: 2rem;
			}
		}
	}

	.archive-pagination__numbers a,
	.archive-pagination__numbers span.current {
		padding: 1rem 0;
		min-width: 1.5rem;
	}

	.archive-pagination__numbers .num {
		font-size: 1rem;
	}

	.archive-pagination__numbers .line {
		height: 2px;
	}
}