/* コピペ用コード */
.font-size-dummy {
  font-size: .75rem; /* 12px */
  font-size: .8125rem; /* 13px */
  font-size: .875rem; /* 14px */
  font-size: 1rem; /* 16px */
  font-size: 1.125rem; /* 18px */
  font-size: 1.25rem; /* 20px */
  font-size: 1.5rem; /* 24px */
  font-size: 1.75rem; /* 28px */
  font-size: 2rem; /* 32px */
  font-size: 2.63rem; /* 42px */
  font-size: 3rem; /*48px*/
  font-size: 3.5rem; /* 56px */
}
/*-----------------------------------------------------------------------common*/ 
:root {
  --white: #FBFEFF;
  --white-opa: rgba(251, 254, 255, .9);
  --white-opa02: rgba(251, 254, 255, .6);
  --black: #30343A;
  --black-opa: rgba(48, 52, 58, .6);
  --gray: #6E7888;
  --light-gray: #E5E5E5;
  --middle-gray: #a9b0c2;
  --orange: #FF5A10;
  --blue: #135389;
  --light-blue: #7BB3CC;
  --gold: #B4A55F;
  --gold-opa: rgba(180, 165, 95, .8);
  --grad-black: linear-gradient(180deg, rgba(57, 79, 97, 0) 0%, rgba(34, 48, 59, 0) 40%, rgba(11, 16, 19, 0.8) 100%);
  --grad-green: linear-gradient(180deg, rgba(190, 232, 230, 0) 0%, rgba(190, 232, 230, 0.28) 19%, rgba(190, 232, 230, 0.37) 54%, rgba(190, 232, 230, 0.75) 73%, rgba(190, 232, 230, 1) 100%);
  --grad-blue: linear-gradient(180deg, rgba(173, 200, 235, 0) 0%, rgba(173, 200, 235, 0.8) 50%, rgba(173, 200, 235, 1) 100%);
  --grad-pink: linear-gradient(180deg, rgba(226, 212, 235, 0) 0%, rgba(226, 212, 235, 0.8) 50%, rgba(226, 212, 235, 1) 100%);
  --grad-gold: linear-gradient(180deg, rgba(255, 251, 210, 0) 0%, rgba(255, 251, 210, 0.8) 50%, rgba(180, 165, 95, 0.7) 100%);
  --font-family-tsuku: "fot-tsukuardgothic-std", sans-serif; /*normal 400 bold 700*/
  --font-family-oonishi: "ta-oonishi", sans-serif; /*normal 300*/
  --font-family-braisetto: "braisetto", script; /*bold 700*/
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --padding-common: 2em;
  --line-height-large: 2;
  --line-height-normal: 1.7;
  --line-height-narrow: 1.5;
  --radius-6: 6px;
  --radius-10: 10px;
  --radius-20: 20px;
}
html {
    scroll-behavior: smooth;
}
#about,
#abroad,
#cruise,
#japan,
#special,
#question{
  /* ヘッダーの高さ + 追加したい余白(60px) を指定 */
  /* .page-navの高さが仮に70pxの場合 → 70 + 60 = 130px */
  scroll-margin-top: 50px; 
}
main img, aside img {
  width: 100%;
}
#pankuzu, main, aside, .f-footer, section, nav {
  font-family: var(--font-family-tsuku);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  color: var(--black);
  line-height: var(--line-height-normal);
}
.tb, .sp {
  display: none;
}
#all-container {
  width: 100%;
  margin: 0;
}
.all-container {
  font-size: 1.125rem;
  position: relative;
}
.all-container a {
  color: var(--white);
}
.all-container li {
  text-decoration: none;
}
section {
  margin: 0 auto;
  line-break: strict;
}
p {
  /* "strict"は最も厳しい禁則ルールを適用します */
  line-break: strict;
}
.all-wrapper {
  position: relative;
  line-height: 0;
}
.swiper-pagination{
	z-index: 10;
}
.swiper-pagination-bullet {
    width: 20px;
	height: 20px;
}
.swiper-button-prev, .swiper-button-next{
	position: absolute;
  display: inline-block;
	width: 60px;
	height: 60px;
	z-index: 5;
}
#all-container .swiper-button-prev{
	position: absolute;
	left: 20px;
}
#all-container .swiper-button-next{
	position: absolute;
    right: 20px;
}
.swiper-button-prev::before,
.swiper-button-next::before {
	content: '';
	position: absolute;
    width: 60px;
	height: 60px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--black-opa);
}
.swiper-button-next svg, .swiper-button-prev svg{
        display: none;
}
.swiper-button-prev::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 20px;
	width: 24px;
	height: 24px;
	border-top: 4px solid var(--white);
	border-right: 4px solid var(--white);
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	border-radius: 4px;
}
.swiper-button-next::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 10px;
	width: 24px;
	height: 24px;
	border-top: 4px solid var(--white);
	border-right: 4px solid var(--white);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 4px;
}
.swiper-pagination-bullet-active{
	background-color: var(--gold);
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
/*-----------------------------------------------------------------------pankuzu*/
#pankuzu {
  width: 1000px;
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
}
#pankuzu ul li span {
  margin: 0 .3em;
}
/*-----------------------------------------------------------------------menu-links*/
.menu {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 15;
}
.menu-links {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
.menu ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  justify-items: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: .5em;
}
.menu ul li{
    display: block;
    background: var(--gold-opa);
    width: 100%;
    height: 100%;
    padding: .2em 0;
    display: flex;
    align-items: center; /* 要素を縦中央に配置 */
    justify-content: center;
    /* 高さを設定しないと中央にならないので注意 */
    height: 40px; /* 例: 親要素の高さ */
  } 
