* {
	box-sizing: border-box;
}

body {
	font-family: "Prompt", "Noto Sans JP", sans-serif;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

picture {
	display: block;
	width: 100%;
	height: auto;
}

a {
	display: inline-block;
	transition-duration: 0.7s;
}

a:hover {
	opacity: 0.7;
}

.sp-only {
	display: none !important;
}

@font-face {
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/%E8%8A%B1%E3%81%A8%E3%81%A1%E3%82%87%E3%81%86%E3%81%A1%E3%82%87.ttf") format("truetype");
	font-family: "Hanato Choucho";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/FuturaCyrillicLight.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/FuturaCyrillicBook.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/FuturaCyrillicMedium.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/FuturaCyrillicDemi.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/FuturaCyrillicBold.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 800;
	src: url("../fonts/FuturaCyrillicExtraBold.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 900;
	src: url("../fonts/FuturaCyrillicHeavy.ttf") format("truetype");
	font-family: "Futura PT";
	font-display: swap;
}

.header {
	z-index: 10000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	transition-duration: 0.4s;
}

.header__container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 3.4722222222vw 3.4722222222vw 0 3.4722222222vw;
}

.header__logo {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	line-height: 1;
	text-decoration: none;
	transition: opacity 0.3s ease 0.3s, visibility 0.3s ease 0.2s;
}

.header__logo:hover {
	opacity: 0.8;
}

body:has(.drawer.--active) .header__logo {
	visibility: hidden;
	opacity: 0;
	transition-delay: 0s;
}

.header__logo-main {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.5555555556vw;
	color: var(--header-logo-color-mobile, #003c88);
	font-weight: 600;
	font-size: 1.5972222222vw;
	line-height: 1;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.header__logo-sub {
	color: #006bc7;
	font-weight: bold;
	font-size: 1.1111111111vw;
	font-family: "Prompt", "Noto Sans JP", sans-serif;
	text-transform: uppercase;
}

.header__actions {
	display: flex;
	z-index: 10000;
	position: fixed;
	top: 1.7361111111vw;
	right: 3.4722222222vw;
	align-items: flex-start;
	gap: 1.3888888889vw;
}

.header__entry-btn-wrapper {
	display: inline-block;
	position: relative;
}

.header__entry-btn-shadow {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 10.5555555556vw;
	height: 5vw;
	transform: translateY(4px);
	border-radius: 3.4722222222vw;
	background: #003c88;
	pointer-events: none;
}

.header__entry-btn {
	display: flex;
	z-index: 1;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 10.4166666667vw;
	height: 4.8611111111vw;
	padding: 0;
	border: none;
	border-radius: 3.4722222222vw;
	background: #fff;
	text-decoration: none;
	transition: all 0.1s;
}

.header__entry-btn:hover {
	transform: translateY(-1px);
	background: #cef400;
	opacity: 1;
}

.header__entry-btn:hover ~ .header__entry-btn-shadow {
	transform: translateY(calc(4px + 1px));
}

.header__entry-btn-en {
	color: #003c88;
	font-weight: 600;
	font-size: 1.9444444444vw;
	line-height: 1.2;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
}

.header__entry-btn-jp {
	margin-top: 0.1388888889vw;
	color: #003c88;
	font-weight: normal;
	font-size: 0.8333333333vw;
	line-height: 1.2;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
	letter-spacing: 0.1em;
}

.header__hamburger {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 4.8611111111vw;
	height: 4.8611111111vw;
	padding: 0;
	border: none;
	border-radius: 0.5555555556vw;
	background: #003c88;
	cursor: pointer;
	transition: all 0.3s;
}

.header__hamburger:hover {
	opacity: 0.8;
}

.header__hamburger.--active .header__hamburger-bar:nth-child(1) {
	transform: translateY(0.9027777778vw) rotate(45deg);
}

.header__hamburger.--active .header__hamburger-bar:nth-child(2) {
	opacity: 0;
}

.header__hamburger.--active .header__hamburger-bar:nth-child(3) {
	transform: translateY(-0.9027777778vw) rotate(-45deg);
}

.header__hamburger-bar {
	width: 2.0138888889vw;
	height: 0.2083333333vw;
	transform-origin: center;
	border-radius: 0.0694444444vw;
	background: #fff;
	transition: all 0.3s;
}

.header__hamburger-bar:not(:last-child) {
	margin-bottom: 0.6944444444vw;
}

.drawer {
	visibility: hidden;
	z-index: 9998;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background: #003c88;
	opacity: 0;
	scrollbar-width: none;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	-ms-overflow-style: none;
}

.drawer::-webkit-scrollbar {
	display: none;
}

.drawer.--active {
	visibility: visible;
	opacity: 1;
}

.drawer__logo {
	display: flex;
	z-index: 10001;
	position: absolute;
	top: calc(1.3888888889vw + 24px);
	left: 2.7777777778vw;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.5555555556vw;
	transform: translateY(-10px);
	color: #fff;
	font-weight: normal;
	font-size: 1.5972222222vw;
	line-height: 1.3;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.1388888889vw;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.drawer.--active .drawer__logo {
	transform: translateY(0);
	opacity: 1;
}

.drawer__logo:hover {
	opacity: 0.8;
}

.drawer__nav {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8.3333333333vw 0 2.7777777778vw 8.3333333333vw;
}

.drawer__list {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 0.6944444444vw;
	list-style: none;
}

.drawer__item {
	padding: 0;
}

.drawer__link {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	gap: 1.6666666667vw;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer__link:hover {
	opacity: 0.8;
}

.drawer__link-en {
	flex-shrink: 0;
	color: #fff;
	font-weight: thin;
	font-size: 4.1666666667vw;
	line-height: 1.2;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.1388888889vw;
	text-transform: uppercase;
	white-space: nowrap;
}

.drawer__link-jp {
	min-width: 0;
	overflow: hidden;
	color: #efefef;
	font-size: 1.1111111111vw;
	line-height: 1.2;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.drawer__link-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.9166666667vw;
	min-width: 2.9166666667vw;
	height: 2.9166666667vw;
	min-height: 2.9166666667vw;
}

.drawer__link-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.footer {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #003c88;
}

.footer__bg-circle {
	z-index: 13;
	position: absolute;
	top: -190vw;
	left: 0;
	width: 152.7777777778vw;
	height: 277.7777777778vw;
	rotate: 60deg;
	border-radius: 50%;
	background: #006bc7;
	pointer-events: none;
}

.footer__menu-section {
	z-index: 13;
	position: relative;
	width: 100%;
	padding: 4.1666666667vw 6.1111111111vw;
}

.footer__menu-container {
	z-index: 2;
	position: relative;
	width: 100%;
}

.footer__menu-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0 6.9444444444vw;
	gap: 2.7777777778vw;
}

.footer__menu-text {
	display: flex;
	z-index: 15;
	flex-direction: column;
	gap: 0;
	color: #fff;
	font-weight: normal;
	font-size: 1.9444444444vw;
	line-height: 1.4;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.footer__menu-text-line {
	display: block;
}

.footer__menu-text-line:first-child {
	font-size: 0;
}

.footer__menu-text-line:first-child::before {
	display: block;
	content: "岡谷酸素に";
	font-size: 1.9444444444vw;
}

.footer__menu-text-line:first-child::after {
	display: block;
	content: "ついて";
	font-size: 1.9444444444vw;
}

.footer__menu-list {
	display: flex;
	z-index: 10;
	flex: 1;
	justify-content: center;
	margin: 0;
	padding: 0;
	gap: 1.3888888889vw;
	list-style: none;
}

.footer__menu-item {
	flex: 0 0 20%;
	max-width: 24%;
}

.footer__menu-link {
	display: block;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer__menu-link:hover {
	opacity: 0.95;
}

.footer__menu-image {
	display: flex;
	position: relative;
	flex-direction: column;
	aspect-ratio: 1/1;
	width: 100%;
	overflow: visible;
	border-radius: 1.1111111111vw;
}

.footer__menu-img {
	display: block;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.footer__menu-link:hover .footer__menu-img {
	transform: translateY(10px);
}

.footer__catchcopy {
	z-index: 15;
	position: relative;
	width: 100vw;
	padding: 1.1111111111vw 0 0 0;
	overflow: hidden;
	background-color: transparent;
}

.footer__catchcopy-inner {
	display: inline-flex;
	position: relative;
	white-space: nowrap;
	animation: scroll-text 30s linear infinite;
	will-change: transform;
}

.footer__catchcopy-text {
	display: inline-block;
	flex-shrink: 0;
	padding: 0;
	color: #fff;
	font-weight: 100;
	font-size: 6.8055555556vw;
	line-height: 1.2;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
	letter-spacing: 0.05em;
}

.footer__entry-section {
	display: flex;
	z-index: 15;
	position: relative;
	flex-direction: row;
	justify-content: flex-end;
	width: 100%;
	padding: 4.1666666667vw 0;
	padding-left: 4.1666666667vw;
	gap: 2.7777777778vw;
}

.footer__entry-image {
	position: relative;
	flex: 0 0 65%;
	order: 2;
	width: 65%;
	overflow: hidden;
}

.footer__entry-img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	z-index: 15;
	object-fit: cover;
}

.footer__entry-button-wrapper {
	z-index: 15;
	position: relative;
	order: 1;
	margin-right: 7.6388888889vw;
	text-align: center;
}

.footer__entry-title-link {
	display: inline-block;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer__entry-title-link:hover {
	opacity: 0.9;
}

.footer__entry-title {
	z-index: 15;
	color: #fff;
	font-weight: 100;
	font-size: 4.8611111111vw;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
}

.footer__entry-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2.7777777778vw;
	gap: 1.1111111111vw;
	border: none;
	background: transparent;
	text-decoration: none;
	transition: all 0.3s;
}

.footer__entry-btn:hover {
	opacity: 0.9;
}

.footer__entry-btn-jp {
	margin-right: 2.7777777778vw;
	color: #fff;
	font-weight: normal;
	font-size: 1.3194444444vw;
	line-height: 1.2;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
}

.footer__entry-btn-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.9166666667vw;
	height: 2.9166666667vw;
}

.footer__entry-btn-icon-img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.footer__top {
	z-index: 0;
	position: relative;
	width: 100%;
	padding: 0 5.9027777778vw;
	background: #003c88;
}

.footer__top-container {
	z-index: 2;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 2.7777777778vw 5.9027777778vw;
}

.footer__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.7777777778vw;
}

.footer__left {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.footer__logo {
	display: inline-block;
	color: #fff;
	font-weight: 600;
	font-size: 1.5972222222vw;
	line-height: 1.2;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
}

.footer__logo:hover {
	opacity: 0.9;
}

.footer__sns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	gap: 1.1111111111vw;
	list-style: none;
}

.footer__sns-item {
	display: flex;
	align-items: center;
}

.footer__sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.0833333333vw;
	min-width: 2.0833333333vw;
	height: 2.0833333333vw;
	min-height: 2.0833333333vw;
	border-radius: 50%;
	background: #ff6b35;
	text-decoration: none;
	transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer__sns-link:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

.footer__sns-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.footer__sns-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.footer__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	gap: 0.3472222222vw;
	list-style: none;
}

.footer__link-item {
	display: flex;
	align-items: center;
}

.footer__link {
	color: #fff;
	font-weight: 400;
	font-size: 0.9722222222vw;
	font-family: "Sen", "Noto Sans JP", "Prompt", sans-serif;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer__link:hover {
	opacity: 0.9;
}

.footer__separator {
	margin: 0 0.2083333333vw;
	color: #fff;
	font-size: 0.8333333333vw;
}

.footer__bottom {
	display: flex;
	z-index: 0;
	position: relative;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #006bc7;
}

.footer__bottom-container {
	display: flex;
	z-index: 2;
	position: relative;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 5.9027777778vw;
}

.footer__copyright {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	color: #fff;
	font-weight: 500;
	font-size: 0.8333333333vw;
	line-height: 0.9722222222vw;
	font-family: "Sen", "Noto Sans JP", "Prompt", sans-serif;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.back-link {
	width: 100%;
	padding: 0.6944444444vw 0;
	background-color: #003c88;
	text-align: left;
}

.back-link__container {
	padding-left: min(11.8055555556vw, 170px);
	text-align: left;
}

.back-link__text {
	display: inline-flex;
	align-items: center;
	gap: 0.8333333333vw;
	color: #fff;
	font-weight: 400;
	font-size: min(1.3194444444vw, 19px);
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
}

.back-link__text:hover {
	opacity: 0.7;
}

.back-link__arrow {
	display: block;
	width: 2.2222222222vw;
	height: 2.2222222222vw;
	-o-object-fit: contain;
	z-index: 3;
	object-fit: contain;
}

.back-link__text-text {
	display: inline-block;
	min-width: 240px;
}

.container {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
}

.large-container {
	width: 100%;
	padding: 0 min(11.8055555556vw, 170px);
}

.faq-container {
	width: 100%;
	padding: 0 min(15.9722222222vw, 230px);
}

.header-complete {
	z-index: 900;
	position: relative;
	width: 100%;
	background: #fff;
	transition-duration: 0.4s;
}

.header-complete__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 1.3888888889vw 2.7777777778vw;
}

.header-complete__logo {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.header-complete__logo-main {
	color: #006bc7;
	font-weight: bold;
	font-size: min(2.2222222222vw, 32px);
	font-family: "Prompt", "Noto Sans JP", sans-serif;
	text-transform: uppercase;
}

.header-complete__logo-sub {
	color: #006bc7;
	font-weight: bold;
	font-size: min(1.1111111111vw, 16px);
	font-family: "Prompt", "Noto Sans JP", sans-serif;
	text-transform: uppercase;
}

.header-complete__actions {
	display: flex;
	z-index: 10000;
	position: fixed;
	top: 1.3888888889vw;
	right: 2.7777777778vw;
	align-items: center;
	gap: 1.3888888889vw;
}

.header-complete__entry-btn-wrapper {
	display: inline-block;
	position: relative;
}

.header-complete__entry-btn-shadow {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 10.4166666667vw;
	min-width: 150px;
	height: 4.8611111111vw;
	min-height: 70px;
	transform: translateY(4px);
	border-radius: 50px;
	background: #003c88;
	pointer-events: none;
}

.header-complete__entry-btn {
	display: flex;
	z-index: 9999;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 10.4166666667vw;
	min-width: 150px;
	height: 4.8611111111vw;
	min-height: 70px;
	padding: 0;
	border: none;
	border-radius: 50px;
	background: #fff;
	text-decoration: none;
	transition: all 0.1s;
}

.header-complete__entry-btn:hover {
	transform: translateY(-1px);
	background: #cef400;
	opacity: 1;
}

.header-complete__entry-btn:hover ~ .header-complete__entry-btn-shadow {
	transform: translateY(calc(4px + 1px));
}

.header-complete__entry-btn-en {
	color: #006bc7;
	font-weight: bold;
	font-size: min(1.25vw, 18px);
	line-height: 1.2;
	font-family: "Prompt", "Noto Sans JP", sans-serif;
	text-transform: uppercase;
}

.header-complete__entry-btn-jp {
	margin-top: 0.1388888889vw;
	color: #006bc7;
	font-weight: normal;
	font-size: min(0.8333333333vw, 12px);
	line-height: 1.2;
	font-family: "Noto Sans JP", "Prompt", sans-serif;
}

.header-complete__hamburger {
	display: flex;
	z-index: 9999;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 4.8611111111vw;
	min-width: 70px;
	height: 4.8611111111vw;
	min-height: 70px;
	padding: 1.3888888889vw;
	border: none;
	border-radius: 0.8333333333vw;
	background: #003c88;
	cursor: pointer;
	transition: all 0.3s;
}

.header-complete__hamburger:hover {
	opacity: 0.8;
}

.header-complete__hamburger.--active .header-complete__hamburger-bar:nth-child(1) {
	transform: translateY(0.5555555556vw) rotate(45deg);
}

.header-complete__hamburger.--active .header-complete__hamburger-bar:nth-child(2) {
	opacity: 0;
}

.header-complete__hamburger.--active .header-complete__hamburger-bar:nth-child(3) {
	transform: translateY(-0.5555555556vw) rotate(-45deg);
}

.header-complete__hamburger-bar {
	width: 100%;
	height: 0.2083333333vw;
	min-height: 3px;
	transform-origin: center;
	border-radius: 0.1388888889vw;
	background: #fff;
	transition: all 0.3s;
}

.drawer-complete {
	display: block;
	z-index: 9998;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	transform: translateX(100%);
	background: rgba(0, 0, 0, 0.9);
	transition: transform 0.5s;
}

.drawer-complete.--active {
	transform: translateX(0);
}

.drawer-complete__nav {
	width: 100%;
	padding: 8.3333333333vw 2.7777777778vw 2.7777777778vw;
}

.drawer-complete__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	gap: 1.3888888889vw;
	list-style: none;
}

.drawer-complete__item {
	padding: 1.0416666667vw 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.drawer-complete__link {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: min(1.3888888889vw, 20px);
	text-decoration: none;
	transition: opacity 0.3s;
}

.drawer-complete__link:hover {
	opacity: 0.7;
}

.drawer-complete__close {
	display: flex;
	z-index: 10;
	position: absolute;
	top: 2.7777777778vw;
	right: 2.7777777778vw;
	align-items: center;
	justify-content: center;
	width: 4.8611111111vw;
	min-width: 70px;
	height: 4.8611111111vw;
	min-height: 70px;
	border: 0.1388888889vw solid rgba(255, 255, 255, 0.5);
	border-radius: 0.8333333333vw;
	background: #003c88;
	cursor: pointer;
	transition: all 0.3s;
}

.drawer-complete__close:hover {
	border-color: rgba(255, 255, 255, 0.8);
	opacity: 0.8;
}

.drawer-complete__close-icon {
	position: relative;
	width: 1.6666666667vw;
	min-width: 24px;
	height: 1.6666666667vw;
	min-height: 24px;
}

.drawer-complete__close-icon::before,
.drawer-complete__close-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.3611111111vw;
	height: 0.2083333333vw;
	transform-origin: center;
	border-radius: 0.1388888889vw;
	background: #fff;
	content: "";
	transition: all 0.3s;
}

.drawer-complete__close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-complete__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.main {
	position: relative;
}

.main.--gray {
	background-color: #006bc7;
}

.main.--black {
	background-color: #2d3042;
}

.breadcrumb {
	z-index: 10;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0.6944444444vw 0;
	color: #fff;
	font-weight: normal;
	font-size: 1.1111111111vw;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
	text-align: start;
	text-transform: uppercase;
}

.breadcrumb a,
.breadcrumb span {
	color: #fff;
	text-decoration: none;
}

.breadcrumb span {
	color: #fff;
}

.breadcrumb .breadcrumb-sep,
.breadcrumb .breadcrumb_sep {
	color: #fff;
}

.breadcrumb a:hover {
	opacity: 0.8;
}

.breadcrumb .container {
	margin: 0;
	padding: 0;
	padding-left: 11.1111111111vw;
}

.card__img {
	position: relative;
	width: 100%;
	padding-top: 75%;
}

.card__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card__title {
	margin-top: 8px;
	font-weight: 900;
	font-size: 20px;
}

.card__title.--orange {
	color: #006bc7;
}

.card__text {
	font-weight: 900;
	font-size: 14px;
	line-height: 1.6;
}

.card__text.--white {
	color: #fff;
}

.default-hero__content {
	display: flex;
	-moz-column-gap: 5.5555555556vw;
	column-gap: 5.5555555556vw;
	align-items: center;
	padding-top: 13.8888888889vw;
	padding-bottom: 6.9444444444vw;
}

.default-hero__title {
	font-weight: lighter;
	font-size: 4.8611111111vw;
	line-height: 1.2;
	font-family: "Futura PT", "Futura", "Prompt", "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.default-hero__subtitle {
	font-weight: lighter;
	font-size: 2.2916666667vw;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.page-header {
	display: flex;
	align-items: center;
	width: 100%;
	height: 450px;
	background-position: center;
	background-size: cover;
}

.page-header.--work {
	background: url(../img/work_page-header.png) no-repeat center center/cover;
}

.page-header.--place {
	background: url(../img/place_page-header.png) no-repeat center center/cover;
}

.page-header.--blog {
	background: url(../img/blog_page-header.png) no-repeat center center/cover;
}

.page-header.--news {
	background-color: #006bc7;
}

.page-header.--entry {
	display: none;
}

.page-header.--entry.--active {
	display: flex;
}

.page-header__new {
	background: url(../img/entry_page-header1.png) no-repeat center center/cover;
}

.page-header__carrier {
	background: url(../img/entry_page-header2.png) no-repeat center center/cover;
}

.page-header.--privacy {
	background: url(../img/privacy_page-header.png) no-repeat center center/cover;
}

.page-header__container.--work {
	margin-top: 150px;
}

.page-header__text-box {
	display: flex;
	flex-direction: column;
	width: -moz-fit-content;
	width: fit-content;
	margin-right: 0;
	margin-left: auto;
}

.page-header__text-box.--left {
	display: flex;
	flex-direction: column;
	width: -moz-fit-content;
	width: fit-content;
	margin-right: auto;
	margin-left: 0;
}

.page-header__text-box.--entry.--new {
	margin-right: auto;
	margin-left: 0;
}

.page-header.--entry-form .page-header__text-box {
	flex-direction: column-reverse;
	width: 100%;
	text-align: center;
}

.page-header__text {
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}

.page-header__text.--entry {
	margin-top: 20px;
	padding: 0.5em 4em;
	background: #fff;
	color: #2d3042;
	font-size: 18px;
	line-height: 1;
}

.page-header__text.--entry.--new {
	text-align: start;
}

.page-header__text.--entry.--carrier {
	text-align: end;
}

.page-header__title {
	color: #fff;
	font-weight: bold;
	font-size: 70px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.page-header__title.--entry {
	font-size: 45px;
}

.page-header__title.--entry.--carrier {
	text-align: end;
}

.pagination {
	display: flex;
	position: relative;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding-bottom: 120px;
}

.pagination .current {
	flex-grow: 1;
	padding: 1em 3em;
	background: #006bc7;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}

.pagination .next,
.pagination .prev {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.pagination .next {
	margin-left: 1px;
}

.pagination .prev {
	margin-right: 1px;
}

.pagination .next a,
.pagination .prev a {
	display: block;
	position: relative;
	width: inherit;
	height: inherit;
	background: #006bc7;
	transition-duration: 0.5s;
}

.next a:hover,
.prev a:hover {
	opacity: 0.7;
}

.next a::before,
.prev a::before {
	display: block;
	width: 16px;
	height: 16px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	content: "";
}

.next a::before {
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%, -50%) rotate(-45deg);
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
}

.prev a::before {
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translate(-50%, -50%) rotate(135deg);
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	-ms-transform: translate(-50%, -50%) rotate(135deg);
}

.magazine-content .wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4.1666666667vw;
	padding-bottom: 0;
	gap: 1.3888888889vw;
}

.magazine-content .wp-pagenavi .current {
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 3.3333333333vw;
	min-width: 3.3333333333vw;
	max-width: 3.3333333333vw;
	height: 3.3333333333vw;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #003c88;
	color: #fff;
	font-weight: 600;
	font-size: 1.1111111111vw;
	line-height: 1;
}

.magazine-content .wp-pagenavi a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #003c88;
	font-weight: 600;
	font-size: 1.1111111111vw;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.magazine-content .wp-pagenavi a:hover {
	opacity: 0.7;
}

.magazine-content .wp-pagenavi .page {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 3.3333333333vw;
	min-width: 3.3333333333vw;
	max-width: 3.3333333333vw;
	height: 3.3333333333vw;
	border: none;
	background: transparent;
	color: #003c88;
	font-weight: 600;
	font-size: 1.1111111111vw;
}

.magazine-content .wp-pagenavi .page a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: transparent;
}

.magazine-content .wp-pagenavi .previouspostslink,
.magazine-content .wp-pagenavi .nextpostslink {
	display: flex !important;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 3.3333333333vw;
	height: 3.3333333333vw;
	border: 1px solid #003c88;
	border-radius: 50%;
	background: #fff;
}

.magazine-content .wp-pagenavi .previouspostslink.disabled,
.magazine-content .wp-pagenavi .previouspostslink[aria-disabled=true],
.magazine-content .wp-pagenavi .previouspostslink:not([href]),
.magazine-content .wp-pagenavi .previouspostslink[style*="visibility: hidden"],
.magazine-content .wp-pagenavi .nextpostslink.disabled,
.magazine-content .wp-pagenavi .nextpostslink[aria-disabled=true],
.magazine-content .wp-pagenavi .nextpostslink:not([href]),
.magazine-content .wp-pagenavi .nextpostslink[style*="visibility: hidden"] {
	visibility: hidden !important;
	pointer-events: none !important;
}

.section-title {
	margin: 52px auto 0 auto;
}

.section-title__text {
	font-weight: bold;
	text-align: center;
}

.section-title__text.--en {
	font-size: 40px;
	font-family: Futura, "Noto Sans JP", "Prompt", sans-serif;
}

.section-title__text.--en.--privacy {
	font-size: 35px;
}

.section-title__text.--uppercase {
	text-transform: uppercase;
}

.section-title__text.--jp {
	margin-top: 12px;
	font-size: 15px;
}

.section-title__text.--jp-blog,
.section-title__text.--jp-news {
	position: relative;
	font-size: 32px;
}

.section-title__text.--jp-blog::after,
.section-title__text.--jp-news::after {
	position: absolute;
	bottom: -0.5em;
	left: 50%;
	width: 60px;
	height: 4px;
	transform: translateX(-50%);
	background: #006bc7;
	content: "";
}

.section-title__text.--white {
	color: #fff;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.zoom-thumbnail__link:hover {
	opacity: 1;
}

.zoom-thumbnail__link:hover .zoom-thumbnail {
	transform: scale(1.1);
}

.zoom-thumbnail__wrapper {
	display: block;
	overflow: hidden;
}

.zoom-thumbnail {
	transform: translateZ(0);
	backface-visibility: hidden;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.header__logo-main {
	color: var(--header-logo-color-pc, #003c88);
}

.header__logo-main-separator {
	margin: 0 0.2777777778vw;
}

.header__logo-sub {
	color: #fff;
}

.drawer__logo-main-separator {
	margin: 0 0.2777777778vw;
}

.header-complete {
	background: #006bc7;
}

.header-complete__logo-main {
	color: #fff;
}

.header-complete__logo-sub {
	color: #fff;
}

}

@media (min-width: 1920px) {

.back-link__container {
	padding-left: 11.8055555556vw;
}

.back-link__text {
	font-size: 1.3194444444vw;
}

}

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

.hidden-mediumPC {
	display: none;
}

}

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

.back-link__container {
	padding-left: 11.1111111111vw;
}

.back-link__text {
	gap: 0.8333333333vw;
	font-size: min(1.3888888889vw, 20px);
}

.container {
	width: 100%;
	padding: 0 min(8.6805555556vw, 125px);
}

.breadcrumb {
	font-weight: lighter;
	font-size: 1.1111111111vw;
	text-align: left;
}

.breadcrumb .container {
	padding-left: 11.1111111111vw;
}

.card__title {
	margin-top: 0.5555555556vw;
	font-size: 1.3888888889vw;
}

.card__text {
	font-size: 0.9722222222vw;
}

.hidden-smallPC {
	display: none;
}

.page-header {
	height: 31.25vw;
}

.page-header__container.--work {
	margin-top: 10.4166666667vw;
}

.page-header__text {
	font-size: 1.3888888889vw;
}

.page-header__text.--entry {
	margin-top: 1.3888888889vw;
	font-size: 1.25vw;
}

.page-header__title {
	font-size: 4.8611111111vw;
}

.page-header__title.--entry {
	font-size: 3.125vw;
}

.pagination {
	padding-bottom: 8.3333333333vw;
}

.pagination .current {
	font-size: 1.1111111111vw;
}

.pagination .next,
.pagination .prev {
	width: 3.3333333333vw;
	height: 3.3333333333vw;
}

.next a::before,
.prev a::before {
	width: 1.1111111111vw;
	height: 1.1111111111vw;
}

.section-title {
	margin: 3.6111111111vw auto 0 auto;
}

.section-title__text.--en {
	font-size: 2.7777777778vw;
}

.section-title__text.--en.--privacy {
	font-size: 2.4305555556vw;
}

.section-title__text.--jp {
	margin-top: 0.8333333333vw;
	font-size: 1.0416666667vw;
}

.section-title__text.--jp-blog,
.section-title__text.--jp-news {
	font-size: 2.2222222222vw;
}

.section-title__text.--jp-blog::after,
.section-title__text.--jp-news::after {
	width: 4.1666666667vw;
}

}

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

.hidden-tablet {
	display: none;
}

}

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

.pc-only {
	display: none !important;
}

.sp-only {
	display: block !important;
}

.header__container {
	padding: 5.1282051282vw 3.8461538462vw 5.1282051282vw 3.8461538462vw;
}

.header__logo {
	align-items: flex-start;
}

.header__logo-main {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	font-size: min(5.0666666667vw, 38px);
	line-height: min(6.2666666667vw, 47px);
	letter-spacing: 0.1em;
}

.header__logo-main-separator {
	display: none;
}

.header__logo-main-sub {
	margin-top: 0;
}

.header__logo-sub {
	font-size: vwSp(12);
}

.header__actions {
	top: 5.1282051282vw;
	right: 3.8461538462vw;
	align-items: flex-start;
	gap: 3.8461538462vw;
}

.header__entry-btn-shadow {
	width: min(28.8vw, 216px);
	height: min(13.4666666667vw, 101px);
	transform: translateY(4px);
	border-radius: min(6.6666666667vw, 50px);
}

.header__entry-btn {
	width: min(28.8vw, 216px);
	height: min(13.4666666667vw, 101px);
	padding: 0;
	border-radius: min(6.6666666667vw, 50px);
}

.header__entry-btn-wrapper .header__entry-btn-shadow {
	width: min(28.8vw, 216px);
	height: min(13.4666666667vw, 101px);
	transform: translateY(4px);
}

.header__entry-btn-wrapper .header__entry-btn:hover ~ .header__entry-btn-shadow {
	transform: translateY(calc(4px + 1px));
}

.header__entry-btn-en {
	font-size: min(5.6vw, 42px);
}

.header__entry-btn-jp {
	margin-top: min(0.2666666667vw, 2px);
	font-size: min(3.2vw, 24px);
}

.header__hamburger {
	width: min(13.3333333333vw, 100px);
	height: min(13.3333333333vw, 100px);
	border-radius: 2.0512820513vw;
}

.header__hamburger.--active .header__hamburger-bar:nth-child(1) {
	transform: translateY(2.2vw) rotate(45deg);
}

.header__hamburger.--active .header__hamburger-bar:nth-child(3) {
	transform: translateY(-2.2vw) rotate(-45deg);
}

.header__hamburger-bar {
	width: min(5.3333333333vw, 40px);
	height: min(0.4vw, 3px);
	border-radius: min(0.1333333333vw, 1px);
}

.header__hamburger-bar:not(:last-child) {
	margin-bottom: min(1.8666666667vw, 14px);
}

.drawer__logo {
	top: 5.1282051282vw;
	left: 3.8461538462vw;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	font-size: 4.8717948718vw;
	line-height: 1.3;
	letter-spacing: 0.2564102564vw;
}

.drawer__logo-main-separator {
	display: none;
}

.drawer__logo-main-sub {
	margin-top: 0;
}

.drawer__nav {
	padding: 25.641025641vw 5.1282051282vw 10.2564102564vw 5.1282051282vw;
}

.drawer__list {
	gap: 2.5641025641vw;
}

.drawer__link {
	gap: 2.0512820513vw;
}

.drawer__link:active {
	transform: translateX(0.5333333333vw) scale(0.97);
	opacity: 0.8;
}

.drawer__link-en {
	font-size: 8.2051282051vw;
	letter-spacing: 0.1282051282vw;
}

.drawer__link-jp {
	max-width: 100%;
	font-size: 3.5897435897vw;
}

.drawer__link-icon {
	display: none;
}

.drawer__link-icon.--external {
	display: flex;
	width: 6.1538461538vw;
	min-width: 6.1538461538vw;
	height: 6.1538461538vw;
	min-height: 6.1538461538vw;
}

.footer__bg-circle {
	z-index: 13;
	top: -80vw;
	left: -160vw;
	width: 333.3333333333vw;
	height: 282.0512820513vw;
}

.footer__menu-section {
	padding: 10.2564102564vw 5.1282051282vw;
}

.footer__menu-inner {
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	gap: 6.1538461538vw;
}

.footer__menu-text {
	width: 100%;
	margin-bottom: 2.0512820513vw;
	font-size: 8vw;
	text-align: center;
}

.footer__menu-text-line {
	font-size: 7.6923076923vw;
}

.footer__menu-text-line:first-child {
	font-size: 7.6923076923vw;
}

.footer__menu-text-line:first-child::before,
.footer__menu-text-line:first-child::after {
	display: none;
}

.footer__menu-list {
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	gap: 3.0769230769vw;
}

.footer__menu-item {
	flex: 0 0 calc(50% - 1.5384615385vw);
	max-width: calc(50% - 1.5384615385vw);
}

.footer__menu-link:hover {
	opacity: 1;
}

.footer__menu-image {
	border-radius: 3.0769230769vw;
}

.footer__menu-img {
	transition: transform 0.3s ease;
}

.footer__menu-link:hover .footer__menu-img {
	transform: scale(0.95);
}

.footer__catchcopy {
	padding: 4.1025641026vw 0 0 0;
}

.footer__catchcopy-text {
	padding-right: 15.3846153846vw;
	font-size: 15.3846153846vw;
}

.footer__entry-section {
	flex-direction: column;
	padding: 10.2564102564vw 0;
	padding-right: 0;
	padding-left: 0;
	gap: 0;
}

.footer__entry-image {
	flex: none;
	order: 1;
	width: 100%;
}

.footer__entry-button-wrapper {
	order: 2;
	margin-top: 7.6923076923vw;
	margin-left: 0;
}

.footer__entry-title {
	font-size: 15.3846153846vw;
}

.footer__entry-btn {
	padding: 0 8.2051282051vw;
	gap: 3.0769230769vw;
}

.footer__entry-btn-jp {
	margin-right: 6.1538461538vw;
	font-size: 4.1025641026vw;
}

.footer__entry-btn-icon {
	width: 9.2307692308vw;
	height: 9.2307692308vw;
}

.footer__top {
	padding: 0 0 54px 0;
}

.footer__top-container {
	padding: 7.6923076923vw 5.1282051282vw 0 5.1282051282vw;
}

.footer__top-inner {
	flex-direction: column;
	align-items: center;
	gap: 35px;
}

.footer__left {
	align-items: center;
	gap: 30px;
}

.footer__logo {
	font-size: 4.8717948718vw;
	letter-spacing: 2px;
	text-align: center;
}

.footer__sns {
	justify-content: center;
	gap: 4.1025641026vw;
}

.footer__sns-link {
	width: 8.9743589744vw;
	min-width: 8.9743589744vw;
	height: 8.9743589744vw;
	min-height: 8.9743589744vw;
}

.footer__right {
	justify-content: center;
	width: 100%;
}

.footer__links {
	justify-content: center;
	gap: 1.0256410256vw;
}

.footer__link {
	font-size: min(3.0769230769vw, 12px);
}

.footer__separator {
	margin: 0 1.0666666667vw;
	font-size: 2.6666666667vw;
}

.footer__bottom {
	height: 35px;
}

.footer__bottom-container {
	justify-content: center;
	padding: 0 5.1282051282vw;
}

.footer__copyright {
	justify-content: center;
	font-size: min(2.8205128205vw, 11px);
	line-height: min(3.5897435897vw, 14px);
}

.back-link {
	padding: 3.0769230769vw 0;
}

.back-link__container {
	padding-left: 5.1282051282vw;
}

.back-link__text {
	gap: 2.0512820513vw;
	font-size: min(4.1025641026vw, 16px);
}

.back-link__arrow {
	width: 6.1538461538vw;
	height: 6.1538461538vw;
}

.container {
	padding: 0 8.9743589744vw;
}

.large-container {
	padding: 0 5.3333333333vw;
}

.faq-container {
	padding: 0 5.3333333333vw;
}

.header-complete__container {
	padding: 5.1282051282vw 3.8461538462vw;
}

.header-complete__logo-main {
	font-size: min(6.1538461538vw, 24px);
}

.header-complete__logo-sub {
	font-size: min(3.0769230769vw, 12px);
}

.header-complete__actions {
	top: 5.1282051282vw;
	right: 3.8461538462vw;
	gap: 3.8461538462vw;
}

.header-complete__entry-btn {
	width: 30.7692307692vw;
	min-width: 120px;
	height: 15.3846153846vw;
	min-height: 60px;
	border-radius: 50px;
}

.header-complete__entry-btn-wrapper .header-complete__entry-btn-shadow {
	width: 30.7692307692vw;
	min-width: 120px;
	height: 15.3846153846vw;
	min-height: 60px;
	transform: translateY(4px);
}

.header-complete__entry-btn-wrapper .header-complete__entry-btn:hover ~ .header-complete__entry-btn-shadow {
	transform: translateY(calc(4px + 1px));
}

.header-complete__entry-btn-en {
	font-size: min(3.5897435897vw, 14px);
}

.header-complete__entry-btn-jp {
	margin-top: 0.2564102564vw;
	font-size: min(2.5641025641vw, 10px);
}

.header-complete__hamburger {
	width: 15.3846153846vw;
	min-width: 60px;
	height: 15.3846153846vw;
	min-height: 60px;
	padding: 4.6153846154vw;
	border-radius: 2.5641025641vw;
}

.header-complete__hamburger.--active .header-complete__hamburger-bar:nth-child(1) {
	transform: translateY(2.0512820513vw) rotate(45deg);
}

.header-complete__hamburger.--active .header-complete__hamburger-bar:nth-child(3) {
	transform: translateY(-2.0512820513vw) rotate(-45deg);
}

.header-complete__hamburger-bar {
	height: 0.641025641vw;
	min-height: 2.5px;
	border-radius: 0.3846153846vw;
}

.drawer-complete__nav {
	padding: 25.641025641vw 5.1282051282vw 10.2564102564vw;
}

.drawer-complete__list {
	gap: 5.1282051282vw;
}

.drawer-complete__item {
	padding: 3.8461538462vw 0;
}

.drawer-complete__link {
	font-size: min(4.6153846154vw, 18px);
}

.drawer-complete__close {
	top: 7.6923076923vw;
	right: 5.1282051282vw;
	width: 15.3846153846vw;
	min-width: 60px;
	height: 15.3846153846vw;
	min-height: 60px;
	border-width: 0.5128205128vw;
	border-radius: 2.5641025641vw;
}

.drawer-complete__close-icon {
	width: 5.1282051282vw;
	min-width: 20px;
	height: 5.1282051282vw;
	min-height: 20px;
}

.drawer-complete__close-icon::before,
.drawer-complete__close-icon::after {
	width: 7.1794871795vw;
	height: 0.641025641vw;
	border-radius: 0.3846153846vw;
}

.breadcrumb {
	padding: 2.5641025641vw 0;
}

.breadcrumb {
	font-weight: normal;
	font-size: min(4.1025641026vw, 16px);
	text-align: left;
}

.breadcrumb .container {
	padding-left: 5.1282051282vw;
}

.card__title {
	margin-top: 2.0512820513vw;
	font-size: 5.1282051282vw;
}

.card__text {
	font-size: 3.5897435897vw;
}

.hidden-mobile {
	display: none;
}

.default-hero__content {
	flex-direction: column;
	align-items: flex-start;
	padding-top: 33.3333333333vw;
	padding-bottom: 16vw;
}

.default-hero__title {
	font-size: min(16vw, 120px);
}

.default-hero__subtitle {
	font-size: min(5.3333333333vw, 40px);
}

.page-header {
	height: 56.4102564103vw;
}

.page-header.--work {
	background: url(../img/work_page-header_sp.png) no-repeat center center/cover;
}

.page-header.--place {
	background: url(../img/place_page-header_sp.png) no-repeat center center/cover;
}

.page-header.--blog {
	background: url(../img/blog_page-header_sp.png) no-repeat center center/cover;
}

.page-header__new {
	background: url(../img/entry_page-header1_sp.png) no-repeat center center/cover;
}

.page-header__carrier {
	background: url(../img/entry_page-header2_sp.png) no-repeat center center/cover;
}

.page-header.--privacy {
	background: url(../img/privacy_page-header_sp.png) no-repeat center center/cover;
}

.page-header__container.--work {
	margin-top: 0;
}

.page-header__text-box {
	flex-direction: column-reverse;
	margin: 0 auto;
}

.page-header__text-box.--left {
	flex-direction: column-reverse;
	margin: 0 auto;
}

.page-header__text-box.--entry {
	flex-direction: column;
	width: 100%;
	text-align: center;
}

.page-header__text-box.--entry.--new {
	margin: 0 auto;
}

.page-header__text {
	font-size: 4.6153846154vw;
	text-align: center;
}

.page-header__text.--entry {
	width: 100%;
	margin-top: 5.1282051282vw;
	padding: 0.25em 0;
	font-size: 4.6153846154vw;
}

.page-header__text.--entry.--new {
	text-align: center;
}

.page-header__text.--entry.--carrier {
	text-align: center;
}

.page-header__title {
	font-size: 14.1025641026vw;
}

.page-header__title.--entry {
	font-size: 11.5384615385vw;
}

.page-header__title.--entry.--carrier {
	text-align: center;
}

.pagination {
	width: 100%;
	padding-bottom: 15.3846153846vw;
}

.pagination .current {
	padding: 1em 0;
	font-size: 4.1025641026vw;
}

.pagination .next,
.pagination .prev {
	width: 12.3076923077vw;
	height: 12.3076923077vw;
}

.next a::before,
.prev a::before {
	width: 4.1025641026vw;
	height: 4.1025641026vw;
}

.magazine-content .wp-pagenavi {
	margin-top: 10.2564102564vw;
	gap: 5.1282051282vw;
}

.magazine-content .wp-pagenavi .current {
	width: 12.3076923077vw;
	min-width: 12.3076923077vw;
	max-width: 12.3076923077vw;
	height: 12.3076923077vw;
	font-size: min(4.1025641026vw, 16px);
}

.magazine-content .wp-pagenavi a {
	font-size: min(4.1025641026vw, 16px);
}

.magazine-content .wp-pagenavi .page {
	width: 12.3076923077vw;
	min-width: 12.3076923077vw;
	max-width: 12.3076923077vw;
	height: 12.3076923077vw;
	font-size: min(4.1025641026vw, 16px);
}

.magazine-content .wp-pagenavi .previouspostslink,
.magazine-content .wp-pagenavi .nextpostslink {
	width: 12.3076923077vw;
	height: 12.3076923077vw;
}

.section-title {
	margin: 13.3333333333vw auto 0 auto;
}

.section-title__text.--en {
	font-size: 10.2564102564vw;
}

.section-title__text.--en.--privacy {
	font-size: 8.9743589744vw;
}

.section-title__text.--jp {
	margin-top: 3.0769230769vw;
	font-size: 3.8461538462vw;
}

.section-title__text.--jp-blog,
.section-title__text.--jp-news {
	font-size: 8.2051282051vw;
}

.section-title__text.--jp-blog::after,
.section-title__text.--jp-news::after {
	width: 15.3846153846vw;
}

}

@keyframes scroll-text {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-33.33%);
}

}

