/* リキッドレイアウト対応 */

/*****************************************
 * rclamp(): レスポンシブな clamp() 値を生成
 *   yuki-team スニペット rclamp-function.md ベース。
 *
 *   $minVw の画面幅で $min、$maxVw の画面幅で $max になり、間は線形に変化。
 *
 *   ※ 本プロジェクトは html の font-size が vw 可変（リキッドレイアウト）のため、
 *      clamp の境界を rem で返すと境界値まで一緒に伸縮して破綻する。
 *      よって境界は px で返し、補間項のみ vw とする（挙動はマニュアル通り）。
 *
 *   引数（すべて単位なし px の数値）:
 *     $min   最小px (必須)
 *     $max   最大px (必須)
 *     $minVw この画面幅で $min に固定 (省略時 375 = SPデザイン幅)
 *     $maxVw この画面幅で $max に固定 (省略時 1440 = PCデザイン幅)
 *
 *   使用例:
 *     font-size: rclamp(24, 64);          // 375px→24px, 1440px→64px
 *     padding:   rclamp(16, 40);
 *     gap:       rclamp(8, 20, 768, 1440);
******************************************/

:root {
	--inter-font: "Inter", sans-serif;
	--mincho-font: "zen old mincho", serif;
	--noto-font: "Noto Sans JP", sans-serif;
	--abhaya-font: "Abhaya Libre", "zen old mincho", serif;
	--regular: 400;
	--medium: 500;
	--semi-bold: 600;
	--bold: 700;
	--red-primary: #b40000;
	--red-dark: #850000;
	--red-bright: #da0000;
	--red-darker: #6e0000;
	--red-accent: #c00000;
	--white: #ffffff;
	--black: #000000;
	--oita-black: #2d2828;
	--gray-placeholder: #d9d9d9;
	--noon-blue: #5999d5;
	--morning-blue: #50a7c4;
	--gradient-header: linear-gradient(to bottom, #b40000, #850000);
	--gradient-footer: linear-gradient(to bottom, #dc707b, #ae1010);
	--gradient-noon: linear-gradient(to right, #c7e1ed 0%, #c7e1ed 23%, #e4eef7 100%);
	--gradient-night: linear-gradient(to right, #314375 0%, #314375 23%, #6c72a9 100%);
	--gradient-morning: linear-gradient(to left, #bfdae0 0%, #bfdae0 23%, #d2edeb 100%);
	--card-noon: #7cb4d2;
	--card-night: #3d3a7c;
	--card-morning: #ffa5a2;
}

body {
	color: #000000;
	color: var(--black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
}

main {
	overflow-x: clip;
}

.u-desktop {
	display: none;
}

.u-desktop-450 {
	display: none;
}

.u-desktop-500 {
	display: none;
}

.u-desktop-550 {
	display: none;
}

.u-mobile450 {
	display: none;
}

.u-mobile500 {
	display: none;
}

.u-mobile550 {
	display: none;
}

.u-mobile600 {
	display: none;
}

.u-mobile650 {
	display: none;
}

.u-mobile700 {
	display: none;
}

html {
	font-size: 16px;
}

/* ヘッダーはmain上に重ねる */

main {
	padding-top: 0;
}

/* picture 要素はレイアウトに影響しないようラッパーを透明化 */

picture {
	display: contents;
}

/* pcの電話番号発信対応 */

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

html[lang=ko] {
	word-wrap: break-word;
	word-break: keep-all;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	word-wrap: anywhere;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.allday-intro {
	padding-top: 6.25rem;
	position: relative;
	width: 100%;
}

.allday-intro .inner {
	position: relative;
	z-index: 1;
}

.allday-intro__title {
	color: #c00000;
	color: var(--red-accent);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0;
	line-height: 3.125rem;
	white-space: normal;
}

.allday-intro__subtitle {
	color: #000000;
	color: var(--black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 2;
	margin-top: 1rem;
}

.allday-page-bg {
	background-image: url(../images/trip-idea/beginning-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	height: 100vh;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: -1;
}

.allday {
	position: relative;
}

.allday > *:not(.allday__bg):not(.allday__fade) {
	position: relative;
}

.allday__fade {
	display: none;
}

.allday__fade--noon {
	background: linear-gradient(to right, #c7e1ed 0%, #c7e1ed 23%, #e4eef7 100%);
	background: var(--gradient-noon);
}

.allday__fade--night {
	background: linear-gradient(to right, #314375 0%, #314375 23%, #6c72a9 100%);
	background: var(--gradient-night);
}

.allday__fade--morning {
	background: linear-gradient(to left, #bfdae0 0%, #bfdae0 23%, #d2edeb 100%);
	background: var(--gradient-morning);
}

.allday__bg {
	-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 20rem);
	height: calc(100% + 20rem);
	left: 0;
	mask-image: linear-gradient(to bottom, transparent 0, #000 20rem);
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: -20rem;
	width: 100%;
}

.allday__bg--noon {
	background: linear-gradient(to right, #c7e1ed 0%, #c7e1ed 23%, #e4eef7 100%);
	background: var(--gradient-noon);
	z-index: 0;
}

.allday__bg--night {
	background: linear-gradient(to right, #314375 0%, #314375 23%, #6c72a9 100%);
	background: var(--gradient-night);
	z-index: 0;
}

.allday__bg--morning {
	background: linear-gradient(to left, #bfdae0 0%, #bfdae0 23%, #d2edeb 100%);
	background: var(--gradient-morning);
	z-index: 0;
}

.concept {
	align-items: center;
	background: #000;
	display: flex;
	height: 100svh;
	overflow: hidden;
	padding-bottom: 5rem;
	padding-top: 6.25rem;
	position: relative;
	width: 100%;
}

.concept__bg {
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.concept__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.concept__overlay {
	display: none;
}

.concept .inner {
	position: relative;
	z-index: 1;
}

.concept__heading {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 2rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0;
	line-height: 1;
}

.concept__wrap {
	display: flex;
	flex-direction: row;
	gap: 2.5rem;
	margin-top: 6.625rem;
}

.concept__body {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 2;
}

.concept__time-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.concept__time-item {
	align-items: center;
	color: #ffffff;
	color: var(--white);
	display: flex;
	flex-direction: column;
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 0.625rem;
	font-weight: 600;
	font-weight: var(--semi-bold);
	gap: 0.5rem;
	letter-spacing: 0em;
}

.concept__time-item img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.concept__time-item--noon img {
	height: 2.0625rem;
	width: 2.125rem;
}

.concept__time-item--night img {
	height: 1.914375rem;
	width: 1.884375rem;
}

.concept__time-item--morning img {
	height: 1.93rem;
	width: 2.445rem;
}

.concept__time-line {
	align-self: center;
	transform: rotate(90deg);
	width: 2.3125rem;
}

.concept__time-line img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.concept__map {
	aspect-ratio: 1/1;
	position: absolute;
	right: -5rem;
	top: -2.5rem;
	width: 19.4375rem;
	z-index: 1;
}

.concept__map img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.footer {
	background: #000;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: space-between;
	padding: 3.75rem 1.875rem 1.875rem;
	position: relative;
}

.footer__bg {
	background: linear-gradient(to bottom, #dc707b, #ae1010);
	background: var(--gradient-footer);
	bottom: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.footer > *:not(.footer__bg) {
	position: relative;
	z-index: 1;
}

.footer__top {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	justify-content: space-between;
}

.footer__info {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
}

.footer__logo {
	-webkit-text-decoration: none;
	color: inherit;
	cursor: pointer;
	display: block;
	opacity: 1;
	text-decoration: none;
	transition: opacity 0.3s ease;
	width: 7.5rem;
}

.footer__logo:hover {
	opacity: 0.7;
}

.footer__logo img {
	-o-object-fit: contain;
	aspect-ratio: 120/75;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.footer__company {
	color: #ffffff;
	color: var(--white);
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-font);
	font-size: 1rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.875;
}

.footer__hours,
.footer__holiday {
	color: #ffffff;
	color: var(--white);
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-font);
	font-size: 0.875rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.5;
	margin-top: 0.375rem;
}

.footer__nav {
	display: none;
}

.footer__nav-link {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 2.5rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 2;
	text-align: right;
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: space-between;
}

.footer__catchphrase {
	flex: 1;
}

.footer__catchphrase-ja {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.5rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
	margin-bottom: 1.25rem;
}

.footer__catchphrase-en {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 1.25rem;
}

.footer__copyright {
	color: #ffffff;
	color: var(--white);
	flex-shrink: 0;
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 0.875rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0em;
	text-align: right;
}

.header {
	align-items: center;
	background: linear-gradient(to bottom, #dc707b, #ae1010);
	display: flex;
	flex-direction: row;
	height: 4.6875rem;
	justify-content: space-between;
	left: 0;
	opacity: 0;
	padding: 0 1.25rem;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 100;
}

.header.is-visible {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.3s ease, visibility 0s linear 0s;
	visibility: visible;
}

.header__logo {
	display: block;
	margin: 0;
	position: relative;
	width: 3.5625rem;
	z-index: 102;
}

.header__logo-link {
	-webkit-text-decoration: none;
	color: inherit;
	cursor: pointer;
	display: block;
	opacity: 1;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.header__logo-link:hover {
	opacity: 0.7;
}

.header__logo img {
	-o-object-fit: contain;
	aspect-ratio: 114.23/71.43;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.header__icon {
	display: none;
}

.header__icon img {
	-o-object-fit: contain;
	aspect-ratio: 41/149;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.header__hamburger {
	background: none;
	border: none;
	cursor: pointer;
	height: 1rem;
	padding: 0;
	position: relative;
	width: 4.1875rem;
	z-index: 101;
}

.header__hamburger span {
	background: #ffffff;
	background: var(--white);
	height: 0.125rem;
	position: absolute;
	right: 0;
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, width 0.3s ease;
}

.header__hamburger span:nth-child(1) {
	top: 0;
	width: 100%;
}

.header__hamburger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	width: 75%;
}

.header__hamburger span:nth-child(3) {
	bottom: 0;
	top: auto;
	width: 50%;
}

.header.is-open .header__hamburger span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(20deg);
	width: 100%;
}

.header.is-open .header__hamburger span:nth-child(2) {
	opacity: 0;
	width: 100%;
}

.header.is-open .header__hamburger span:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-20deg);
	width: 100%;
}

.header__nav {
	display: none;
}

.header__nav-link {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.9375rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0em;
	line-height: 2.6666666667;
}

.drawer {
	background: linear-gradient(to top, #850000, #b40000);
	display: flex;
	flex-direction: column;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	padding: 5.9375rem 1.875rem 2.5rem;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}

.header.is-open .drawer {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.drawer__logo {
	display: none;
}

.drawer__main {
	align-items: flex-start;
	display: flex;
	gap: 1.25rem;
	justify-content: space-between;
}

.drawer__nav {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	padding-top: 3.125rem;
}

.drawer__icon {
	flex-shrink: 0;
	width: 2.75rem;
}

.drawer__icon img {
	-o-object-fit: contain;
	aspect-ratio: 41/149;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.drawer__nav-link {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.875rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0.02em;
	line-height: 1.3333333333;
	white-space: nowrap;
}

.drawer__bottom {
	margin-top: 5rem;
}

.drawer__catchphrase-ja {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.5rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
	margin-bottom: 1.25rem;
}

.drawer__catchphrase-en {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
}

body.is-menu-open {
	overflow: hidden;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 37.5rem;
	padding: 0 1.875rem;
	width: 100%;
}

.inner2 {
	margin-left: auto;
	margin-right: auto;
	max-width: 37.5rem;
	padding: 0 1.875rem;
	width: 100%;
}

.lang-switch {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.lang-switch__link {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.8125rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0.02em;
	line-height: 3.0769230769;
	opacity: 0.55;
	transition: opacity 0.3s ease;
}

.lang-switch__link:hover {
	opacity: 1;
}

.lang-switch__link.is-current {
	-webkit-text-decoration: underline;
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 0.35em;
}

.header__lang {
	justify-content: center;
	margin-top: 0.375rem;
}

.drawer__lang {
	gap: 1.25rem;
}

.drawer__lang .lang-switch__link {
	font-size: 1.125rem;
	line-height: 2.2222222222;
}

.footer__lang {
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 0.5rem;
}

.footer__lang .lang-switch__link {
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 2;
}

.mv {
	--scene-w: 100%;
	--scene-h: 66.6667cqh;
	--mv-duration: 3400ms;
	--mv-ease: cubic-bezier(0.82, 0, 0.12, 1);
	background: #000;
	container-type: size;
	height: 100svh;
	isolation: isolate;
	margin-left: 0;
	margin-right: auto;
	overflow: hidden;
	position: relative;
}

.mv__stage {
	background: #000;
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.mv__scene {
	backface-visibility: hidden;
	background: #000;
	height: var(--scene-h);
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	transform: translate3d(0, calc(var(--pos-y) * 1cqh), 0);
	transition: transform var(--mv-duration) var(--mv-ease), opacity 1200ms ease, filter var(--mv-duration) var(--mv-ease);
	width: var(--scene-w);
	z-index: calc(var(--slot) + 4);
}

.mv__scene.is-visible {
	filter: brightness(1);
	opacity: 1;
}

.mv__scene.is-entering {
	filter: brightness(0.94);
	opacity: 0.74;
}

.mv__scene.is-entering.is-visible {
	filter: brightness(1);
	opacity: 1;
}

.mv__scene.is-leaving {
	filter: brightness(0.9) saturate(0.96);
	opacity: 0.96;
}

.mv__scene.is-leaving.is-out {
	filter: brightness(0.76) saturate(0.9);
	opacity: 0.34;
}

.mv__scene img {
	-o-object-fit: cover;
	-o-object-position: center center;
	bottom: 0;
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.mv__content {
	padding-bottom: 1.25rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	padding-top: 1.25rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 10;
}

.mv__title-ja {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.5rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
}

.mv__title-en {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 3.125rem;
	margin-top: 1.5rem;
}

.partners-section {
	padding-bottom: 3.5rem;
	padding-top: 3.5rem;
	width: 100%;
}

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

.partners__logo {
	display: block;
	width: 21.875rem;
}

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

.plans {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
	position: relative;
	width: 100%;
}

.plans::before {
	background-image: url(../images/trip-idea/beginning-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.plans > .inner,
.plans > .plans__inner {
	position: relative;
	z-index: 1;
}

.plans--trip-idea {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.plans--trip-idea::before {
	display: none;
}

.plans__card {
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 12.5rem 1.25rem 1.25rem;
	position: relative;
	width: 100%;
}

.plans__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.plans__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.plans__card:has(.plans__more:hover) .plans__bg img {
	transform: scale(1.1);
}

.plans__bg::after {
	background: rgba(0, 0, 0, 0.3);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.plans__content {
	position: relative;
	z-index: 1;
}

.plans__title {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0;
	line-height: 1;
}

.plans__subtitle {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.25rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.6;
	margin-top: 0.625rem;
}

.plans__more {
	align-items: center;
	color: #ffffff;
	color: var(--white);
	display: inline-flex;
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--bold);
	gap: 1rem;
	line-height: 1;
	margin-top: 2.125rem;
	padding-left: 1.375rem;
	position: relative;
	transition: color 0.3s ease;
}

.plans__more::before {
	-webkit-mask-image: url(../images/more.svg);
	-webkit-mask-size: cover;
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	aspect-ratio: 11/17;
	background-color: #ffffff;
	background-color: var(--white);
	content: "";
	left: 0;
	mask-image: url(../images/more.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: cover;
	position: absolute;
	top: 56%;
	transform: translateY(-50%);
	transition: background-color 0.3s ease;
	width: 0.6875rem;
}

.spot-card {
	aspect-ratio: 280/420;
	border-radius: 0.625rem;
	cursor: pointer;
	overflow: visible;
	position: relative;
	transition: box-shadow 0.3s ease;
	width: 100%;
}

.spot-card__image {
	border-radius: inherit;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.spot-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-card__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
	border-radius: inherit;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.spot-card__number {
	color: #ffffff;
	color: var(--white);
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 5rem;
	font-weight: 500;
	font-weight: var(--medium);
	left: 0.625rem;
	letter-spacing: -0.05em;
	line-height: 1;
	position: absolute;
	top: 0.625rem;
	z-index: 2;
}

.spot-card__content {
	bottom: 0;
	left: 0;
	padding: 1.25rem;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.spot-card__info {
	align-items: flex-end;
	display: flex;
	gap: 0.625rem;
	justify-content: space-between;
}

.spot-card__text {
	flex: 1;
}

.spot-card__area {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 1.5;
}

.spot-card__name {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 1.5;
}

.spot-card__pin {
	flex-shrink: 0;
	height: 1.4375rem;
	width: 1.4375rem;
}

.spot-card__pin img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.spot-modal {
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	width: 100%;
	z-index: 200;
}

.spot-modal.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.spot-modal__overlay {
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.spot-modal__inner {
	height: 100%;
	left: 0;
	overflow-y: auto;
	padding: 5rem 1.25rem 6.25rem;
	position: absolute;
	top: 0;
	width: 100%;
}

.spot-modal__body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
	margin-top: 2.5rem;
}

.spot-modal__image {
	background-color: #f2efe9;
	border-radius: 0.625rem;
	flex-shrink: 0;
	height: auto;
	overflow: hidden;
	width: 100%;
}

.spot-modal__image img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: none;
	width: 100%;
}

.spot-modal__image img.is-loaded {
	opacity: 1;
	transition: none;
}

.spot-modal__image img.is-fading-in {
	opacity: 1;
	transition: opacity 0.35s ease;
}

.spot-modal__info {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.spot-modal__head {
	align-items: baseline;
	display: flex;
	gap: 0.5625rem;
	justify-content: flex-end;
	margin-top: 1.625rem;
}

.spot-modal__number {
	color: #ffffff;
	color: var(--white);
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 3rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: -0.05em;
	line-height: 1;
}

.spot-modal__category {
	color: #ffffff;
	color: var(--white);
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 1rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
}

.spot-modal__area,
.spot-modal__name,
.spot-modal__name-text {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.125rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 1.5;
}

.spot-modal__lead {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.875rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 2;
	margin-top: 2.5rem;
	white-space: pre-line;
}

.spot-modal__description {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.875rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 2;
	max-width: 100%;
}

.spot-modal__close {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	gap: 0.75rem;
	margin-top: 3.5rem;
	padding: 0;
}

.spot-modal__close.spot-modal__close--top {
	margin-top: 0;
}

.spot-modal__close svg {
	height: 1.6875rem;
	width: 1.6875rem;
}

.spot-modal__close span {
	color: #ffffff;
	color: var(--white);
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 1;
}

.time-section {
	overflow: visible;
	padding: 6.5625rem 0 6.25rem;
	position: relative;
	width: 100%;
}

.time-section .time-section__cards-wrapper {
	position: relative;
}

.time-section__header {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.time-section__icon {
	flex-shrink: 0;
}

.time-section__icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.time-section__icon--noon {
	height: 2.875rem;
	width: 2.9375rem;
}

.time-section__icon--night {
	height: 3rem;
	width: 2.9375rem;
}

.time-section__icon--morning {
	height: 2.5rem;
	width: 3.1875rem;
}

.time-section__title {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 2.5rem;
	font-weight: 700;
	font-weight: var(--bold);
	line-height: 2.5rem;
}

.time-section__description {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0em;
	line-height: 2;
	margin-top: 1.25rem;
}

.time-section__cards-wrapper {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	margin-top: 2.6875rem;
	position: relative;
}

.time-section__vertical-label {
	color: #ffffff;
	color: var(--white);
	flex-shrink: 0;
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1.25;
	margin-bottom: 1rem;
}

.time-section--noon .time-section__title,
.time-section--noon .time-section__description,
.time-section--noon .time-section__vertical-label {
	color: #5999d5;
	color: var(--noon-blue);
}

.time-section--morning .time-section__title,
.time-section--morning .time-section__description,
.time-section--morning .time-section__vertical-label {
	color: #50a7c4;
	color: var(--morning-blue);
}

.time-section__cards {
	clip-path: inset(-3.75rem -100vw -3.75rem -100vw);
	overflow: visible;
	position: relative;
	width: 100%;
}

.time-section__cards .swiper-slide {
	flex-shrink: 0;
	width: 17.5rem;
}

.time-section__arrow {
	align-items: center;
	background: none;
	border: none;
	bottom: 0;
	cursor: pointer;
	display: inline-flex;
	height: 2.875rem;
	justify-content: center;
	margin-bottom: auto;
	margin-top: auto;
	padding: 0;
	position: absolute;
	top: 2.25rem;
	transition: opacity 0.2s ease;
	width: 2.25rem;
	z-index: 5;
}

.time-section__arrow:hover {
	opacity: 0.7;
}

.time-section__arrow.is-disabled {
	cursor: default;
	opacity: 0.3;
	pointer-events: none;
}

.time-section__arrow svg {
	display: block;
	height: 1.625rem;
	width: 1rem;
}

.time-section__arrow--prev {
	left: 0rem;
	transform: scaleX(-1);
}

.time-section__arrow--next {
	right: 0rem;
}

.time-section__map {
	display: none;
}

.time-section__map img {
	-o-object-fit: contain;
	aspect-ratio: 281/273;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.time-section__divider.swiper-pagination {
	background: rgba(255, 255, 255, 0.3);
	bottom: auto;
	cursor: pointer;
	display: block;
	height: 0.125rem;
	left: auto;
	margin-top: 3.5625rem;
	position: static;
	transform: none;
	width: 100%;
}

.time-section__divider-fill {
	background: #c00000;
	background: var(--red-accent);
	display: block;
	height: 100%;
	pointer-events: none;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	width: 0;
}

.trip-badge {
	align-items: flex-end;
	color: #000000;
	color: var(--black);
	display: flex;
	gap: 0.5rem;
}

.trip-badge__label {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1.2;
}

.trip-badge__num {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1;
}

.trip-badge--light {
	color: #ffffff;
	color: var(--white);
}

.trip-badge--hero {
	gap: 0.625rem;
}

.trip-badge--hero .trip-badge__label {
	color: #ffffff;
	color: var(--white);
	font-size: 2.1875rem;
}

.trip-badge--hero .trip-badge__num {
	color: #ffffff;
	color: var(--white);
	font-size: 6.25rem;
}

.trip-hero {
	background: linear-gradient(to bottom, #dc707b, #ae1010);
	position: relative;
}

.trip-hero__head {
	padding-bottom: 5rem;
	padding-top: 7.25rem;
}

.trip-hero__title {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1.1;
}

.trip-hero__subtitle {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.25rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.75;
	margin-top: 2.25rem;
}

.trip-hero__main {
	aspect-ratio: 375/650;
	background-image: url(../images/trip-idea/hero.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-height: 43.75rem;
	position: relative;
	width: 100%;
}

.trip-hero__overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.trip-hero__content {
	bottom: 0;
	height: 100%;
	left: 0;
	padding-bottom: 3.125rem;
	padding-top: 2.25rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.trip-hero__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.trip-hero__line {
	background: #ffffff;
	background: var(--white);
	display: block;
	height: 1px;
	margin-top: 1.875rem;
	width: 100%;
}

.trip-hero__catch {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.75rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.5;
	margin-top: 1.875rem;
}

.trip-hero__lead {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.9375rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.6;
	margin-top: auto;
}

.beginning {
	background: transparent;
	overflow: visible;
	padding-bottom: 16.25rem;
	padding-top: 5.125rem;
	position: relative;
}

.beginning__inner {
	position: relative;
	z-index: 1;
}

.beginning__body {
	position: relative;
	z-index: 1;
}

.beginning__title {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 2rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1;
}

.beginning__timeline {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.beginning__time {
	color: #2d2828;
	color: var(--oita-black);
	flex-shrink: 0;
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font);
	font-size: 1.5rem;
	font-weight: 600;
	font-weight: var(--semi-bold);
	letter-spacing: 0em;
	line-height: 1;
}

.beginning__places {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.beginning__place {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.25rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 1.5;
}

.beginning__note {
	display: block;
	font-size: 1rem;
}

.beginning__map {
	position: absolute;
	right: calc(50% - min(76vw, 18rem));
	top: 3.125rem;
	width: 30.1875rem;
	z-index: 1;
}

.beginning__map img {
	-o-object-fit: contain;
	aspect-ratio: 483/465;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.page-bg {
	background-image: url(../images/trip-idea/beginning-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	height: 100vh;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: -1;
}

.trip-allday {
	background: transparent;
	overflow: visible;
	position: relative;
	width: 100%;
}

.trip-allday > *:not(.trip-allday__bg) {
	position: relative;
	z-index: 1;
}

.trip-allday__bg {
	-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 20rem);
	height: calc(100% + 20rem);
	left: 0;
	mask-image: linear-gradient(to bottom, transparent 0, #000 20rem);
	pointer-events: none;
	position: absolute;
	top: -20rem;
	width: 100%;
	z-index: 0;
}

.trip-allday__bg--noon {
	background: linear-gradient(to right, #c7e1ed 0%, #c7e1ed 23%, #e4eef7 100%);
	background: var(--gradient-noon);
	opacity: 0;
}

.trip-allday__bg--night {
	background: linear-gradient(to right, #314375 0%, #314375 23%, #6c72a9 100%);
	background: var(--gradient-night);
	opacity: 0;
}

.trip-allday__bg--morning {
	background: linear-gradient(to left, #bfdae0 0%, #bfdae0 23%, #d2edeb 100%);
	background: var(--gradient-morning);
	opacity: 0;
}

.time-feature {
	overflow: hidden;
	padding-bottom: 6.25rem;
	padding-top: 3.875rem;
	position: relative;
}

.time-feature__header {
	position: relative;
}

.time-feature__sub {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: right;
}

.time-feature__subtitle {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.875rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 1.5;
}

.time-feature__heading {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 2.0625rem;
}

.time-feature__icon {
	display: block;
	flex-shrink: 0;
}

.time-feature__icon img {
	-o-object-fit: contain;
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.time-feature__icon--noon {
	width: 4.0625rem;
}

.time-feature__icon--night {
	width: 3.125rem;
}

.time-feature__icon--morning {
	width: 4.3125rem;
}

.time-feature__title {
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.125rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 1.2;
}

.time-feature__lead {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.125rem;
	font-weight: 500;
	font-weight: var(--medium);
	letter-spacing: 0em;
	line-height: 1.7777777778;
	margin-top: 1.25rem;
}

.time-feature--noon .time-feature__title {
	color: #5999d5;
	color: var(--noon-blue);
}

.time-feature--noon .time-feature__subtitle {
	color: #000000;
	color: var(--black);
}

.time-feature--night .time-feature__title {
	color: #85a3ff;
}

.time-feature--night .time-feature__subtitle,
.time-feature--night .time-feature__lead {
	color: #ffffff;
	color: var(--white);
}

.time-feature--night .trip-badge__label,
.time-feature--night .trip-badge__num {
	color: #ffffff;
	color: var(--white);
}

.time-feature--morning .time-feature__title {
	color: #50a7c4;
	color: var(--morning-blue);
}

.time-feature__cards {
	display: flex;
	flex-direction: column;
	margin-left: -1.875rem;
	margin-right: -1.875rem;
	margin-top: 6rem;
}

.time-feature__cards > .spot-feature + .spot-feature {
	margin-top: 6.25rem;
}

.spot-feature--gallery-v .spot-feature__text,
.spot-feature--gallery-h .spot-feature__text,
.spot-feature--wide .spot-feature__text,
.spot-feature--wide-below .spot-feature__text,
.spot-feature--split .spot-feature__text {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.spot-feature {
	position: relative;
}

.spot-feature__gallery {
	margin-top: 0;
}

.spot-feature--gallery-h .spot-feature__gallery,
.spot-feature--wide .spot-feature__gallery,
.spot-feature--wide-below .spot-feature__gallery,
.spot-feature--split .spot-feature__gallery {
	margin-left: 50%;
	transform: translateX(-50%);
	width: 100vw;
}

.spot-feature__main picture {
	display: block;
	height: 100%;
	width: 100%;
}

.spot-feature__overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.6));
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.spot-feature__label {
	bottom: 1.25rem;
	left: 1.875rem;
	position: absolute;
	z-index: 2;
}

.spot-feature__time {
	color: #ffffff;
	color: var(--white);
	font-family: "Abhaya Libre", "zen old mincho", serif;
	font-family: var(--abhaya-font);
	font-size: 1.5rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1;
}

.spot-feature__name {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 2rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 1.25;
	margin-top: 0.3125rem;
}

.spot-feature__text {
	margin-top: 2.5rem;
}

.spot-feature__tagline {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.5rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 1.5;
}

.spot-feature__body {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.9375rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.6;
	margin-top: 1.25rem;
}

.spot-feature__note {
	color: #2d2828;
	color: var(--oita-black);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.9375rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.6;
	margin-top: 0.9375rem;
}

.spot-feature__note a {
	-webkit-text-decoration: underline;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: opacity 0.3s ease;
}

.time-feature--night .spot-feature__tagline,
.time-feature--night .spot-feature__body,
.time-feature--night .spot-feature__note {
	color: #ffffff;
	color: var(--white);
}

.spot-feature--gallery-v .spot-feature__slider {
	margin-left: 50%;
	position: relative;
	transform: translateX(-50%);
	width: 100vw;
}

.spot-feature--gallery-v .spot-feature__main {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.spot-feature--gallery-v .spot-feature__main .swiper-slide img {
	-o-object-fit: cover;
	aspect-ratio: 375/500;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--gallery-v .spot-feature__thumbs {
	display: none;
}

.spot-feature--gallery-v .spot-feature__thumb {
	background: none;
	border: 0;
	cursor: pointer;
	display: block;
	flex: 1 1 0;
	min-width: 0;
	opacity: 0.5;
	overflow: hidden;
	padding: 0;
	transition: opacity 0.3s ease;
}

.spot-feature--gallery-v .spot-feature__thumb:hover,
.spot-feature--gallery-v .spot-feature__thumb.is-active {
	opacity: 1;
}

.spot-feature--gallery-v .spot-feature__thumb img {
	-o-object-fit: cover;
	aspect-ratio: 190/123;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--gallery-v .spot-feature__arrow {
	align-items: center;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	line-height: 0;
	padding: 0.625rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

.spot-feature--gallery-v .spot-feature__arrow svg {
	display: block;
	height: 1.625rem;
	width: 1rem;
}

.spot-feature--gallery-v .spot-feature__arrow--prev {
	left: 0;
}

.spot-feature--gallery-v .spot-feature__arrow--prev svg {
	transform: scaleX(-1);
}

.spot-feature--gallery-v .spot-feature__arrow--next {
	right: 0;
}

.spot-feature--gallery-v .spot-feature__pagination {
	justify-content: center;
	margin-top: 1.875rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.spot-feature--gallery-v .spot-feature__text {
	margin-top: 2.5rem;
}

.spot-feature--gallery-h {
	display: flex;
	flex-direction: column;
}

.spot-feature--gallery-h .spot-feature__gallery {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.spot-feature--gallery-h .spot-feature__main img {
	-o-object-fit: cover;
	aspect-ratio: 375/500;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--gallery-h .spot-feature__thumbs {
	display: flex;
	gap: 0;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(1) {
	flex: 209;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(2) {
	flex: 166;
}

.spot-feature--gallery-h .spot-feature__thumb img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(1) img {
	aspect-ratio: 209/200;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(2) img {
	aspect-ratio: 166/200;
}

.spot-feature--gallery-h .spot-feature__text {
	margin-top: 2.5rem;
}

.spot-feature--gallery-h .spot-feature__gallery {
	order: -1;
}

.spot-feature--wide {
	display: flex;
	flex-direction: column;
}

.spot-feature--wide .spot-feature__gallery {
	order: -1;
	position: relative;
}

.spot-feature--wide .spot-feature__main img {
	-o-object-fit: cover;
	aspect-ratio: 375/500;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--wide .spot-feature__text {
	margin-top: 2.5rem;
}

.spot-feature--wide-below .spot-feature__main {
	position: relative;
}

.spot-feature--wide-below .spot-feature__main img {
	-o-object-fit: cover;
	aspect-ratio: 375/500;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--wide-below .spot-feature__text {
	margin-top: 2.5rem;
}

.spot-feature--split {
	display: flex;
	flex-direction: column;
}

.spot-feature--split .spot-feature__gallery {
	order: -1;
	position: relative;
}

.spot-feature--split .spot-feature__main picture,
.spot-feature--split .spot-feature__main img {
	-o-object-fit: cover;
	aspect-ratio: 375/500;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.spot-feature--split .spot-feature__text {
	margin-top: 1.5rem;
}

.more-oita {
	background: #000;
	overflow: hidden;
	padding-bottom: 9.375rem;
	padding-top: 4.5rem;
	position: relative;
	width: 100%;
}

.more-oita__bg {
	bottom: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.more-oita__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.more-oita__overlay {
	display: none;
}

.more-oita__inner {
	position: relative;
	text-align: left;
	z-index: 2;
}

.more-oita__title {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 3.75rem;
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1.2;
}

.more-oita__text {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.125rem;
	font-weight: 400;
	font-weight: var(--regular);
	letter-spacing: 0em;
	line-height: 2;
	margin-top: 4.375rem;
	text-align: left;
}

.more-oita__more {
	align-items: center;
	color: #ffffff;
	color: var(--white);
	display: inline-flex;
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.75rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 1;
	margin-top: 0.6875rem;
	padding-left: 1.375rem;
	position: relative;
	transition: color 0.3s ease;
}

.more-oita__more::before {
	-webkit-mask-image: url(../images/more.svg);
	-webkit-mask-size: cover;
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	aspect-ratio: 18/28;
	background-color: #ffffff;
	background-color: var(--white);
	content: "";
	left: 0;
	mask-image: url(../images/more.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: cover;
	position: absolute;
	top: 56%;
	transform: translateY(-50%);
	transition: background-color 0.3s ease;
	width: 0.6875rem;
}

#trip-idea .trip-hero,
#trip-idea .beginning {
	width: 100%;
}

.trip-ideas {
	background: linear-gradient(to bottom, #dc707b, #ae1010);
	overflow: hidden;
	padding-bottom: 3.75rem;
	padding-right: 1.875rem;
	position: relative;
	width: 100%;
}

.trip-ideas__content {
	position: relative;
	z-index: 1;
}

.trip-ideas__img {
	width: 100%;
}

.trip-ideas__img img {
	-o-object-fit: cover;
	aspect-ratio: 1200/800;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.trip-ideas__body {
	margin-top: 1.5rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.trip-ideas__title {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: clamp(40px, 30.4336734694px + 2.5510204082vw, 50px);
	font-weight: 700;
	font-weight: var(--bold);
	letter-spacing: 0em;
	line-height: 1.3333333333;
}

.trip-ideas__subtitle {
	color: #ffffff;
	color: var(--white);
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 0.9375rem;
	font-weight: 400;
	font-weight: var(--regular);
	line-height: 1.8666666667;
	margin-top: 1.25rem;
}

.trip-ideas__more {
	align-items: center;
	color: #ffffff;
	color: var(--white);
	display: inline-flex;
	font-family: "zen old mincho", serif;
	font-family: var(--mincho-font);
	font-size: 1.625rem;
	font-weight: 500;
	font-weight: var(--medium);
	line-height: 1;
	margin-top: 1.75rem;
	padding-left: 1.25rem;
	position: relative;
}

.trip-ideas__more::before {
	-webkit-mask-image: url(../images/more.svg);
	-webkit-mask-size: cover;
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	aspect-ratio: 18/28;
	background-color: #ffffff;
	background-color: var(--white);
	content: "";
	left: 0;
	mask-image: url(../images/more.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: cover;
	position: absolute;
	top: 56%;
	transform: translateY(-50%);
	width: 0.6875rem;
}

@media (any-hover: hover) {

.plans__more:hover {
	color: #dc707b;
}

.plans__more:hover::before {
	background-color: #dc707b;
}

.spot-card:hover {
	box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.6), 0 0 1.125rem rgba(255, 255, 255, 0.35), 0 0 1.875rem rgba(255, 255, 255, 0.2);
}

.spot-feature__note a:hover {
	opacity: 0.7;
}

.more-oita__more:hover {
	color: #dc707b;
}

.more-oita__more:hover::before {
	background-color: #dc707b;
}

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.1111111111vw;
}

main {
	padding-top: 0;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover {
	opacity: 0.8;
}

html {
	scroll-padding-top: 8.125rem;
}

.allday-intro {
	padding-top: 10.9375rem;
}

.allday-intro__title {
	font-size: 6.25rem;
	line-height: 1;
	white-space: nowrap;
}

.allday-intro__subtitle {
	font-size: 1.5rem;
	line-height: 1.75;
	margin-top: 2.0625rem;
}

.allday {
	width: calc(100% - 11.25rem);
}

.allday__fade {
	-webkit-mask-image: linear-gradient(to right, transparent calc(50% + 29.375rem), #000 calc(50% + 37.625rem));
	bottom: 0;
	display: block;
	left: 0;
	mask-image: linear-gradient(to right, transparent calc(50% + 29.375rem), #000 calc(50% + 37.625rem));
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.concept {
	padding-bottom: 7.5rem;
	padding-top: 9.5rem;
	width: calc(100% - 11.25rem);
}

.concept__heading {
	font-size: 2.625rem;
	text-align: right;
}

.concept__wrap {
	flex-direction: column;
	gap: 3rem;
	margin-top: 9.6875rem;
}

.concept__body {
	font-size: 1.25rem;
	line-height: 2.1;
	max-width: 39.75rem;
}

.concept__time-nav {
	flex-direction: row;
	gap: 1.125rem;
}

.concept__time-item {
	gap: 0.75rem;
}

.concept__time-item--noon img {
	height: 2.375rem;
	width: 2.5rem;
}

.concept__time-item--night img {
	height: 1.9375rem;
	width: 1.9375rem;
}

.concept__time-item--morning img {
	height: 1.9375rem;
	width: 2.5rem;
}

.concept__time-line {
	transform: none;
	width: 6.6875rem;
}

.concept__map {
	right: -0.25rem;
	top: 65%;
	transform: translateY(-50%);
	width: 25.25rem;
}

.footer {
	gap: 4.5rem;
	padding: 5rem 6.25rem 2.5rem;
}

.footer__top {
	flex-direction: row;
	gap: 0;
}

.footer__info {
	gap: 1.75rem;
	padding-top: 7.0625rem;
}

.footer__logo {
	width: 17.875rem;
}

.footer__logo img {
	aspect-ratio: 286/147;
}

.footer__company {
	font-size: 1.25rem;
	line-height: 1.5;
}

.footer__hours,
.footer__holiday {
	font-size: 1rem;
	margin-top: 0.375rem;
}

.footer__nav {
	display: flex;
	flex-direction: column;
}

.footer__bottom {
	align-items: flex-end;
	flex-direction: row;
	margin-top: 5rem;
}

.footer__catchphrase-ja {
	font-size: 2.5rem;
}

.footer__catchphrase-en {
	font-size: 6.25rem;
	margin-top: 1.5rem;
}

.header {
	align-items: center;
	flex-direction: column;
	gap: 3.75rem;
	height: 100vh;
	justify-content: space-between;
	left: auto;
	opacity: 1;
	overflow-y: auto;
	padding: 2.5rem 0 3.125rem;
	pointer-events: none;
	right: 0;
	top: 0;
	transition: none;
	visibility: visible;
	width: 11.25rem;
}

.header,
.header.is-visible {
	pointer-events: none;
}

.header__logo-link,
.header__nav,
.header__hamburger,
.drawer {
	pointer-events: auto;
}

.header__logo {
	width: 7.125rem;
}

.header__icon {
	display: block;
	width: 2.5rem;
}

.header__hamburger {
	display: none;
}

.header__nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.drawer {
	display: none;
}

.inner {
	max-width: 78.75rem;
	padding: 0 6.25rem;
}

.inner2 {
	max-width: 78.75rem;
	padding: 0 3.125rem;
}

.mv {
	--scene-w: 66.6667cqw;
	--scene-h: 100%;
	height: 100vh;
	width: calc(100% - 11.25rem);
}

.mv__scene {
	transform: translate3d(calc(var(--pos-x) * 1cqw), 0, 0);
}

.mv__content {
	bottom: 3rem;
	padding-left: 6.125rem;
	padding-right: 6.125rem;
	top: auto;
	transform: none;
}

.mv__title-ja {
	font-size: 2.5rem;
}

.mv__title-en {
	font-size: 6.25rem;
	line-height: 1;
}

.partners-section {
	padding-bottom: 5rem;
	padding-top: 5rem;
	width: calc(100% - 11.25rem);
}

.plans {
	padding-bottom: 9.375rem;
	padding-top: 9.375rem;
	width: calc(100% - 11.25rem);
}

.plans::before {
	right: -11.25rem;
}

.plans--trip-idea {
	padding-bottom: 9.375rem;
	padding-top: 9.375rem;
}

.plans__card {
	padding: 14.75rem 3.4375rem 2.875rem;
}

.plans__title {
	font-size: 5rem;
}

.plans__subtitle {
	font-size: 1.5rem;
	line-height: 1.75;
}

.plans__more {
	font-size: 2.5rem;
}

.plans__more::before {
	width: 1rem;
}

.spot-modal__overlay {
	width: calc(100% - 11.25rem);
}

.spot-modal__inner {
	overflow-y: auto;
	padding: 6.5rem 6.4375rem 6.875rem;
	width: calc(100% - 11.25rem);
}

.spot-modal__body {
	flex-direction: row;
	gap: 2.25rem;
	margin-top: 2.625rem;
}

.spot-modal__image {
	width: 39.75rem;
}

.spot-modal__image img {
	aspect-ratio: 636/420;
}

.spot-modal__info {
	gap: 1.25rem;
	width: auto;
}

.spot-modal__head {
	margin-top: 0;
}

.spot-modal__number {
	font-size: 5rem;
}

.spot-modal__category {
	font-size: 1.25rem;
}

.spot-modal__area,
.spot-modal__name,
.spot-modal__name-text {
	font-size: 1.5rem;
}

.spot-modal__lead {
	font-size: 1rem;
	line-height: 2;
	margin-top: 2.75rem;
}

.spot-modal__description {
	font-size: 1rem;
	max-width: 23.375rem;
}

.spot-modal__close {
	margin-top: 3.75rem;
}

.spot-modal__close.spot-modal__close--top {
	display: none;
}

.time-section {
	padding-bottom: 15.75rem;
	padding-top: 15.6875rem;
}

.time-section__header {
	gap: 2.5rem;
}

.time-section__icon--noon {
	height: 3.75rem;
	width: 3.8125rem;
}

.time-section__icon--night {
	height: 3.1875rem;
	width: 3.125rem;
}

.time-section__icon--morning {
	height: 3.125rem;
	width: 3.9375rem;
}

.time-section__title {
	font-size: 5rem;
	line-height: 1;
}

.time-section__description {
	padding-left: 5.875rem;
}

.time-section__cards-wrapper {
	margin-top: 3.75rem;
	padding-left: 5rem;
}

.time-section__vertical-label {
	margin-bottom: 1rem;
}

.time-section__arrow--prev {
	left: 2.75rem;
}

.time-section__arrow--next {
	left: 68.9375rem;
	right: auto;
}

.time-section__map {
	display: block;
	pointer-events: none;
	position: absolute;
	right: 6.875rem;
	top: 10rem;
	width: 17.5625rem;
}

.time-section__divider.swiper-pagination {
	margin-top: 2.6875rem;
}

.trip-badge {
	gap: 0.875rem;
}

.trip-badge__label {
	font-size: 2.0625rem;
}

.trip-badge__num {
	font-size: 5.5rem;
}

.trip-badge--hero {
	gap: 1rem;
}

.trip-badge--hero .trip-badge__label {
	font-size: 2.1875rem;
}

.trip-badge--hero .trip-badge__num {
	font-size: 6.25rem;
}

.trip-hero__head {
	padding-bottom: 6.25rem;
	padding-top: 7.8125rem;
}

.trip-hero__title {
	font-size: 5rem;
}

.trip-hero__subtitle {
	font-size: 1.5rem;
	line-height: 1.75;
	margin-top: 1.25rem;
}

.trip-hero__main {
	aspect-ratio: 1260/700;
}

.trip-hero__content {
	max-height: auto;
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.trip-hero__line {
	margin-top: 2.5rem;
	width: 28.0625rem;
}

.trip-hero__catch {
	font-size: 2.875rem;
	line-height: 1.347826087;
	margin-top: 2.5rem;
}

.trip-hero__lead {
	font-size: 1rem;
	line-height: 1.75;
	margin-left: auto;
	max-width: 22.8125rem;
}

.beginning {
	padding-bottom: 17.5rem;
	padding-top: 12.5rem;
}

.beginning__title {
	font-size: 3.125rem;
}

.beginning__timeline {
	gap: 1rem;
	margin-top: 2.625rem;
}

.beginning__time {
	font-size: 2rem;
}

.beginning__places {
	gap: 1.75rem;
}

.beginning__place {
	font-size: 1.25rem;
}

.beginning__map {
	right: 4rem;
	right: 4rem;
	top: -5rem;
	width: 43.75rem;
}

.beginning__map img {
	aspect-ratio: 633/574;
}

.trip-allday {
	width: calc(100% - 11.25rem);
}

.time-feature {
	padding-bottom: 12.5rem;
	padding-top: 5.25rem;
}

.time-feature__sub {
	gap: 0.25rem;
}

.time-feature__subtitle {
	font-size: 1.125rem;
}

.time-feature__heading {
	gap: 3rem;
	margin-top: 0.5rem;
}

.time-feature__icon--noon {
	width: 5.625rem;
}

.time-feature__icon--night {
	width: 3.75rem;
}

.time-feature__icon--morning {
	width: 5.625rem;
}

.time-feature__title {
	font-size: 6.25rem;
}

.time-feature__lead {
	font-size: 1.125rem;
	margin-top: 2rem;
}

.time-feature__cards {
	margin-left: 0;
	margin-right: 0;
	margin-top: 12.5rem;
}

.time-feature__cards > .spot-feature + .spot-feature {
	margin-top: 12.5rem;
}

.spot-feature--gallery-v .spot-feature__text,
.spot-feature--gallery-h .spot-feature__text,
.spot-feature--wide .spot-feature__text,
.spot-feature--wide-below .spot-feature__text,
.spot-feature--split .spot-feature__text {
	padding-left: 0;
	padding-right: 0;
}

.spot-feature--gallery-h .spot-feature__gallery,
.spot-feature--wide .spot-feature__gallery,
.spot-feature--wide-below .spot-feature__gallery,
.spot-feature--split .spot-feature__gallery {
	margin-left: 0;
	transform: none;
	width: auto;
}

.spot-feature__label {
	bottom: 1.75rem;
	left: 1.625rem;
}

.spot-feature__time {
	font-size: 2rem;
}

.spot-feature__name {
	font-size: 2rem;
	line-height: 1.2;
	margin-top: 0.25rem;
}

.spot-feature__text {
	margin-top: 2.625rem;
}

.spot-feature__body {
	font-size: 1rem;
	line-height: 1.75;
	margin-top: 1.25rem;
}

.spot-feature--gallery-v .spot-feature__slider {
	align-items: stretch;
	display: flex;
	gap: 1.25rem;
	margin-left: 0;
	transform: none;
	width: auto;
}

.spot-feature--gallery-v .spot-feature__main {
	flex: 1;
	min-width: 0;
}

.spot-feature--gallery-v .spot-feature__main .swiper-slide img {
	aspect-ratio: 930/540;
}

.spot-feature--gallery-v .spot-feature__thumbs {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 1.25rem;
	width: 11.875rem;
}

.spot-feature--gallery-v .spot-feature__arrow {
	display: none;
}

.spot-feature--gallery-v .spot-feature__arrow svg {
	height: 2.0625rem;
	width: 1.25rem;
}

.spot-feature--gallery-v .spot-feature__pagination {
	display: none;
}

.spot-feature--gallery-v .spot-feature__text {
	margin-top: 2.5rem;
	max-width: 52.25rem;
	width: 100%;
}

.spot-feature--gallery-h {
	align-items: flex-end;
	flex-direction: row;
	gap: 6.25rem;
	justify-content: space-between;
}

.spot-feature--gallery-h .spot-feature__gallery {
	flex: 0 0 46.25rem;
	max-width: 46.25rem;
}

.spot-feature--gallery-h .spot-feature__main img {
	aspect-ratio: 740/600;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(1) {
	flex: 429;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(2) {
	flex: 311;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(1) img {
	aspect-ratio: 429/200;
}

.spot-feature--gallery-h .spot-feature__thumb:nth-child(2) img {
	aspect-ratio: 311/200;
}

.spot-feature--gallery-h .spot-feature__text {
	flex: 1;
	margin-top: 0;
	max-width: 18.125rem;
	width: 100%;
}

.spot-feature--gallery-h .spot-feature__gallery {
	order: 0;
}

.spot-feature--wide .spot-feature__gallery {
	order: 0;
}

.spot-feature--wide .spot-feature__main img {
	aspect-ratio: 1155/600;
}

.spot-feature--wide .spot-feature__text {
	bottom: 2.5rem;
	margin-top: 0;
	position: absolute;
	right: 1.875rem;
	width: 18.125rem;
	z-index: 2;
}

.spot-feature--wide .spot-feature__tagline,
.spot-feature--wide .spot-feature__body {
	color: #ffffff;
	color: var(--white);
}

.spot-feature--wide .spot-feature__label {
	bottom: 2.5rem;
}

.spot-feature--wide-below .spot-feature__main img {
	aspect-ratio: 1155/600;
}

.spot-feature--wide-below .spot-feature__text {
	margin-top: 2.25rem;
	max-width: 52.25rem;
	width: 100%;
}

.spot-feature--split .spot-feature__gallery {
	order: 0;
}

.spot-feature--split .spot-feature__main picture,
.spot-feature--split .spot-feature__main img {
	aspect-ratio: 1155/600;
}

.spot-feature--split .spot-feature__text {
	bottom: 2.5rem;
	margin-top: 0;
	position: absolute;
	right: 1.875rem;
	width: 31.25rem;
	z-index: 2;
}

.spot-feature--split .spot-feature__tagline,
.spot-feature--split .spot-feature__body {
	color: #ffffff;
	color: var(--white);
}

.spot-feature--split .spot-feature__label {
	bottom: 2.5rem;
}

.more-oita {
	width: calc(100% - 11.25rem);
}

.more-oita {
	padding-bottom: 5.875rem;
	padding-top: 16.25rem;
}

.more-oita__title {
	font-size: 7.5rem;
}

.more-oita__text {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-top: 14.1875rem;
}

.more-oita__more {
	font-size: 2.875rem;
	margin-top: 2.75rem;
	padding-left: 1.625rem;
}

.more-oita__more::before {
	width: 1.125rem;
}

#trip-idea .trip-hero,
#trip-idea .beginning {
	width: calc(100% - 11.25rem);
}

.trip-ideas {
	padding-bottom: 6.875rem;
	padding-right: 3.75rem;
	width: calc(100% - 11.25rem);
}

.trip-ideas__img img {
	aspect-ratio: 1200/428;
}

.trip-ideas__body {
	margin-top: 3.5rem;
	padding-left: 6.25rem;
	padding-right: 6.25rem;
}

.trip-ideas__title {
	font-size: 5rem;
}

.trip-ideas__subtitle {
	font-size: 1.5rem;
	margin-top: 3.5rem;
}

.trip-ideas__more {
	font-size: 2.875rem;
	margin-top: 1.25rem;
	padding-left: 1.625rem;
}

.trip-ideas__more::before {
	width: 1.125rem;
}

}

@media (min-width: 1440px) {

html {
	font-size: 16px;
}

}

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

.u-mobile700 {
	display: block;
}

}

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

.u-mobile650 {
	display: block;
}

}

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

.u-mobile600 {
	display: block;
}

}

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

.u-desktop-550 {
	display: block;
}

.u-mobile550 {
	display: block;
}

}

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

.u-desktop-500 {
	display: block;
}

.u-mobile500 {
	display: block;
}

}

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

.u-desktop-450 {
	display: block;
}

.u-mobile450 {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