#menu .li01 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.menu li a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.fixed-menu{
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
}
  .menu-dark ul li{
    background: var(--white-opa);
  }
  .menu-dark ul li a{
    color: var(--gold);
  }
  .menu li a {
    font-size: 1.125rem;
    
  }
/*-----------------------------------------------------------------------top-v*/
#top-v .wrapper {
  position: relative;
  height: 92vh;
}
#top-v .swiper {
  position: relative;
  height: 92vh;
}
#top-v .swiper::after {
  position: absolute;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;;
  background: var(--grad-black);
  z-index: 2;
}
#top-v .title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 9;
}
#top-v h1 {
  position: relative;
  font-size: 3.5rem;
  color: var(--white);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-narrow);
  text-align: center;
  margin: 0 0 .5em;
}
.font-rough {
  display: block;
  font-family: var(--font-family-oonishi);
  font-weight: var(font-weight-light);
  font-size: 2.5rem;
}
#top-v .icon {
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 310px;
}
#top-v .icon img{
  width: 50px;
}
#top-v h2 {
  font-size: 1.75rem;
  color: var(--white);
  text-align: center;
  padding: .3em;
  background-color: rgba(251, 254, 255, .23);
  font-weight: var(--font-weight-regular);
}
#top-v .slide img {
  height: 92vh;
  object-fit: cover;
  object-position: top;
}
#top-v .swiper-pagination{
	position: relative; 
    z-index: 3; 
	bottom: 30px;
}
#top-v .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	opacity: .5;
	background: var(--gray);
	transition: all 0.8s ease;
}
#top-v .swiper-pagination-bullet-active{
	background: var(--gold);
	transition-delay: 0.5s;
}
/*-----------------------------------------------------------------------inner-links*/
#inner-links ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 30vh;
  justify-items: center;
  align-items: center;
}
#inner-links ul li {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  transition: .5s all ease-out;
}
#inner-links ul li::after {
  position: absolute;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: .7;
  mix-blend-mode: multiply;
}
#inner-links ul li a {
  display: block;
  position: relative;
  font-weight: var(--font-weight-bold);
  width: 100%;
  height: 100%;
  z-index: 4;
}
#inner-links ul li a .li-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
#inner-links ul li a .li-item div {
  width: 100%;
}
#inner-links ul li a p {
  text-align: center;
  font-size: 1.5rem;
  z-index: 4;
}
#inner-links ul li a .list {
  font-size: 1.125rem;
  line-height: var(--line-height-narrow);
  margin-top: .3em;
  font-weight: var(--font-weight-regular);
  padding: 0 .5em;
}
#inner-links ul .li01 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_about.webp");
  background-size: auto 100%;
  line-height: 1.4;
}
#inner-links ul .li02 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_abroad.webp");
  background-size: auto 100%;
}
#inner-links ul .li03 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_cruise.webp");
  background-size: auto 100%;
}
#inner-links ul .li04 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_japan.webp");
  background-size: auto 100%;
}
#inner-links ul .li05 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_special.webp");
  background-size: auto 100%;
}
#inner-links ul .li06 {
  width: 100%;
  height: 100%;
  background-image: url("../img/link_question.webp");
  background-size: auto 100%;
}
/*-----------------------------------------------------------------------catch*/
#catch section {
  background-image: url("../img/bg_catch.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#catch .container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 6em 0;
}
#catch p {
  position: relative;
  font-size: 2rem;
  line-height: var(--line-height-large);
}
#catch p .large {
  font-size: 2.75rem;
}
#catch p .font-rough {
  display: inline;
}
#catch p .between-right {
  margin-right: .4em;
}
#catch .icon {
  display: block;
  position: absolute;
  top: -5px;
  left: 205px;
  width: 50px;
}
#catch .deco {
  position: relative;
  display: flex;
  margin: 2em 0 0;
}
#catch .deco .plane {
  position: relative;
  top: 80px;
  width: 55vw;
  z-index: 2;
}
#catch .deco .beach {
  position: relative;
  top: 20px;
  left: -100px;
  width: 45vw;
  transform: rotate(5deg);
}
/*-----------------------------------------------------------------------about*/
#about section {
  position: relative;
  background-image: url("../img/bg_about.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6em;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about section::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--black-opa);
  mix-blend-mode: multiply;
  backdrop-filter: blur(2px);
  z-index: 1;
}
#about section .container {
  background-color: var(--white-opa);
  /*backdrop-filter: blur(10px);*/
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  padding: 4em 3em;
  text-align: center;
  border-radius: var(--radius-20);
  z-index: 2;
}
#about h2 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 1em;
}
#about h3 {
  font-size: 3.75rem;
  font-family: var(--font-family-braisetto);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-narrow);
  margin-bottom: -.1em;
}
#about p {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  line-height: var(--line-height-large);
  font-size: 1.25rem;
}
/*-----------------------------------------------------------------------charm*/
#charm .container {
  position: relative;
  background-image: url("../img/bg_paper.webp");
  background-position: center;
  padding: 6em;
}
.point {
  position: relative;
}
.point .wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
.point h2 {
  position: relative;
  font-size: 2.25rem;
  font-weight: var(--font-weight-light);
  text-align: center;
  margin-bottom: 1em;
}
.point h2 .large {
  font-size: 3rem;
  color: var(--orange);
  margin: 0 .1em;
}
.point h2 .icon {
  display: block;
  position: absolute;
  top: 2px;
  left: 355px;
  right: 0;
}
.point h2 .icon img{
  width: 30px;
}
.point .tab-area img {
  width: 180px;
}
/* ラジオボタン本体は非表示に */
.point .tab-container > input {
  display: none;
}
.point .tab-container {
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  background-color: var(--white);
  border-radius: var(--radius-20);
  max-width: 900px;
  margin: 0 auto;
}
/* --- 表示順の制御 --- */
/* コンテンツエリアを1番目に表示 */
.point .tab-area {
  order: 1;
}
/* ラベルエリアを2番目に表示 */
.point .tab-label-area {
  order: 2;
}
/* --- コンテンツの表示制御 --- */
/* まず全てのコンテンツを非表示に */
.point .tab-content {
  display: none;
  width: 100%;
  padding: 2em 4em;
  margin: 0 auto;
  box-sizing: border-box; /* paddingを含めて幅100%にする */
}
.point .tab-content h3 {
  font-size: 1.75rem;
  color: var(--orange);
  font-weight: var(--font-weight-normal);
  margin-bottom: 1em;
}
.point .tab-content h3 span {
  font-size: 2.75rem;
  margin-right: .1em;
}
.point .tab-content h3 .sub-title{
  font-size: 1.75rem;
  margin-right: 0;
}
.point .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.5em;
}
.point .grid div:nth-child(1) {
  grid-column: 1 / 3;
}
.point .tab-content p {
  max-width: 480px;
  font-size: 1.25rem;
  line-height: var(--line-height-large);
}
/* 選択されたラジオボタンに対応するコンテンツだけを表示 */
#tab1:checked ~ .tab-area .tab-content:nth-of-type(1), #tab2:checked ~ .tab-area .tab-content:nth-of-type(2), #tab3:checked ~ .tab-area .tab-content:nth-of-type(3), #tab4:checked ~ .tab-area .tab-content:nth-of-type(4), #tab5:checked ~ .tab-area .tab-content:nth-of-type(5) {
  display: block;
}
/* --- ボタンのデザイン（元のCSSを少し調整） --- */
.point .tab-label-area {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
  grid-column-gap: 1em;
  margin: .5em auto 2em; /* コンテンツとの間に余白 */
  padding: 0 4em;
}
.point .tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  color: var(--black);
  text-align: center;
  cursor: pointer;
  transition: .8s all ease;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
