/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--base: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia, serif;
	--gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体 Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--blu: 39, 86, 136;
	--aqu: 237, 249, 255;
	--lim: 241, 255, 226;
	--pnk: 255, 233, 233;
	--gld: 149, 129, 22;
	--brn: 211, 172, 111;

	--pageTop-right: 1rem;
	--pageTop-bottom: 5rem;
}

/* ---------------------------------------------------
  RESET
--------------------------------------------------- */
:where(*),
:where(*::before),
:where(*::after) {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

:where(table) {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
}

:where(caption, th) {
	text-align: left;
	font-size: inherit;
}

:where(address, b, caption, cite, code, dfn, em, i, strong, th, var) {
	font-style: normal;
	font-weight: normal;
}

:where(img, fieldset, area) {
	border: 0;
}

:where(img) {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: min(8rem, 5.857vw);
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 12.8vw;
	}
}

body {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
	font-family: var(--base);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
	overflow-x: hidden;
}

body .base {
	font-family: var(--base);
}

body .gothic {
	font-family: var(--gothic);
}

:where(input, select, textarea, button, label) {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

:where(a) {
	color: inherit;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

:where(a:hover) {
	text-decoration: none;
	opacity: 0.6;
}

/*
	画像保存禁止
------------------------------ */
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	user-select: none;
}

/* ---------------------------------------------------
  表示切り替え（PC / SP）
--------------------------------------------------- */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.list.en li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

ul.note li {
	font-family: var(--gothic);
	font-size: min(1.2rem, 0.878vw);
}

ul.note li::before {
	content: "※";
}

ul.note.en li::before {
	content: "*";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/* ---------------------------------------------------
  電話リンク
--------------------------------------------------- */
.telephone {
	text-decoration: none;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.telephone {
		pointer-events: all;
	}
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button svg {
	position: absolute;
	top: 50%;
	right: min(1.6rem, 1.171vw);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.link-button svg {
		right: 5.333vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blu), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: var(--pageTop-right);
	bottom: var(--pageTop-bottom);
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
  slick
--------------------------------------------------- */
.slick-list {
	line-height: 0;
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.header__title {
	width: 50.293vw;
	position: absolute;
	top: 20.717vw;
	right: 8.565vw;
}

.header__slide--item {
	position: relative;
}

.header-content {
	position: absolute;
	z-index: 1;
}

.header-content .map {
	position: absolute;
}

.header-content .map__inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.header-content .map__bg,
.header-content .map-point {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	transition: all 0.5s ease 0s;
}

.header-content .map__bg {
	z-index: 1;
}

.header-content .map-point {
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.header {
		position: relative;
	}

	.header__title {
		width: 100%;
		top: 14.933vw;
		right: 0;
	}

	.header-content__title {
		margin: 0 auto;
	}

	.header-content .map {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

/*
	沖縄
------------------------------ */
/* slide1 */
.okinawa .slide1 .header-content {
	width: 55.930vw;
	height: 31.04vw;
	right: 3.514vw;
	bottom: 6.223vw;
}

.okinawa .slide1 .map {
	width: 32.87vw;
	height: 19.693vw;
	bottom: 0;
	left: 10.761vw;
}

.okinawa .slide1 .map__bg {
	background-image: url(../img/map01-line.webp);
	width: 24.744vw;
	height: 13.836vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.okinawa .slide1 .map__naha {
	background-image: url(../img/map01-naha.webp);
	width: 12.372vw;
	height: 12.592vw;
	top: 0;
	right: 0;
}

.okinawa .slide1 .map__naha:hover {
	background-image: url(../img/map01-naha-yel.webp);
}

.okinawa .slide1 .map__hirara {
	background-image: url(../img/map01-hirara.webp);
	width: 13.031vw;
	height: 10.322vw;
	left: 10.249vw;
	bottom: 0.732vw;
}

.okinawa .slide1 .map__hirara:hover {
	background-image: url(../img/map01-hirara-yel.webp);
}

.okinawa .slide1 .map__ishigaki {
	background-image: url(../img/map01-ishigaki.webp);
	width: 12.738vw;
	height: 9.663vw;
	left: 0.366vw;
	bottom: 0;
}

.okinawa .slide1 .map__ishigaki:hover {
	background-image: url(../img/map01-ishigaki-yel.webp);
}

@media screen and (max-width: 768px) {
	.okinawa .slide1 .header-content {
		width: 100%;
		height: calc(100% - 12.8vw);
		right: 0;
		bottom: 0;
	}

	.okinawa .slide1 .header-content__title {
		width: 90.933vw;
	}

	.okinawa .slide1 .map {
		background-image: url(../img/map01-bg_sp.webp);
		width: 76.8vw;
		height: 46.133vw;
		bottom: 13.333vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.okinawa .slide1 .map__bg,
	.okinawa .slide1 .map__naha,
	.okinawa .slide1 .map__hirara,
	.okinawa .slide1 .map__ishigaki {
		display: none;
	}
}

/* slide2 */
.okinawa .slide2 .header-content {
	width: 57.76vw;
	height: 36.457vw;
	bottom: 2.928vw;
	left: 1.537vw;
}

.okinawa .slide2 .map {
	width: 36.969vw;
	height: 23.792vw;
	bottom: 0;
	left: 9.883vw;
}

.okinawa .slide2 .map__bg {
	background-image: url(../img/map02-line.webp);
	width: 25.329vw;
	height: 14.202vw;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.okinawa .slide2 .map__naha {
	background-image: url(../img/map02-naha.webp);
	width: 10.981vw;
	height: 10.981vw;
	top: 0;
	right: 2.928vw;
}

.okinawa .slide2 .map__naha:hover {
	background-image: url(../img/map02-naha-yel.webp);
}

.okinawa .slide2 .map__ishigaki {
	background-image: url(../img/map02-ishigaki.webp);
	width: 13.909vw;
	height: 10.688vw;
	left: 10.981vw;
	bottom: 6.589vw;
}

.okinawa .slide2 .map__ishigaki:hover {
	background-image: url(../img/map02-ishigaki-yel.webp);
}

.okinawa .slide2 .map__taiwan {
	background-image: url(../img/map02-taiwan.webp);
	width: 14.348vw;
	height: 22.401vw;
	left: -1.977vw;
	bottom: 0.366vw;
}

.okinawa .slide2 .map__taiwan:hover {
	background-image: url(../img/map02-taiwan-yel.webp);
}

@media screen and (max-width: 768px) {
	.okinawa .slide2 .header-content {
		width: 100%;
		height: calc(100% - 12.8vw);
		right: 0;
		bottom: 0;
	}

	.okinawa .slide1 .header-content__title {
		width: 90.933vw;
	}

	.okinawa .slide2 .map {
		background-image: url(../img/map02-bg_sp.webp);
		width: 70.133vw;
		height: 45.333vw;
		bottom: 7.2vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.okinawa .slide2 .map__bg,
	.okinawa .slide2 .map__naha,
	.okinawa .slide2 .map__ishigaki,
	.okinawa .slide2 .map__taiwan {
		display: none;
	}
}

/* ----------------------------------------------------
	fixed-nav
---------------------------------------------------- */
.fixed-nav {
	background-color: rgba(var(--wht), 0.85);
	padding: 0 min(5rem, 3.66vw);
	width: 100%;
	height: min(8rem, 5.857vw);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.fixed-nav__logo {
	width: min(31.2rem, 22.84vw);
}

@media screen and (max-width: 768px) {
	.fixed-nav {
		padding: 0 3.2vw 0 2.667vw;
		height: 12.8vw;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
	}

	.fixed-nav__logo {
		width: 53.333vw;
	}
}

/*
	gnav
------------------------------ */
.gnav {
	font-size: min(1.6rem, 1.171vw);
}

.gnav__list {
	display: flex;
}

.gnav__list--item:not(:first-of-type) {
	margin-left: min(4rem, 2.928vw);
}

.gnav__list--item a {
	color: rgb(var(--blu));
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.gnav {
		background-image: url('../img/gnavback01.png');
    background-size: cover;             /* 画像を全体にフィットさせる */
    background-position: center;        /* 中央に配置 */
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;                      /* 高さをビューポートの高さに */
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding-top: 24vw;
		text-align: center;
		display: block;
	}

	.gnav__list--item {
		margin: 0 0 30px;
	}

	.gnav__list--item a {
		color: #fff;
		line-height: normal;
		font-size: 4.267vw;
	}

	.overlay {
		background: rgba(var(--blk), 0.75);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
		content: "";
	}

	/* is-open */
	body.is-open {
		width: 100vw;
		height: 100vh;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
	}

	.is-open .gnav {
		z-index: 999;
		transform: translateX(0);
	}

	.is-open .overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}
}

/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 8.533vw;
		height: 1.867vw;
		display: block;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1000;
		cursor: pointer;
	}

	.toggle__inner::before {
		line-height: 1;
		color: rgb(var(--blu));
		font-family: var(--gothic);
		font-size: 2.4vw;
		font-weight: 400;
		width: 100%;
		text-align: center;
		opacity: 1;
		position: absolute;
		top: -3.2vw;
		left: 0;
		content: "MENU";
	}

	.toggle__inner--item {
		background: rgb(var(--blu));
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 0;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		bottom: 0;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner::before {
		opacity: 0;
	}

	.is-open .toggle__inner--item {
		background: rgb(var(--blu));
		transform-origin: 0 0;
	}

	.is-open .toggle__inner--item:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

	.is-open .toggle__inner--item:nth-child(2) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--blu));
	padding: min(3rem, 2.196vw) 0;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	text-align: center;
}

.footer .note {
	margin-bottom: min(2.4rem, 1.757vw);
}

.footer__sns {
	margin-bottom: min(4.5rem, 3.294vw);
	display: flex;
	justify-content: center;
}

.footer__sns--item {
	margin: 0 min(1.3rem, 0.952vw);
	width: min(4.5rem, 3.294vw);
}

.footer__nav {
	margin-bottom: min(2.4rem, 1.757vw);
}

.footer__nav--list {
	display: flex;
	justify-content: center;
}

.footer__nav--list li {
	padding: 0 2em;
	position: relative;
}

.footer__nav--list li:not(:last-of-type)::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "|";
}

.footer__nav--list li a {
	text-decoration: none;
}

.footer__nav--list li a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 5.333vw 0;
		font-size: 3.733vw;
	}

	.footer .note {
		margin-bottom: 3.2vw;
		padding: 0 6.4vw;
	}

	.footer__sns {
		margin-bottom: 6.4vw;
	}

	.footer__sns--item {
		margin: 0 3.2vw;
		width: 11.2vw;
	}

	.footer__nav {
		margin-bottom: 4vw;
		font-size: 3.2vw;
	}

	.footer__nav--list {
		display: block;
	}

	.footer__nav--list li {
		padding: 0
	}

	.footer__nav--list li:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.footer__nav--list li:not(:last-of-type)::after {
		display: none;
	}

	.footer__copy {
		font-size: 3.2vw;
	}
}

/* ----------------------------------------------------
	bg-image
---------------------------------------------------- */
.bg-image {
	background-image: url(../img/bg-image.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.bg-image {
		background-image: url(../img/bg-image_sp.webp);
	}
}

/* ----------------------------------------------------
	asuka-link
---------------------------------------------------- */
.asuka-link {
	padding: min(19rem, 13.909vw) 0 min(5rem, 3.66vw);
	display: flex;
	justify-content: center;
}

.asuka-link .link-button.type1,
.asuka-link .link-button.type2 {
	margin: 0 min(2.8rem, 2.05vw);
	width: min(52.8rem, 38.653vw);
	height: min(13rem, 9.517vw);
	font-size: min(2.4rem, 1.757vw);
}

.asuka-link .link-button.type1 {
	/*background-color: rgb(var(--blu));*/
	color: rgb(var(--wht));
  background-image: url(../img/aplus_btn_type1.jpg);
  background-size: cover;
}
.asuka-link .link-button.type1 {
  justify-content: start;
  padding-left: 50px;
}

a.type1 span::after {
    width: 18px;
    height: 29px;
    content: "";
    background: url(../img/arrow_solid.png) no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
}

.asuka-link .link-button.type2 {
	background-color: rgb(var(--wht));
	line-height: 1.5;
	color: rgb(var(--blu));
	font-weight: 600;
	border: solid 1px rgb(var(--blu));
	flex-direction: column;
}

.asuka-link .link-button.type2::before {
	width: calc(100% - min(1.6rem, 1.171vw));
	height: calc(100% - min(1.6rem, 1.171vw));
	border: solid 1px rgb(var(--blu));
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.asuka-link .link-button .type2__small {
	line-height: 1.75;
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
}

.asuka-link .link-button .type2__sub {
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.asuka-link {
		padding: 10.667vw 0;
		display: block;
	}

	.asuka-link .link-button.type1,
	.asuka-link .link-button.type2 {
		margin: 0 auto;
		width: 88vw;
		height: 35vw;
		font-size: 6.4vw;
	}

  .asuka-link .link-button.type1 {
    background-image: url(../img/aplus_btn_type1_sp.jpg);
    background-size: cover;
  }

	.asuka-link .link-button.type1 {
		margin-bottom: 8vw;
	}

  a.type1 span::after {
    content: none;
  }

  /*a.type1::before {
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    bottom: 0;
    content: "";
    height: 10px;
    margin: auto;
    position: absolute;
    left: 250px;
    top: 0;
    transform: rotate(45deg);
    width: 10px;
  }*/

  .asuka-link .link-button.type2 {
		padding: 4.267vw 0;
		height: auto;
		text-align: center;
	}

	.asuka-link .link-button.type2::before {
		width: calc(100% - 2.667vw);
		height: calc(100% - 2.667vw);
	}

	.asuka-link .link-button .type2__small {
		font-size: 4.267vw;
	}

	.asuka-link .link-button .type2__sub {
		font-size: 5.333vw;
	}
}

/* ----------------------------------------------------
	inquiry
---------------------------------------------------- */
.inquiry {
	padding: min(4.5rem, 3.294vw) 0 min(6rem, 4.392vw);
	text-align: center;
}

.inquiry__title {
	margin-bottom: min(2.4rem, 1.757vw);
	font-family: var(--gothic);
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
}

.inquiry__title--inner {
	border-bottom: solid 1px rgb(var(--blk));
	display: inline-block;
}

.inquiry__content--title {
	font-size: min(2rem, 1.464vw);
}

.inquiry__content--tel .tel {
	font-size: min(2rem, 1.464vw);
}

.inquiry__content--tel .tel .telephone {
	color: rgb(var(--blu));
	font-size: min(4rem, 2.928vw);
	font-weight: 600;
}

.inquiry__content--tel .tel__time {
	line-height: 1;
	font-family: var(--gothic);
	font-size: min(2rem, 1.464vw);
}

.inquiry__content--tel .note {
	margin-top: 1em;
	font-family: var(--gothic);
}

.inquiry__content--tel .link-button {
	background-color: rgb(var(--wht));
	margin: min(2rem, 1.464vw) auto 0;
	width: min(30rem, 21.962vw);
	height: min(5rem, 3.66vw);
	color: rgb(var(--blu));
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	border: solid 1px rgb(var(--blu));
	border-radius: min(5rem, 3.66vw);
}

.inquiry__content--tel .link-button svg {
	stroke: rgb(var(--blu));
	width: min(2.6rem, 1.903vw);
	height: min(0.5rem, 0.366vw);
}

@media screen and (max-width: 768px) {
	.inquiry {
		padding: 0 0 10.667vw;
	}

	.inquiry__title {
		margin-bottom: 2.667vw;
		font-size: 4.267vw;
	}

	.inquiry__content--title {
		font-size: 5.333vw;
	}

	.inquiry__content--tel .tel {
		font-size: 3.733vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.inquiry__content--tel .tel .telephone {
		margin-left: 0.5rem;
		font-size: 9.6vw;
	}

	.inquiry__content--tel .tel__time {
		width: 100%;
		font-size: 4.267vw;
	}

	.inquiry__content--tel .link-button {
		margin-top: 4.267vw;
		width: 80vw;
		height: 13.333vw;
		font-size: 4.267vw;
		border-radius: 13.333vw;
	}

	.inquiry__content--tel .link-button svg {
		width: 6.933vw;
		height: 1.333vw;
	}
}

/* ----------------------------------------------------
	top__section
---------------------------------------------------- */
.top__section {
	background-color: rgb(var(--aqu));
	padding-bottom: min(8rem, 5.857vw);
}

.top__section--title {
	margin: 0 auto min(2.4rem, 1.757vw);
	width: min(114rem, 83.455vw);
	color: rgb(var(--gld));
	font-size: min(2.8rem, 2.05vw);
	font-weight: 600;
	text-align: center;
	position: relative;
}

.top__section--title::before {
	width: 100%;
	height: min(0.4rem, 0.293vw);
	border-top: solid 1px rgb(var(--gld));
	border-bottom: solid 1px rgb(var(--gld));
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
	content: "";
}

.top__section--title span {
	background-color: rgb(var(--aqu));
	padding: 0 0.5em;
	display: inline-block;
	position: relative;
	z-index: 2;
}

.top__section--title small {
	font-size: min(2rem, 1.464vw);
}

.top__section--content {
	margin: 0 auto;
	width: min(114rem, 83.455vw);
}

@media screen and (max-width: 768px) {
	.top__section {
		padding-bottom: 12vw;
	}

	.top__section--title {
		margin-bottom: 4vw;
		width: calc(100% - 12.267vw);
		line-height: 1.2;
		font-size: 5.333vw;
	}

	.top__section--title::before {
		height: 1.067vw;
	}

	.top__section--title small {
		font-size: 1em;
	}

	.top__section--content {
		padding: 0 6.133vw;
		width: 100%;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	padding-top: min(8rem, 5.857vw);
}

.about__content {
	margin-bottom: 1em;
	text-align: center;
}

.about__content--title {
	margin-bottom: min(0.5rem, 0.366vw);
	font-size: min(2.4rem, 1.757vw);
	font-weight: 600;
}

.about__content--text .text {
	line-height: 2.5;
	font-family: var(--gothic);
	font-size: min(1.8rem, 1.318vw);
}

.about__content--map {
	margin: 0 auto;
	width: min(100rem, 73.206vw);
}

@media screen and (max-width: 768px) {
	.about {
		padding-top: 12vw;
	}

	.about__content--title {
		margin-bottom: 2.667vw;
		font-size: 4.8vw;
	}

	.about__content--text .text {
		line-height: 2;
		font-size: 3.733vw;
	}

	.about__content--map {
		width: 100%;
	}
}

/* ----------------------------------------------------
	pleasure
---------------------------------------------------- */
.pleasure .top__section--content {
	width: min(119rem, 87.116vw);
}

.pleasure__slide .slick-list {
	line-height: normal;
}

.pleasure__slide .slick-slide {
	margin: 0 min(2.5rem, 1.83vw);
}

.pleasure__slide .slick-arrow {
	width: min(4rem, 2.928vw);
	height: min(4rem, 2.928vw);
	text-indent: -9999px;
	cursor: pointer;
}

.pleasure__slide .slick-prev,
.pleasure__slide .slick-next {
	background-image: url(../img/arrow-slick.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: min(11.4rem, 8.346vw);
	z-index: 1;
}

.pleasure__slide .slick-prev {
	left: max(-4rem, -2.928vw);
}

.pleasure__slide .slick-next {
	right: max(-4rem, -2.928vw);
	transform: rotate(180deg);
}

.pleasure__slide--item {
	padding-top: min(3rem, 2.196vw);
}

.pleasure__image {
	margin-bottom: min(1.4rem, 1.025vw);
	position: relative;
}

.pleasure__image figcaption,
.pleasure__image span {
	position: absolute;
}

.pleasure__image figcaption {
	line-height: 0.75;
	color: rgb(var(--gld));
	font-size: min(7rem, 5.124vw);
	top: max(-2.5rem, -1.83vw);
	left: min(1.7rem, 1.245vw);
}

.pleasure__image span {
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	text-shadow: 0 0 3px rgb(var(--blk));
	right: 0;
	bottom: 0;
}

.pleasure__content {
	text-align: center;
}

.pleasure__content--title {
	margin-bottom: min(1rem, 0.732vw);
	font-size: min(2rem, 1.464vw);
}

.pleasure__content--text {
	font-family: var(--gothic);
	text-align: left;
}

.pleasure__content--text .text {
	font-size: min(1.6rem, 1.171vw);
}

.pleasure__content--text .note {
	margin-top: 0.5em;
}

@media screen and (max-width: 768px) {
	.pleasure {
		overflow: hidden;
	}

	.pleasure .top__section--content {
		width: 100%;
	}

	.pleasure__slide .slick-slide {
		margin: 0;
	}

	.pleasure__slide .slick-arrow {
		width: 7.467vw;
		height: 7.467vw;
	}

	.pleasure__slide .slick-prev,
	.pleasure__slide .slick-next {
		top: 34.933vw;
	}

	.pleasure__slide .slick-prev {
		left: 1.867vw;
	}

	.pleasure__slide .slick-next {
		right: 1.867vw;
	}

	.pleasure__slide--item {
		padding-top: 8vw;
	}

	.pleasure__image {
		margin-bottom: 3.733vw;
	}

	.pleasure__image figcaption {
		font-size: 18.667vw;
		top: -8vw;
		left: 4vw;
	}

	.pleasure__content--title {
		margin-bottom: 1.6vw;
		font-size: 5.333vw;
	}

	.pleasure__content--text .text {
		font-size: 4.267vw;
	}
}

/* ----------------------------------------------------
	cruise
---------------------------------------------------- */
.cruise {
	padding-bottom: min(7rem, 5.124vw);
}

.cruise__list {
	display: flex;
	justify-content: center;
}

.cruise__list--item {
	width: min(39.6rem, 28.99vw);
}

.cruise__list--item:not(:last-of-type) {
	margin-right: min(6rem, 4.392vw);
}

.cruise__list--item a {
	text-decoration: none;
	overflow: hidden;
	display: block;
	position: relative;
}

.cruise__list--item a:hover {
	opacity: 1;
}

.cruise__list--item .text {
	line-height: normal;
	color: rgb(var(--wht));
	font-size: min(4rem, 2.928vw);
	font-weight: 600;
	text-align: center;
	text-shadow: 0 0 5px rgb(var(--blu));
	position: absolute;
	top: min(3rem, 2.196vw);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.cruise__list--item .text small {
	font-size: min(2.8rem, 2.05vw);
	display: block;
}

.cruise__image img {
	position: relative;
	z-index: 1;
	transition: all 0.5s ease 0s;
}

.cruise__list--item a:hover .cruise__image img {
	transform: scale(1.1);
}

.cruise__image figcaption {
	background-color: rgb(var(--gld));
	height: min(4rem, 2.928vw);
	color: rgb(var(--wht));
	font-size: min(1.6rem, 1.171vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.cruise__image figcaption svg {
	stroke: rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: min(1.6rem, 1.171vw);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.cruise {
		padding-bottom: 12vw;
	}

	.cruise__list {
		display: block;
	}

	.cruise__list--item {
		width: 100%;
	}

	.cruise__list--item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 6.4vw;
	}

	.cruise__list--item .text {
		width: 100%;
		font-size: 10.667vw;
		top: 10.667vw;
	}

	.cruise__list--item .text small {
		font-size: 7.467vw;
	}

	.cruise__image figcaption {
		height: 10.133vw;
		font-size: 4.267vw;
	}

	.cruise__image figcaption svg {
		right: 5.333vw;
	}
}

/* ----------------------------------------------------
	introduction
---------------------------------------------------- */
.introduction {
	background-color: rgb(var(--lim));
	background-image: url(../img/bg-introduction.webp);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: min(4rem, 2.928vw) 0 min(8rem, 5.857vw);
}

.introduction__lead {
	margin-bottom: min(4.4rem, 3.221vw);
	font-size: min(2rem, 1.464vw);
	text-align: center;
}

.introduction__lead .title {
	margin-bottom: 0.25em;
	font-size: min(2.8rem, 2.05vw);
	font-weight: 600;
}

.introduction__slide {
	margin-bottom: min(9.5rem, 6.955vw);
}

.introduction-section {
	margin: 0 auto;
	width: min(91rem, 66.618vw);
}

.introduction-section__title {
	background-color: rgb(var(--wht));
	margin-bottom: 3.66vw;
	height: min(5.4rem, 3.953vw);
	color: rgb(var(--gld));
	font-size: min(3.2rem, 2.343vw);
	font-weight: 600;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.introduction {
		background-image: url(../img/bg-introduction_sp.webp);
		padding: 4.8vw 0 12vw;
	}

	.introduction__lead {
		margin-bottom: 4.8vw;
		font-size: 4.8vw;
	}

	.introduction__lead .title {
		line-height: normal;
		font-size: 6.933vw;
	}

	.introduction__slide {
		margin-bottom: 8.8vw;
	}

	.introduction-section {
		padding: 0 6.133vw;
		width: 100%;
	}

	.introduction-section__title {
		margin-bottom: 4.8vw;
		height: 9.867vw;
		font-size: 5.333vw;
	}
}

/*
	charm
------------------------------ */
.charm {
	margin-bottom: min(10rem, 7.321vw);
}

.charm__list--item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.charm__list--item:not(:last-of-type) {
	margin-bottom: min(5rem, 3.66vw);
}

.charm__image,
.charm__content {
	width: min(44.5rem, 32.577vw);
}

.charm__content .title {
	margin-bottom: min(1.3rem, 0.952vw);
	line-height: 1.5;
	color: rgb(var(--gld));
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
}

.charm__content .text {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

.charm__content .profile {
	padding: min(1rem, 0.732vw) min(1.3rem, 0.952vw);
	border: solid 1px rgb(var(--gld));
}

.charm__content .profile__title {
	line-height: 2;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
}

.charm__content .profile__title .name {
	color: rgb(var(--gld));
	line-height: 1;
	font-size: min(1.8rem, 1.318vw);
	display: block;
}

.charm__content .profile__detail {
	margin-top: 1em;
}

@media screen and (max-width: 768px) {
	.charm {
		margin-bottom: 13.333vw;
	}

	.charm__list--item {
		display: block;
	}

	.charm__list--item:not(:last-of-type) {
		margin-bottom: 9.333vw;
	}

	.charm__image,
	.charm__content {
		width: 100%;
	}

	.charm__image {
		margin-bottom: 2.667vw;
	}

	.orion .charm__image {
		background-color: rgb(var(--wht));
		padding: 6.133vw 8vw;
	}

	.charm__content .title {
		margin-bottom: 2.667vw;
		font-size: 5.333vw;
	}

	.charm__content .text {
		font-size: 3.733vw;
	}

	.charm__content .profile {
		padding: 2.667vw 4.8vw;
	}

	.charm__content .profile__title {
		font-size: 3.733vw;
	}

	.charm__content .profile__title .name {
		line-height: 1.5;
		font-size: 4.267vw;
	}
}

/*
	happy
------------------------------ */
.happy__content {
	background-color: rgb(var(--wht));
	padding: min(5rem, 3.66vw) min(7.5rem, 5.49vw);
}

.happy__list--item {
	background-color: rgb(var(--aqu));
	padding: min(5rem, 3.66vw);
}

.happy__list--item:not(:last-of-type) {
	margin-bottom: min(2rem, 1.464vw);
}

.happy__list--title {
	margin-bottom: min(1rem, 0.732vw);
	line-height: 1;
	color: rgb(var(--blu));
	font-size: min(2.4rem, 1.757vw);
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.happy__list--title .free {
	background-position: center left min(1rem, 0.732vw);
	background-repeat: no-repeat;
}

.happy__list--title .free.bag {
	background-image: url(../img/icon-bag.svg);
	background-size: auto min(2.8rem, 2.05vw);
	padding-left: min(4.8rem, 3.514vw);
}

.happy__list--title .free.bus {
	background-image: url(../img/icon-bus.svg);
	background-size: auto min(2.3rem, 1.684vw);
	padding-left: min(6rem, 4.392vw);
}

.happy__list--title .free i {
	background-color: rgb(var(--wht));
	padding: 0.5em;
	color: rgb(var(--blu));
	font-family: var(--gothic);
	font-size: min(1.2rem, 0.878vw);
	border: solid 1px rgb(var(--blu));
	display: inline-block;
}

.happy__list--text {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

@media screen and (max-width: 768px) {
	.happy__content {
		padding: 4.267vw 3.733vw;
	}

	.happy__list--item {
		padding: 3.2vw;
	}

	.happy__list--item:not(:last-of-type) {
		margin-bottom: 3.2vw;
	}

	.happy__list--title {
		margin-bottom: 2.4vw;
		line-height: 1.5;
		font-size: 5.333vw;
		text-align: center;
		flex-direction: column;
	}

	.happy__list--title .free.bag {
		background-size: 6.4vw auto;
		background-position: top 1.333vw left;
		padding-left: 8vw;
	}

	.happy__list--title .free.bus {
		background-size: 8.533vw auto;
		background-position: top 2.667vw left;
		padding-left: 9.867vw;
	}

	.happy__list--title .free i {
		padding: 0.25em 0.5em;
		font-size: 2.667vw;
	}

	.happy__list--text {
		font-size: 3.733vw;
	}
}

/* schedule */
.happy .schedule {
	background-color: rgb(var(--wht));
	margin-top: min(3rem, 2.196vw);
	padding: min(3.5rem, 2.562vw) min(10rem, 7.321vw);
}

.happy .schedule__title {
	margin-bottom: min(1.6rem, 1.171vw);
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	text-align: center;
}

.happy .schedule__title:not(:first-of-type) {
	margin-top: min(3rem, 2.196vw);
}

.happy .schedule__list--item {
	margin-bottom: min(2rem, 1.464vw);
	display: flex;
	justify-content: space-between;
}

.happy .schedule__list--item:not(:last-of-type) {
	padding-bottom: min(2rem, 1.464vw);
	border-bottom: solid 1px rgb(var(--blu));
}

.happy .schedule__list--item .title {
	background-color: rgb(var(--blu));
	width: min(7.7rem, 5.637vw);
	height: min(3rem, 2.196vw);
	color: rgb(var(--wht));
	font-size: min(2rem, 1.464vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.happy .schedule .detail {
	width: min(37.2rem, 27.233vw);
}

.happy .schedule .detail .time {
	color: rgb(var(--blu));
	font-size: min(1.8rem, 1.318vw);
	font-weight: 600;
}

.happy .schedule .detail .route {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

.happy .schedule .detail.column-one {
	width: 100%;
	display: flex;
	justify-content: center;
	justify-content: center;
}

.happy .schedule .detail.column-one .time {
	margin-right: 1em;
	font-size: min(1.6rem, 1.171vw);
}

@media screen and (max-width: 768px) {
	.happy .schedule {
		margin-top: 5.333vw;
		padding: 5.333vw 4.267vw;
	}

	.happy .schedule__title {
		margin-bottom: 2.667vw;
		font-size: 4.267vw;
	}

	.happy .schedule__title:not(:first-of-type) {
		margin-top: 5.333vw;
	}

	.happy .schedule__list--item {
		margin-bottom: 4vw;
		display: block;
	}

	.happy .schedule__list--item:not(:last-of-type) {
		padding-bottom: 4vw;
	}

	.happy .schedule__list--item .title {
		margin-bottom: 2.667vw;
		width: 18.667vw;
		height: 7.467vw;
		font-size: 4.8vw;
	}

	.happy .schedule .detail {
		width: 100%;
	}

	.happy .schedule .detail .time {
		font-size: 4.267vw;
	}

	.happy .schedule .detail .route {
		font-size: 4vw;
	}

	.happy .schedule .detail.column-one {
		display: block;
	}

	.happy .schedule .detail.column-one .time {
		font-size: 4.267vw;
	}
}

/* pickup */
.happy .pickup {
	margin-top: min(5rem, 3.66vw);
}

.happy .pickup__title {
	margin: 0 auto min(2.4rem, 1.757vw);
	color: rgb(var(--gld));
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
	text-align: center;
}

.happy .pickup__title span {
	height: min(5rem, 3.66vw);
	line-height: 2;
	border-top: solid 1px rgb(var(--gld));
	border-bottom: solid 1px rgb(var(--gld));
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.happy .pickup__content {
	display: flex;
	justify-content: space-between;
}

.happy .pickup__image,
.happy .pickup__detail {
	width: min(37rem, 27.086vw);
}

.happy .pickup__detail {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.happy .pickup__detail .coupon {
	padding: min(1.5rem, 1.098vw);
	color: rgb(var(--gld));
	font-size: min(1.6rem, 1.171vw);
	border: solid 1px rgb(var(--gld));
}

.happy .pickup__detail .coupon__title {
	font-size: min(2rem, 1.464vw);
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.happy .pickup {
		margin-top: 6.4vw;
	}

	.happy .pickup__title {
		margin-bottom: 4.8vw;
		font-size: 5.333vw;
	}

	.happy .pickup__title span {
		padding-bottom: 0.25em;
		width: 100%;
		height: auto;
		line-height: 1.2;
		border-top: none;
		flex-direction: column;
		position: relative;
	}

	.happy .pickup__title span::before {
		background-color: rgb(var(--gld));
		width: 100%;
		height: 1px;
		position: absolute;
		top: 3.2vw;
		left: 0;
		z-index: 1;
		content: "";
	}

	.happy .pickup__title span i {
		background-color: rgb(var(--wht));
		padding: 0 0.25em;
		display: inline-block;
		position: relative;
		z-index: 2;
	}

	.happy .pickup__content {
		display: block;
	}

	.happy .pickup__image,
	.happy .pickup__detail {
		width: 100%;
	}

	.happy .pickup__image {
		margin-bottom: 2.667vw;
	}

	.happy .pickup__detail {
		font-size: 3.733vw;
	}

	.happy .pickup__detail .coupon {
		margin-top: 2.667vw;
		padding: 4vw;
		font-size: 3.733vw;
	}

	.happy .pickup__detail .coupon__title {
		font-size: 4.8vw;
	}
}

/* ----------------------------------------------------
	stay
---------------------------------------------------- */
.stay {
	background: linear-gradient(180deg, #1D5086 0%, #4079B7 49.52%, #1D5086 100%);
	padding: 5.857vw 0;
	color: rgb(var(--wht));
	position: relative;
}

.stay::before,
.stay::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 96.193vw;
	height: 10.176vw;
	position: absolute;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	content: "";
}

.stay::before {
	background-image: url(../img/stay-bg-top.svg);
	top: 1.83vw;
}

.stay::after {
	background-image: url(../img/stay-bg-bottom.svg);
	bottom: 1.83vw;
}

.stay__content {
	margin: 0 auto;
	width: min(90.5rem, 66.252vw);
	position: relative;
	z-index: 2;
}

.stay__title {
	margin-bottom: min(1rem, 0.732vw);
	font-size: min(3.2rem, 2.343vw);
	font-weight: 600;
	text-align: center;
}

.stay__title small {
	font-size: min(2.4rem, 1.757vw);
	display: block;
}

.stay__lead {
	margin-bottom: min(5rem, 3.66vw);
	padding-bottom: min(2.4rem, 1.757vw);
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
	text-align: center;
	border-bottom: solid 1px rgb(var(--wht));
}

.stay__hotel--title {
	margin-bottom: min(2.8rem, 2.05vw);
	font-size: min(2.8rem, 2.05vw);
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.stay__hotel--title::before {
	background-image: url(../img/logo-the_terrace.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: min(2.4rem, 1.757vw);
	width: min(21.5rem, 15.739vw);
	height: min(12.2rem, 8.931vw);
	content: "";
}

.stay__hotel--lead {
	margin-bottom: min(3rem, 2.196vw);
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

.stay__hotel--text {
	margin-bottom: min(6rem, 4.392vw);
	padding: 1em 0;
	line-height: 1.5;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 600;
	text-align: center;
	border: solid 1px rgb(var(--wht));
}

.other-hotels .link-button {
	background-color: rgb(var(--brn));
	margin: 0 auto;
	width: min(50rem, 36.603vw);
	height: min(9rem, 6.589vw);
	color: rgb(var(--wht));
	font-size: min(2rem, 1.464vw);
	border-radius: min(9rem, 6.589vw);
}

@media screen and (max-width: 768px) {
	.stay {
		padding: 12vw 0;
	}

	.stay::before,
	.stay::after {
		width: 94.4vw;
		height: 14.4vw;
	}

	.stay::before {
		background-image: url(../img/stay-bg-top_sp.svg);
		top: 2.667vw;
	}

	.stay::after {
		display: none;
	}

	.stay__content {
		padding: 0 6.133vw;
		width: 100%;
	}

	.stay__title {
		margin-bottom: 2.667vw;
		font-size: 7.467vw;
	}

	.stay__title small {
		line-height: 1.25;
		font-size: 5.333vw;
	}

	.stay__lead {
		margin-bottom: 6.4vw;
		padding-bottom: 6.4vw;
		font-size: 4.267vw;
		text-align: left;
	}

	.stay__hotel--title {
		margin-bottom: 3.2vw;
		font-size: 5.333vw;
	}

	.stay__hotel--title::before {
		margin-right: 4vw;
		width: 30.933vw;
		height: 17.6vw;
	}

	.stay__hotel--lead {
		margin-bottom: 3.2vw;
		font-size: 3.733vw;
	}

	.stay__hotel--text {
		margin-bottom: 8vw;
		padding: 1em;
		font-size: 4.267vw;
	}

	.other-hotels .link-button {
		width: 100%;
		height: 17.333vw;
		line-height: 1.5;
		font-size: 4.267vw;
		text-align: center;
		border-radius: 17.333vw;
	}
}

/*
	popup__list
------------------------------ */
.popup__list {
	margin-bottom: min(3rem, 2.196vw);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.popup__list--item {
	margin-bottom: min(5rem, 3.66vw);
	width: min(40.7rem, 29.795vw);
	cursor: pointer;
}

.popup__list--image {
	overflow: hidden;
}

.popup__list--image img {
	transition: all 0.5s ease 0s;
}

.popup__list--image:hover img {
	position: relative;
	z-index: 1;
	transform: scale(1.1);
}

.popup__list--image .hotel-name {
	background-color: rgb(var(--brn));
	height: min(7rem, 5.124vw);
	line-height: 1.25;
	color: rgb(var(--wht));
	font-size: min(2rem, 1.464vw);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.popup__list {
		margin-bottom: 8vw;
		display: block;
	}

	.popup__list--item {
		margin-bottom: 4vw;
		width: 100%;
	}

	.popup__list--image {
		width: 100%;
		display: flex;
	}

	.popup__list--image img {
		width: 45.067vw;
	}

	.popup__list--image .hotel-name {
		width: 42.667vw;
		height: auto;
		font-size: 3.733vw;
	}
}

/*
	popup
------------------------------ */
#popup-container {
	width: min(88.5rem, 64.788vw);
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1500;
	transform: translate(-50%, -50%);
	animation: slideEfect 0.5s;
}

#popup-container .inner {
	position: relative;
}

#popup-container button {
	background: none;
	outline: none;
	border: none;
}

@media screen and (max-width: 768px) {
	#popup-container {
		width: 88vw;
		max-height: 90vh;
	}
}

/* portSlide */
.portSlide li {
	background: rgb(var(--wht));
	padding: min(4rem, 2.928vw) 0;
	width: 100%;
	border: 1px solid rgb(var(--brn));
	position: relative;
}

.portSlide .popup__name {
	margin-bottom: 1em;
	line-height: 1.25;
	color: rgb(var(--brn));
	font-size: min(2.4rem, 1.757vw);
	font-weight: 600;
	text-align: center;
}

.portSlide .popup__image {
	margin: 0 auto min(2.4rem, 1.757vw);
	width: min(58rem, 42.46vw);
}

.portSlide__detail {
	margin: 0 auto;
	color: rgb(var(--blk));
	text-align: center;
}

.portSlide__detail dt {
	margin-bottom: 1em;
	line-height: 1.5;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
}

.portSlide__detail dd .text {
	margin-bottom: 2em;
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

.portSlide__detail dd .link-button {
	background-color: rgb(var(--brn));
	margin: 0 auto;
	width: min(35rem, 25.622vw);
	height: min(6rem, 4.392vw);
	color: rgb(var(--wht));
	font-size: min(2rem, 1.464vw);
	border-radius: min(6rem, 4.392vw);
}

@media screen and (max-width: 768px) {
	.portSlide li {
		padding: 8vw;
	}

	.portSlide .popup__name {
		height: 20vw;
		font-size: 5.333vw;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.portSlide .popup__image {
		margin-bottom: 4vw;
		width: 100%;
	}

	.portSlide__detail {
		text-align: left;
	}

	.portSlide__detail dt {
		margin-bottom: 0.5em;
		font-size: 4.8vw;
	}

	.portSlide__detail dd .text {
		margin-bottom: 1em;
		font-size: 3.733vw;
	}

	.portSlide__detail dd .link-button {
		width: 100%;
		height: 14.667vw;
		font-size: 4.267vw;
		border-radius: 14.667vw;
	}
}

/* close */
.portSlide li .close {
	position: absolute;
	top: 1em;
	right: 1em;
}

.portSlide li .close span {
	width: 25px;
	height: 25px;
	display: block;
	position: relative;
	transform: rotate(45deg);
	cursor: pointer;
}

.portSlide li .close span::before,
.portSlide li .close span::after {
	background: #C9C9C9;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.portSlide li .close span::before {
	width: 100%;
	height: 2px;
}

.portSlide li .close span::after {
	width: 2px;
	height: 100%;
}

/* prev-btn, next-btn  */
#popup-container #prev-btn,
#popup-container #next-btn {
	width: min(4rem, 2.928vw);
	height: min(4rem, 2.928vw);
	border-top: solid 2px rgb(var(--brn));
	border-right: solid 2px rgb(var(--brn));
	position: absolute;
	top: min(30rem, 21.962vw);
	z-index: 1101;
	cursor: pointer;
}

#popup-container #prev-btn {
	left: min(8rem, 5.857vw);
	transform: rotate(-135deg);
}

#popup-container #next-btn {
	right: min(8rem, 5.857vw);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.portSlide li .close span {
		width: 6.4vw;
		height: 6.4vw;
	}

	#popup-container #prev-btn,
	#popup-container #next-btn {
		width: 4vw;
		height: 4vw;
		top: 56vw;
	}

	#popup-container #prev-btn {
		left: 3.2vw;
	}

	#popup-container #next-btn {
		right: 3.2vw;
	}
}

/* fixed */
body.fixed {
	overflow: hidden;
}

body.fixed .popup-filter {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1099;
	content: "";
}

/* ----------------------------------------------------
	lineup
---------------------------------------------------- */
.lineup {
	background-color: rgb(var(--pnk));
	padding-top: min(8rem, 5.857vw);
}

.lineup__title {
	margin: 0 auto;
	width: min(90rem, 65.886vw);
	color: rgb(var(--gld));
	font-size: min(2.8rem, 2.05vw);
	font-weight: 600;
	text-align: center;
	position: relative;
}

.lineup__title::before {
	width: 100%;
	height: min(0.4rem, 0.293vw);
	border-top: solid 1px rgb(var(--gld));
	border-bottom: solid 1px rgb(var(--gld));
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	content: "";
}

.lineup__title span {
	background-color: rgb(var(--pnk));
	padding: 0 0.5em;
	display: inline-block;
	position: relative;
	z-index: 2;
}

.lineup__content {
	margin: 0 auto;
	width: min(90rem, 65.886vw);
}

.lineup__content .link-button {
	background-color: rgb(var(--blu));
	margin: 0 auto;
	color: rgb(var(--wht));
	width: min(33rem, 24.158vw);
	height: min(9rem, 6.589vw);
	font-size: min(2rem, 1.464vw);
	border-radius: min(9rem, 6.589vw);
}

.lineup__content .link-button svg {
	stroke: rgb(var(--wht));
}

.lineup-section__title {
	font-size: min(3.6rem, 2.635vw);
	font-weight: 600;
	text-align: center;
}

.lineup-section__date {
	margin-bottom: min(1rem, 0.732vw);
	font-size: min(2.6rem, 1.903vw);
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lineup-section__date small {
	margin-right: 0.5em;
	font-size: min(2.2rem, 1.611vw);
}

.lineup-section__date .topic {
	font-size: min(1.1rem, 0.805vw);
	display: flex;
	align-items: center;
}

.lineup-section__date .topic__item {
	background-color: rgb(var(--wht));
	margin-left: 1em;
	padding: 0.25em 0.5em;
	font-family: var(--gothic);
	text-align: center;
	border-style: solid;
	border-width: 1px;
}

.lineup-section__date .topic__item.type1 {
	color: rgb(var(--blu));
	border-color: rgb(var(--blu));
}

.lineup-section__date .topic__item.type2 {
	color: rgb(var(--gld));
	border-color: rgb(var(--gld));
}

.lineup-section__lead {
	margin-bottom: min(2rem, 1.464vw);
	font-size: min(2rem, 1.464vw);
	text-align: center;
}

.lineup-section__map {
	margin: 0 auto min(5rem, 3.66vw);
	width: min(35rem, 25.622vw);
	width: min(45rem, 32.943vw);
}

@media screen and (max-width: 768px) {
	.lineup {
		padding-top: 12vw;
	}

	.lineup__title {
		width: calc(100% - 17.067vw);
		font-size: 5.333vw;
	}

	.lineup__title::before {
		height: 1.067vw;
	}

	.lineup__content {
		width: 100%;
	}

	.lineup__content .link-button {
		width: 100%;
		height: 18.667vw;
		font-size: 5.333vw;
		border-radius: 18.667vw;
	}

	.lineup-section__title {
		margin-bottom: 0.5em;
		line-height: 1.3;
		font-size: 8vw;
	}

	.lineup-section__date {
		margin-bottom: 2.667vw;
		line-height: 1.5;
		font-size: 5.867vw;
		text-align: center;
		flex-direction: column;
	}

	.lineup-section__date small {
		margin-right: 0.5em;
		font-size: 4.8vw;
	}

	.lineup-section__date .topic {
		margin: 1em 0;
		font-size: 2.933vw;
	}

	.lineup-section__date .topic__item {
		margin-left: 0;
	}

	.lineup-section__date .topic__item:not(:first-of-type) {
		margin-left: 1em;
	}

	.lineup-section__lead {
		margin-bottom: 2.667vw;
		font-size: 4.267vw;
	}

	.lineup-section__map {
		margin-bottom: 2.667vw;
		width: 100%;
	}
}

/*
	port
------------------------------ */
.lineup .port__title {
	margin-bottom: min(3rem, 2.196vw);
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	text-align: center;
}

.lineup .port__title span {
	padding-bottom: 0.1em;
	border-bottom: solid 1px rgb(var(--blk));
	display: inline-block;
}

.lineup .port__list {
	display: flex;
	justify-content: space-between;
}

.lineup .port__list--item {
	width: min(42.6rem, 31.186vw);
}

.lineup .port__image {
	margin-bottom: min(1rem, 0.732vw);
}

.lineup .port__content {
	margin-bottom: min(3rem, 2.196vw);
}

.lineup .port__content--title {
	margin-bottom: min(1rem, 0.732vw);
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	text-align: center;
}

.lineup .port__content--text {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.171vw);
}

.lineup .port__content--text .blu {
	color: rgb(var(--blu));
}

@media screen and (max-width: 768px) {
	.lineup .port__title {
		margin-bottom: 6.4vw;
		font-size: 5.333vw;
	}

	.lineup .port__list {
		margin-bottom: 6.4vw;
		display: block;
	}

	.lineup .port__list--item {
		width: 100%;
	}

	.lineup .port__list--item:not(:last-of-type) {
		margin-bottom: 8vw;
	}

	.lineup .port__image {
		margin-bottom: 1.6vw;
	}

	.lineup .port__content {
		margin-bottom: 0;
	}

	.lineup .port__content--title {
		margin-bottom: 1.6vw;
		font-size: 5.333vw;
	}

	.lineup .port__content--text {
		font-size: 4.267vw;
	}
}

/*
	price
------------------------------ */
.lineup .price {
	background-color: rgb(var(--wht));
	margin-bottom: min(6rem, 4.392vw);
	padding: min(2rem, 1.464vw) min(3.5rem, 2.562vw);
	font-size: min(2rem, 1.464vw);
}

.lineup .price__title {
	display: flex;
}

.lineup .price__title.member {
	color: rgb(var(--blu));
}

.lineup .price__title::before {
	content: "■";
}

.lineup .price__text {
	margin-left: 1em;
	line-height: 1.5;
	font-family: var(--gothic);
}

.lineup .price__text .value {
	font-family: var(--base);
	font-size: min(2.4rem, 1.757vw);
	font-weight: 600;
}

.lineup .price .note {
	margin: 0.5em 0 0 min(2rem, 1.464vw);
}

@media screen and (max-width: 768px) {
	.lineup .price {
		margin-bottom: 8vw;
		padding: 4.267vw;
		font-size: 4.533vw;
	}

	.lineup .price__text:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.lineup .price__text .value {
		font-size: 5.6vw;
	}

	.lineup .price .note {
		margin-left: 0;
	}
}

/*
	lineup01
------------------------------ */
.lineup01 {
	padding: min(8rem, 5.857vw);
}

@media screen and (max-width: 768px) {
	.lineup01 {
		padding: 12vw 6.133vw;
	}
}

/*
	lineup02
------------------------------ */
.lineup02 {
	background-color: rgb(var(--lim));
	padding: min(8rem, 5.857vw) 0;
}

@media screen and (max-width: 768px) {
	.lineup02 {
		padding: 12vw 6.133vw;
	}
}