/* 選択されているボタンのスタイル */
#tab1:checked ~ .tab-label-area .tab-label[for="tab1"], #tab2:checked ~ .tab-label-area .tab-label[for="tab2"], #tab3:checked ~ .tab-label-area .tab-label[for="tab3"], #tab4:checked ~ .tab-label-area .tab-label[for="tab4"], #tab5:checked ~ .tab-label-area .tab-label[for="tab5"] {
  background-color: var(--gray);
  color: var(--white);
}
.fit-people {
  margin-top: 10em;
}
.fit-people h2 {
  position: relative;
  font-size: 2.25rem;
  font-weight: var(--font-weight-light);
  text-align: center;
  margin-bottom: 1em;
}
.fit-people .person {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: flex-start;
  grid-column-gap: 1em;
  max-width: 1000px;
  margin: 0 auto;
}
.fit-people .person li {
  text-align: center;
}
.fit-people .person li .title {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 1em;
  min-width: 120px;
  max-width: 100%;
  color: var(--blue);
  font-size: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-20);
  border: 2px solid var(--blue);
  box-sizing: border-box;
}
.fit-people .person li .title::before {
  content: "";
  position: absolute;
  top: 99%;
  bottom: -24px;
  left: 50%;
  margin-left: -20px;
  border: 12px solid transparent;
  border-top: 12px solid var(--white);
  z-index: 3;
}
.fit-people .person li .title::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-top: 2px;
  margin-left: -21px;
  border: 13px solid transparent;
  border-top: 13px solid var(--blue);
  z-index: 1;
}
.fit-people .person li .title p {
  margin: 0;
  padding: 0;
}
.fit-people .person li .text-area {
  text-align: left;
  max-width: 260px;
  background-color: var(--white);
  margin-top: .5em;
  padding: 1em;
  border-radius: var(--radius-20);
}
.fit-people .person li .text-area span {
  color: var(--orange);
  font-weight: var(--font-weight-bold);
}
.fit-people .person img {
  width: 200px;
}
/*-----------------------------------------------------------------------hotel common*/
#hotel .hotel-contents {
  position: relative;
  background-image: url("../img/bg_grain.webp");
  background-position: center;
  background-size: contain;
}
#hotel section {
  position: relative;
  z-index: 3;
}
.hotel-contents {
  position: relative;
}
.hotel-contents .title {
  position: relative;
  padding: 11em 0 6em;
  text-align: center;
}
.hotel-contents .title .flex {
  position: relative;
}
.hotel-contents .title h2 {
  display: inline-block;
  position: relative;
  width: 500px;
}
#hotel h4 {
  font-size: 2.75rem;
  font-family: var(--font-family-braisetto);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-narrow);
  color: var(--gold);
  margin-bottom: -.2em;
  text-align: center;
}
#hotel h3 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  margin-bottom: 1em;
}
/* ボタンの基本スタイル */
#hotel .tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  max-width: 1000px;
  width: 95%;
  margin: 0 auto 2em;
  ;
}
#hotel .tab-buttons label {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-6);
  width: calc(100% / 5);
  height: 80px;
  background-position: center;
  background-size: cover;
  padding: .5em;
  color: var(--white);
  line-height: var(--line-height-narrow);
  opacity: 1; /* ★最初は不透明 */
  transition: 1s opacity ease-out; /* ★opacityをアニメーション対象に */
}
#hotel .tab-buttons label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-opa);
  mix-blend-mode: multiply;
  border-radius: var(--radius-6);
  z-index: 0;
  transition: 1s all ease-out;
}
#hotel .tab-buttons label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-6);
  z-index: 0;
  /* チェックされた時のスタイルをここに記述 */
  background-color: var(--light-blue);
  /*mix-blend-mode: soft-light;*/
  mix-blend-mode: multiply;
  opacity: 0; /* ★最初は透明 */
  transition: 1s opacity ease-out; /* ★opacityをアニメーション対象に */
}
#hotel .tab-buttons label span {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}
/* ラジオボタン自体は非表示に */
#hotel .tab-buttons input[type="radio"] {
  display: none;
}
/* ★チェックされた時のボタンスタイル */
#hotel .tab-buttons label:has(input:checked) {
  color: var(--white);
}
#hotel .tab-buttons label:has(input:checked)::before {
  background-color: var(--light-blue);
  /*mix-blend-mode: soft-light;*/
  mix-blend-mode: multiply;
  opacity: 0;
}
#hotel .tab-buttons label:has(input:checked)::after {
  opacity: 1; /* ★チェックされたら不透明にする */
}
/* --- コンテンツの表示制御 --- */
/* コンテンツは初期状態で非表示 */
#hotel .tab-content {
  display: none;
}
/* ★activeクラスがついたコンテンツだけ表示 */
#hotel .tab-content.active {
  display: block;
}
#hotel .tab-content .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 950px;
  background-color: var(--white);
}
#hotel .tab-content .grid .item-a {
  order: 2;
}
#hotel .tab-content .grid .item-b {
  order: 1;
}
#hotel .slide-container {
  display: block;
  position: relative;
  min-width: 0;
  overflow: hidden;
  height: 950px;
}
#hotel .slide-container .swiper {
  max-width: 1500px;
  width: 100%;
  height: 950px;
}
#hotel .swiper img {
  height: 100%;
  object-fit: cover;
}
#hotel .hotel-container {
  padding: 3em 4em 2em 3em;
  height: 950px;
}
#hotel .hotel-container h5 {
  font-size: 2rem;
}
#hotel .hotel-container h6 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-regular);
  margin-top: .5em;
}
#hotel .hotel-container h7 {
  display: block;
  position: relative;
  font-size: 1.75rem;
  margin-top: 2em;
  color: var(--orange);
  font-weight: var(--font-weight-bold);
}
#hotel .hotel-container h7 span {
  display: block;
  position: absolute;
  top: -8px;
  left: 315px;
  width: 30px;
}
#hotel .hotel-container ul {
  margin: .5em 0 2em;
}
#hotel .hotel-container li {
  font-size: 1.25rem;
  border-bottom: 1px solid var(--gray);
  padding-bottom: .3em;
  margin-bottom: .5em;
}
#hotel .hotel-container li span {
  font-size: 1.5rem;
  margin-right: .2em;
}
#hotel .hotel-container a {
  display: block;
  font-size: 1.5rem;
  background: var(--blue);
  padding: .5em 2em;
  border-radius: var(--radius-10);
  text-align: center;
}
#hotel .hotel-container .margin-adjustment {
  margin: .5em 0 .5em;
}
#hotel .hotel-container .attention {
  font-size: 1rem;
  margin: 0 0 2em;
}
/*-----------------------------------------------------------------------abroad*/
#abroad .hotel-contents::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-green);
  z-index: 1;
}
#abroad .title .icon{
  position: absolute;
  top: -120px;
  left: 500px;
  right: 0;
}
#abroad .title .icon img {
  width: 150px;
}
.maldives .tab-btn01 {
  background-image: url("../img/maldives_hotelA01.webp");
}
.maldives .tab-btn02 {
  background-image: url("../img/maldives_hotelB01.webp");
}
.maldives .tab-btn03 {
  background-image: url("../img/maldives_hotelC01.webp");
}
.maldives .tab-btn04 {
  background-image: url("../img/maldives_hotelD01.webp");
}
.cancun {
  margin-top: 10em;
}
.cancun .tab-btn01 {
  background-image: url("../img/cancun_hotelA01.webp");
}
.cancun .tab-btn02 {
  background-image: url("../img/cancun_hotelB01.webp");
}
.cancun .tab-btn03 {
  background-image: url("../img/cancun_hotelC01.webp");
}
.cancun .tab-btn04 {
  background-image: url("../img/cancun_hotelD01.webp");
}
/*-----------------------------------------------------------------------cruise*/
#cruise .hotel-contents::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  z-index: 1;
}
#cruise .title .icon {
  position: absolute;
  top: -140px;
  left: 0;
  right: 500px;
}
#cruise .title .icon img {
  width: 150px;
}
#cruise .tab-btn01 {
  background-image: url("../img/cruise_A01.webp");
}
#cruise .tab-btn02 {
  background-image: url("../img/cruise_B01.webp");
}
#cruise .tab-btn03 {
  background-image: url("../img/cruise_C01.webp");
}
#cruise .tab-btn04 {
  background-image: url("../img/cruise_D01.webp");
}
#cruise .hotel-container h7 span {
  left: 340px;
}
/*-----------------------------------------------------------------------japan*/
#japan .hotel-contents::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-pink);
  z-index: 1;
}
#japan .title .icon{
  position: absolute;
  top: -120px;
  left: 600px;
  right: 0;
}
#japan .title .icon img {
  width: 150px;
}
#japan .tab-btn01 {
  background-image: url("../img/japan_hotelA01.webp");
}
#japan .tab-btn02 {
  background-image: url("../img/japan_hotelB01.webp");
}
#japan .tab-btn03 {
  background-image: url("../img/japan_hotelC01.webp");
}
#japan .tab-btn04 {
  background-image: url("../img/japan_hotelD01.webp");
}
#japan .tab-btn05 {
  background-image: url("../img/japan_hotelE01.webp");
}
/*-----------------------------------------------------------------------special*/
#special .hotel-contents::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-gold);
  z-index: 1;
}
#special .hotel-contents .title {
  padding-top: 9em;
}
#special .editing {
  margin-bottom: 2em;
}
#special .editing p {
  display: inline;
  color: var(--white);
  font-size: 1.5rem;
  background-color: var(--gold);
  text-align: center;
  padding: .3em 1em;
}
#special .text {
  margin-top: 3em;
  font-size: 1.25rem;
}
#special .title .icon{
  position: absolute;
  top: -120px;
  left: 620px;
  right: 0;
}
#special .title .icon img {
  width: 250px;
}
#special .hotel-container h7 span {
    display: block;
    position: absolute;
    top: -8px;
    left: 425px;
    width: 30px;
}
/*-----------------------------------------------------------------------other*/
.other-container {
  position: relative;
  background-image: url("../img/bg_paper.webp");
  background-position: center;
  padding: 6em 0;
}
.other-container .swiper {
  padding-bottom: 2em;
}
.other-container .title {
  padding: 2em 0 4em;
  text-align: center;
}
.other-container .title h2 {
  position: relative;
  font-size: 2.25rem;
  margin-top: .5em;
  font-weight: var(--font-weight-normal);
}
.other-container .title h2 .orange {
  position: relative;
  display: block;
  color: var(--orange);
}
.other-container .title h2 .icon {
  display: block;
  position: absolute;
  top: -4px;
  left: 360px;
  right: 0;
}
.other-container .title h2 .icon img{
  width: 30px;
}
.point .tab-area img {
  width: 220px;
}
.other-container .title h3 {
  font-family: var(--font-family-oonishi);
  font-weight: var(--font-weight-light);
  font-size: 1.75rem;
}
.other-container .swiper-wrapper {
  transition-timing-function: linear;
}
.other-container .swiper-wrapper .flex {
  display: flex;
  align-items: center;
  column-gap: .5em;
  margin-bottom: 1em;
}
.other-container .swiper-wrapper .flex .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.other-container .swiper-wrapper .flex .icon img {
  aspect-ratio: 1 / 1;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
}
.other-container .swiper-wrapper .review-items {
  background-color: var(--white);
  border-radius: var(--radius-10);
}
.other-container .swiper-wrapper .review-img img {
  aspect-ratio: 3 / 2;
  object-position: center;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.other-container .swiper-wrapper .text {
  background-color: var(--white);
  padding: 1em;
  border-radius: 0 0 10px 10px;
}
.other-container .swiper-wrapper .text p{
  line-height: var(--line-height-narrow);
  font-size: 1rem;
}
.other-container .swiper-wrapper .text .tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: .5em;
  color: var(--blue);
  margin-top: 1em;
}
#other .swiper-pagination-rev{
	position: relative;
	top: 30px;
}
#other .swiper-pagination-bullet{
	width: 20px;
	height: 20px;
}
#question .title {
  padding: 6em 0 2em;
}
#question .title h2 {
  position: relative;
  font-size: 2.25rem;
  margin-top: .5em;
}
.question-container {
  max-width: 1000px;
  width: 95%;
  background-color: var(--white);
}
.question-container ul{
    padding: 4em 3em 2em;
}
.question-container ul li {
  margin-bottom: 2em;
}
/* チェックボックスは完全に非表示にする */
.accordion-checkbox {
  display: none;
}
.question-container ul li h4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: .5em;
  color: var(--white);
  background-color: var(--light-blue);
  font-size: 1.5rem;
  padding: .3em 1em .3em .5em;
}
.question-container ul li h4 span {
  position: relative;
  top: 2px;
  margin-right: .3em;
}
#question .material-symbols-outlined{
    line-height: var(--line-height-large);
}
.question-container ul li .flex {
  display: flex;
  column-gap: .5em;
  background-color: var(--light-gray);
}
.accordion-content {
  padding: 0;
  height: 0;
  overflow: hidden;
  /* max-heightの変化を0.5秒かけてアニメーションさせる */
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}
/* ★チェックボックスがONになったら、隣接するコンテンツの高さを広げる */
.accordion-checkbox:checked ~ .accordion-content {
  height: 100%;
  padding: 2em 2em 2em 1em;
}
.question-container ul li p span {
  position: relative;
  top: 2px;
}
.attention .title {
  padding: 6em 0 2em;
}
.attention .attention-wrapper {
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
}
.attention .attention-wrapper li {
  margin-bottom: 1em;
}
.attention .attention-wrapper li h3 {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: .5em;
}
.video .title {
  padding: 6em 0 2em;
}
.video .video-wrapper {
  display: flex;
  justify-content: center;
}
iframe {
    width: 800px;
    height: 450px;
}
/*-----------------------------------------------------------------------contact*/
#contact section {
  color: var(--white);
  background-color: var(--blue);
  padding: 5em 0;
}
#contact .contact-container {
  margin: 0 auto;
  max-width: 1000px;
  width: 95%;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3em;
}
#contact h2 {
  font-size: 2.25rem;
  margin-bottom: 1em;
  font-weight: var(--font-weight-light);
}
#contact ul {
  font-size: 1.25rem;
	grid-column: 2 / 4;
}
#contact ul  h3{
  font-size: 1.75rem;
	margin-bottom: .5em;
}
#contact .number{
	position: relative;
	display: flex;
  justify-content: flex-start;
  column-gap: 1em;
	font-size: 1.5rem;
	margin-bottom: .5em
}
#contact .number span{
	position: relative;
	top: 7px;
	margin-right: .3em;
}
#contact .time{
	display: flex;
  justify-content: flex-start;
  column-gap: 1em;
}
#contact hr{
	margin: 1em 0;
}
#contact .tel a {
  color: var(--white);
  pointer-events: none;
}
/*-------------------------------------------------上に戻るボタン */
.pagetop {
  height: 80px;
  width: 80px;
  position: fixed;
  right: 48px;
  bottom: 48px;
  border: solid 3px var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  transition: all 0.3s;
}
.pagetop__arrow {
  height: 16px;
  width: 16px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  transform: translateY(20%) rotate(-45deg);
  transition: all 0.3s;
}
.pagetop.invert-color {
  border-color: var(--black);
}
.pagetop.invert-color .pagetop__arrow {
  border-color: var(--black);
}