/* screen - index */
/* @import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700|Noto+Serif+JP:500,700,600|Noto+Sans:500,400"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400..700&family=Noto+Sans+TC:wght@400..700&family=Noto+Serif+SC:wght@400..700&family=Noto+Serif+TC:wght@400..700&display=swap");
html {
  font-size: 62.5%;
  font-size: 16px;
}

:root { 
  --black: #000000;
  --black2: #3a3939;
  --eo0vra: #faf6f6;
  --primary: #8ec544;
  --bg-color: #ddd8d8;
  --white: #ffffff;
  --grey: rgba(59, 58, 58, 0.7);
  --orange: #f39d5f;
  --blue: #61c5eb;
 
  --font-size-l: 15px;
  --font-size-m: 14px;
  --font-size-s: 12px;
  --font-size-xl: 16px;
  --font-size-xxl: 18px;
  --font-size-xxxl: 19px;
  --font-size-xxxxl: 20px;
 
  --font-family-sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-family-serif: "Noto Serif SC", "Songti SC", serif;
}

body {
  overflow-x: hidden;
  margin: 0;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

/* =============================
   アニメーション関連
   ============================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  a:hover,
  button:hover {
    opacity: 0.8;
  }
}

.only-sp {
  display: none;
}
.only-pc {
  display: block;
}

@media (max-width: 789px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: block;
  }
}

.hero {
  align-items: center;
  align-self: stretch;
  display: flex;
  height: 100vh;
  justify-content: space-around;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 0 !important;
}

.hero-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .swiper-pagination {
  bottom: 20px;
  z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-slide {
  height: 100%;
  width: 100%;
}

.logo {
  position: relative;
  min-width: 409px;
  width: 30%;
}
.logo img{
  width: 100%;
}
.lang-switch {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-flex;
  gap: 10px 32px;
  right: 50px;
  padding: 8px 16px;
  position: absolute;
  top: 32px;
}

.lang-text {
  color: #ffffff99;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-m);
  font-weight: 700;
  letter-spacing: 1.40px;
  line-height: 25.2px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
  cursor: pointer;
}
.lang-text--active {
   color: var(--white);
}
.lang-text:first-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  transform: rotate(30deg);
  right: -15px;
}

.scroll-text {
  height: 179px;
  left: 5%;
  position: absolute;
  bottom: 0;
  width: 18px;
}

.scroll-indicator {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.scroll-text-group {
  height: 53px;
  margin-right: -2.00px;
  position: relative;
  width: 20px;
}

.scroll {
  color: var(--white);
  font-family: var(--font-family-sans);
  font-size: 10px;
  font-weight: 500;
  left: -17px;
  letter-spacing: 3.00px;
  line-height: 18.0px;
  position: absolute;
  top: 18px;
  transform: rotate(-90.00deg);
  white-space: nowrap;
}

.scroll-text__line {
  height: 110px;
  position: relative;
  width: 1px;
  background: #fff;
}

.hero-swiper .swiper-pagination {
  display: flex;
  flex-direction: column;
  left: 96% !important;
  position: absolute;
  width: 10px !important;
  top: 0 !important;
  margin: auto;
  bottom: 0 !important;
  justify-content: center;
  gap: 12px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  border-radius: 50%;
}

.hero-swiper  .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 1);
}

.swiper-button-next,
.swiper-button-prev {
  width: 20px !important;
  height: 20px !important;
  background-image: url('../img/ico-next-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
}
.swiper-button-prev {
  transform: translateY(-50%) rotate(180deg);
}
.swiper-button-next::after,
.swiper-button-prev::after{
  display: none!important;
}

.gradation-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(251, 247, 247, 1) 100%);
  height: 136px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}


@media (max-width: 789px) {
  .hero {
    height: 84vh;
    max-height: 680px;
  }
  .logo {
    min-width: auto;
    width: 80%;
  }
  .lang-switch {
    right: 30px;
    padding: 6px 12px;
    top: 30px;
    gap: 10px 26px;
  }
  
  .lang-text {
    font-size: 13px;
    position: relative;
  }

  .lang-text:first-child:after {
    right: -12px;
  }
  .hero-swiper .swiper-pagination {
    flex-direction: row;
    left: auto !important;
    right: 10%;
    top: auto !important;
    width: auto !important;
    bottom: 76px !important;
    justify-content: center;
    gap: 8px;
  }
  .gradation-bg {
    height: 72px;
  }
  
}

.intro {
  align-self: stretch;
  background-color: var(--eo0vra);
  height: 1228px;
  justify-content: space-around;
  width: 100%;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.intro-contents {
  flex-direction: column;
  gap: 48px;
  padding: 172px 0px 0px 0;
  max-width: 600px;
  width:90%;
  margin: 0 auto;
  transform: translateX(-50%);
  position: relative;
}

.intro-title {
  align-self: stretch;
  color: var(--black2);
  font-family: var(--font-family-serif);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 5.52px;
  line-height: normal;
  position: relative;
  margin-bottom: 48px;
}


.intro-text{
  color: var(--black2);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: 500;
  line-height: 2.4em;
  letter-spacing:0.07em;
}

.map-image {
  max-width: 1068px;
  width:200%;
  position: absolute;
  top: 41px;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateX(100px);
}

.video-wrap {
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: -200px;
  z-index: 10;
}

.video {
  height: 374px;
  max-width: 720px;
  width: 90%;
  margin: 0 auto;
}

.charm {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 80px;
  padding: 375px 0px 0px;
  position: relative;
  width: 100%;
}

.charm-intro {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.charm-head {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  position: relative;
}

.sub-title {
  align-self: stretch;
  color: #93908ab2;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xl);
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  text-align: center;
}

.main-title {
  align-self: stretch;
  color: var(--black2);
  font-family: var(--font-family-serif);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 5.52px;
  line-height: normal;
  position: relative;
  text-align: center;
}

.main-description {
  align-self: stretch;
  color: var(--black2);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xl);
  font-weight: 400;
  letter-spacing: 1.12px;
  line-height: 32px;
  position: relative;
  text-align: center;
}
@media (max-width: 1300px) {
  .intro-contents {
    transform: translateX(-10%);
  }
}
@media (max-width: 789px) {
  .sub-title {
    font-size: 14px;
  }
  .main-title {
    font-size: 30px;
    letter-spacing: 3px;
  }
  .main-description {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 24px;
    text-align: left;
  }

  .intro {
    height: auto;
    justify-content: space-around;
    align-items: flex-start;
    display: flex;
    padding-bottom: 430px;
  }
  
  .intro-contents {
    gap: 48px;
    padding: 100px 0px 0px 0;
    width:90%;
    margin: 0 auto;
    transform: none;
  }
  
  .intro-title {
    font-size: 30px;
    letter-spacing: 0.1em;
    margin-bottom: 36px;
  }
  
  .intro-text{
    font-size: 14px;
    line-height: 2em;
  }
  .map-image {
    max-width: 390px;
    width: 200%;
    bottom: -380px;
    top: initial;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateX(70px);
  }
  .video-wrap {
    top: 0px;
  }
  
  .video {
    height: 200px;
    width: 100%;
    margin: 0 auto;
  }
}


.charm-wrap {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.bikei {
  align-self: stretch;
  height: 1193px;
  position: relative;
  width: 100%;
}

.bikei-container {
  height: 1193px;
  position: relative;
  width: 100%;
}

.charm-bg {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  position: absolute;
  top: 120px;
  width: 100%;
}

.charm-bg-top {
  background-color: var(--eo0vra);
  flex: 1;
  flex-grow: 1;
  position: relative;
  width: 100%;
}

.charm-bg-bottom {
  background: linear-gradient(180deg, rgba(251, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 100%);
  height: 108px;
  position: relative;
  width: 100%;
}

.charm-inner {
  align-items: flex-end;
  display: flex;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.charm__img {
  height: 1000px;
  position: relative;
  width: 50%;
  object-fit: cover;
}

.charm-content-wrapper {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  height: 930px;
  justify-content: center;
  padding: 0px 0px 73px;
  position: relative;
  width: 50%;
  margin: 0 20px;
}

.charm-content-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 95px;
  position: relative;
  max-width: 448px;
}

.charm-contentHead {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  position: relative;
}

.charm-contentHead-box {
  /* height: 90px; */
  position: relative;
}

.charm-contentHead-box__title {
  font-family: var(--font-family-serif);
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 5.40px;
  line-height: normal;
  text-align: center;
  margin: 18px 18px 0 12px;
}

.charm-contentHead-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
}

.bikei .charm-contentHead-box::before {
  background-image: url('../img/vector-1.svg');
}
.bisyoku .charm-contentHead-box::before {
  background-image: url('../img/vector-2.svg');
}
.biyu .charm-contentHead-box::before {
  background-image: url('../img/vector-3.svg');
}

.charm-contentHead-box__title--bikei {
  color: var(--primary);
}
.charm-contentHead-box__title--bisyoku {
    color: var(--orange);
}
.charm-contentHead-box__title--biyu {
  color: var(--blue);
}

.charm-contentHead-num {
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.charm-contentHead-num__text {
  color: var(--grey);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xxxxl);
  font-style: normal;
  font-weight: 600;
}

.charm-contentHead-num__num {
  color: var(--grey);
  font-family: var(--font-family-serif);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
}



.charm-subContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.charm-subContent__item {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  position: relative;
  width: 100%;
}
.charm-subContent__img{
  height: 140px;
  width: 210px;
}
.charm-subContent__img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.charm-subContent__item-content {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.charm-subContent__title {
  color: var(--black2);
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2em;
}
.charm-subContent__text {
  color: var(--black2);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.8em;
}

.charm-mainContent {
  margin-bottom: 64px;

}
.charm-mainContent__title {
  color: var(--black2);
  font-family: var(--font-family-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.charm-mainContent__text {
  color: var(--black2);
  font-size: 14px;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.07em;
}

.bisyoku {
  align-self: stretch;
  height: 1787px;
  position: relative;
  width: 100%;
}

.bisyoku-container {
  height: 1787px;
  position: relative;
  width: 100%;
}


.bisyoku-content {
  display: flex;
  flex-direction: column;
  gap: 84px;
  width: 100%;
}


.bisyoku-foot {
  display: flex;
  flex: 0 0 auto;
  gap: 3px;
  position: relative;
  width: 100%;
}

.bisyoku-foot__item {
  flex: 1;
}


.bisyoku-foot__img {
  align-self: stretch;
  height: 240px;
  position: relative;
  object-fit: cover;
  width: 100%;
  margin-bottom: 24px;
}


.bisyoku-foot__content {
  padding: 0 16px;
}
.bisyoku-foot__title {
  display: flex;
  font-size: 24px;
  font-family: var(--font-family-serif);
  margin-bottom: 16px;
}

.bisyoku-foot__text {
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 2;
}


.biyu {
  align-self: stretch;
  height: 1165px;
  position: relative;
  width: 100%;
}

.biyu-container {
  height: 1165px;
  position: relative;
  width: 100%;
}




@media (max-width: 789px) {
  .charm {
    padding-top: 300px;
  }
  .charm-inner {
    flex-direction: column;
  }
  .charm__img {
    width: 100%;
    height: 260px;
  }
  .charm-content-wrapper {
    width: calc(100% - 48px);
    margin: 60px auto 0 ;
    height: auto;
  }
  .bikei,
  .bikei-container,
  .biyu,
  .biyu-container,
  .bisyoku,
  .bisyoku-container{
    height: auto;
  }
  .bisyoku-foot{
    flex-direction: column;
    margin-bottom: 32px;
  }
  .bisyoku-foot__item {
    flex-direction: column;
    display: flex;
    flex: 1;
    width: calc(100% - 48px);
    margin: 0 auto 24px;
  }
  .bisyoku-foot__img {
    height: 200px;
    /* margin-bottom: 16px; */
    width: 100%;
  }
  .bisyoku-foot__content {
    padding: 0;
  }
  .charm-mainContent__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .charm-subContent__img {
    width: 150px;
    height: 120px;
  }
  .charm-subContent__title {
    font-size: 16px;
  }
  .charm-subContent__text {
    font-size: 12px;
    line-height: 1.8em;
  }

  .charm-contentHead-box::before {
    height: 16px;
    width: 110px;
    background-size: 100% 100%;
    background-position: left;
  }
 
  .charm-contentHead-box__title {
    font-size: 38px;
    margin-top: 14px;
  }
  .charm-contentHead-num__text{
    font-size: 14px;
  }
  .charm-contentHead-num__num {
    font-size: 32px;
  }
  .charm-bg {
    top:0;
  }

  .bisyoku-foot__title {
    font-size: 20px;
  }

  .bisyoku-content .charm-content-wrapper {
    order: 2;
    padding: 0px 0px 0px;
  }
  .bisyoku-content .charm__img {
    order: 1;
  }
  .charm-content-section {
    gap: 40px;
  }
}

.tour-plan {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0px;
  position: relative;
  width: 100%;
}

.tour-plan-intro {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 34px;
  position: relative;
  width: calc(100% - 32px);
  margin: 0 auto;
}


.tour-plan-description {
  letter-spacing: 1.60px;
  line-height: 32px;
  position: relative;
  text-align: center;
  max-width: 690px;
  margin: 0 auto;
}

.tour-plan-box {
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 140px;
  position: relative;
  width: 100%;
}

.tour-plan-content {
  align-self: stretch;
  /* height: 1622px; */
  position: relative;
  width: 100%;
}

.tour-image-wrapper {
  /* align-items: flex-start; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


.tour-plan-content__inner {
  left: 0;
  top: 450px;
  width: 100%;
}



.tour-plan-bg {
  background-color: var(--white);
  border-radius: 32px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1053px;
  top: 560px;
}

.tour-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  gap: 40px;
  padding: 72px 0px 0px;
  margin-top: 560px;
  position: relative;
}

.tour-details {
  display: flex;
  flex: 0 0 auto;
  gap: 40px;
  position: relative;
  width: 90%;
  margin: auto;
}

.nights-label {
  align-items: center;
  border: 1px solid;
  border-color: var(--grey);
  font-family: var(--font-family-serif);
  display: inline-flex;
  gap: 10px;
  height: 28px;
  justify-content: center;
  padding: 0px 14px;
  position: relative;
  letter-spacing: 1.68px;
  line-height: 20px;
  margin-bottom: 8px;
}


.tour-head__box {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  position: relative;
  width: 100%;
  font-family: var(--font-family-serif);
  font-weight: 600;
}

.tour-head__subtitle {
  font-size: 19px;
  letter-spacing: 1.90px;
  line-height: 25.7px;
}

.tour-head__title {
  font-size: 34px;
  letter-spacing: 3.40px;
  line-height: 46.6px;
}

.tour-content-img {
  display: flex;
  flex-direction: column;
  width: 350px;
  margin-top: 450px;
}
.tour-content-img__img {
  height: 390px;
  margin-bottom: 2px;
}
.tour-content-img img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.tour-info {
  /* align-items: flex-start; */
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: 100%;
}

.schedule-section {
  /* align-items: flex-start; */
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: 100%;
}

.label-bg {
  background-color: var(--primary);
  height: 22px;
  position: relative;
  width: 3px;
}

.section-title {
  letter-spacing: 0.60px;
  line-height: normal;
  position: relative;
  width: fit-content;
}


.schedule-day.schedule-variant {
  gap: 15px;
}

.schedule-title {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: fit-content;
}

.schedule-time {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: fit-content;
  color: #3b3a3a;
  font-size: 14px;
}


.schedule-item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 16px;
  width: 100%;
}

.schedule-note {
  flex: 1;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  text-align: right;
  color: #3b3a3a;
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
}

.schedule-time-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #DDD9D9;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.text-content > div:first-child {
  color: #3b3a3a;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-sans);
}

.text-content > div:last-child {
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-sans);
}

.schedule-item-head {
  border-bottom: 1px solid #DDD9D9;
  padding-bottom: 15px;
  margin-bottom: 12px;
}

.day-header {
  display: flex;
  width: 100%;
}

.schedule-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-item-text__main-text {
  color: var(--grey);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-sans);
  margin: 0;
}

.schedule-item-text__sub-text {
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-sans);
}

.tour-notes {
  font-size: 12px;
  line-height: 2em;
  font-weight: 500;
  color: var(--grey);
}

.info-sections {
  /* align-items: flex-start; */
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 80px;
  position: relative;
  width: 100%;
}

.label-wrapper {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  position: relative;
  width: 100%;
}

.meals {
  /* align-items: flex-start; */
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.meal-row {
  position: relative;
  background-color: #fbf7f7;
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 0px 0px 20px;
  box-sizing: border-box;
  gap: 8px;
  text-align: left;
  font-size: 16px;
}

.meal-info {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
  height: 48px;
  left: 0;
  min-width: 331px;
  align-items: center;
  position: relative;

}

.meal-indicator {
  position: relative;
  width: 38px;
  text-align: left;
}
.meal-time {
  flex: 1;
}

.price-wrapper {
  align-items: center;
  align-self: stretch;
  background-color: var(--eo0vra);
  flex: 0 0 auto;
  gap: 10px;
  padding: 10px 16px;
  width: 100%;
}

.price-content {
  align-items: center;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
}

.price-text {
  align-self: stretch;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
}

.price__note {
  color: var(--grey);
  font-size: 12px;
  margin-top: 2px;
}

.button-text {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: fit-content;
  font-size: 16px;
  color: #fff;
}

.arrow-icon {
  align-items: center;
  border-radius: 39px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 26px;
  justify-content: center;
  position: relative;
  width: 26px;
}

.vector-2 {
  height: 8.59px;
  position: relative;
  width: 15.06px;
}

.tour-image-box {
  align-self: stretch;
  height: 625px;
  position: relative;
  width: 100%;
  object-fit: cover;
}


.schedule-day {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 14px;
  position: relative;
  width: 100%;
}

.frame-24-1 {
  gap: 24px;
}

.activities-list {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  padding: 4px 8px;
  position: relative;
  width: 100%;
}

.activity-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.activity-item {
  display: flex;
  width: 100%;
}

.activity-label {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  position: relative;
  width: 210px;
  color: #3b3a3a;
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
  flex-shrink: 0;
}

.activity-description {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  color: var(--grey);
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
  flex: 1;
}


.price-info {
  background-color: var(--eo0vra);
  padding: 10px 16px;
  position: relative;
  width: 100%;
}
.price-info__main-text {
  font-size: 14px;
  margin-right: 16px;
}
.price-info__sub-text {
  font-size: 18px;
}

.accommodation-section {
  align-self: stretch;
  flex: 0 0 auto;
  gap: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.schedule-list {
  background-color: var(--eo0vra);
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 24px 30px;
  position: relative;
  width: 100%;
}

.schedule-day.schedule-variant {
  gap: 0;
  display: flex;
  flex-direction: column;
}

.accommodation-table-row {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #DDD9D9;
  gap: 0;
}

.accommodation-table-row > * {
  color: #3b3a3a;
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
}


.accommodation-row {
  width: 100%;
}

/* Text styles for accommodation table */
.accommodation-date-label,
.accommodation-location-label,
.accommodation-facility-label,
.accommodation-condition-label {
  color: #3b3a3a;
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
}

.accommodation-header {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #DDD9D9;
  padding-bottom: 13px;
}

.accommodation-header .table-cell {
  color: var(--grey);
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
}

.table-cell:nth-of-type(1) {
  width: 70px;
}
.table-cell:nth-of-type(2) {
  width: 80px;
}
.table-cell:nth-of-type(3) {
  width: 170px;
}
.table-cell:nth-of-type(4) {
  flex:1;
}
.table-cell:nth-of-type(5) {
  flex:1;
}
.table-text {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: 50px;
}

.table-cell {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  width: 60px;
}

.table-cell {
  gap: 4px;
  justify-content: center;
  width: 140px;
}

.table-text {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: 160px;
}


.location-text {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: 60px;
}

.facility-name {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  width: 140px;
}

.table-cell {
  gap: 4px;
  justify-content: center;
  width: 160px;
}




.section-label {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 16px;
  position: relative;
}

.section-label {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 16px;
  position: relative;
}

.accommodation-section {
  align-self: stretch;
  flex: 0 0 auto;
  gap: 18px;
  width: 100%;
}

.schedule-day.schedule-variant {
  gap: 0;
  display: flex;
  flex-direction: column;
}

/* Accommodation table rows */
.accommodation-table-row {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #DDD9D9;
  gap: 0;
}



.accommodation-row {
  width: 100%;
}

/* Text styles for accommodation table */
.accommodation-date-label,
.accommodation-location-label,
.accommodation-facility-label,
.accommodation-condition-label {
  color: #3b3a3a;
  font-size: 14px;
  font-family: var(--font-family-sans);
  font-weight: 400;
}

.table-cell {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  position: relative;
}

@media (max-width: 789px) {
  .tour-plan {
    padding: 80px 0
  }
  .tour-details {
    flex-direction: column;
    width: calc(100% - 48px);
  }
  .nights-label {
    font-size: 14px;
  }
  
  .tour-head__subtitle {
    font-size: 16px;
    line-height: 1.55em;
  }
  
  .tour-head__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    /* line-height: 46.6px; */
  }
  .tour-image-box {
    height: 325px;
  }
  .tour-plan-bg{
    top: 200px;
    border-radius: 24px;
  }
  .tour-content{
    margin-top: 200px;
    padding-top: 56px;
  }
  .info-sections {
    flex-direction: column;
    gap: 32px;
  }
  .schedule-list {
    padding: 16px 16px;
  }
  .tour-content-img{
    width: 100%;
    margin-top: 0;  
  }

  .schedule-item-text {
    width: 100%;
  }
  .schedule-item-text__main-text {
    font-size: 14px;
  }
  
  .schedule-item-text__sub-text {
    font-size: 12px;
  }
  .schedule-time {
    width: 100%;
    text-align: right;
  }
  .schedule-time-block {
    flex-direction: column;
    margin-bottom: 0;
  }

  .meal-info {
    width: auto;
  }
  
  .meal-row {
    font-size: 14px;
    padding-left: 12px;
  }

  .activity-wrapper {
    flex-direction: column;
  }
  .activity-description {
    font-size: 12px;
  }
}

/* SP用のカードレイアウト */
.accommodation-card {
  background-color: var(--eo0vra);
  padding: 8px 0;
  border-radius: 4px;
}
.accommodation-card:not(:first-child):last-child {
  border-top: 1px solid #DDD9D9;
}

.accommodation-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.accommodation-card-label {
  color: var(--grey);
  font-weight: 500;
  min-width: 70px;
  flex-shrink: 0;
}

.accommodation-card-value {
  color: #3b3a3a;
  font-weight: 400;
  flex: 1;
  text-align: left;
}

/* 利用規約 */

.term {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 140px 0px;
  width: 100%;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1042px;
  margin: auto;
}


.terms-content {
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid;
  border-color: var(--bg-color);
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  position: relative;
  width: 100%;
}

.term__title {
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--bg-color);
  padding: 0px 0px 24px;
  position: relative;
  width: 100%;
  color: var(--black);
  flex: 1;
  font-family: var(--font-family-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.00px;
  line-height: normal;
  text-align: center;
}


.term-item {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}



.term-item__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 1.7em;;
}

.terms-text {
  align-self: stretch;
  letter-spacing: 0.70px;
  line-height: 24px;
  width: fit-content;
}


.cancellation-text {
  align-self: stretch;
  letter-spacing: 0.70px;
  line-height: 28px;
  position: relative;
}

.cancellation-details {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  position: relative;
  width: 100%;
}

.cancellation-item {
  letter-spacing: 0.70px;
  line-height: 24px;
  position: relative;
  width: fit-content;
}

.cancellation-item {
  letter-spacing: 0.70px;
  line-height: 24px;
  position: relative;
  width: fit-content;
}

.terms-paragraph {
  align-self: stretch;
  letter-spacing: 0.70px;
  line-height: 24px;
  position: relative;
}

.block-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--primary);
  height: 22px;
  width: 3px;
}
.block-title {
  color: var(--black);
  padding-left: 20px;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xxxxl);
  font-weight: 500;
  letter-spacing: 0.60px;
  line-height: normal;
  width: fit-content;
  position: relative;
}
.block-title--sans {
  font-family: var(--font-family-sans);
}

@media (max-width: 789px) {
  .term {
    padding: 80px 0;
    width: calc(100% - 48px);
  }
  .term__title {
    font-size: 20px;
  }

  .terms-content {
    padding: 24px;
  }

  .term .block-title::before {
    top: 2px;
    transform: none;
  }

  .term .block-title {
    font-size: 16px;
  }
  .term-item {
    gap: 24px;
  }
}

.banner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;  flex: 0 0 auto;
  position: relative;
}

.banner-top {
  align-items: center;
  align-self: stretch;
  background-color: #f9efe7;
  display: flex;
  gap: 32px;
  width: 100%;  flex: 0 0 auto;
  position: relative;
}

.banner-topBox {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}
.banner-topBox__inner {
  background:#fff;
  border: 1px solid #DDD9D9;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 86px;;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
}

.banner-topBox__img {
  height: 45px;
  position: relative;
  width: 39px;
}

.company-name {
  letter-spacing: 0.60px;
  line-height: 28px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.is-disabled-overlay {
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
}

.banner-bottom {
  align-self: stretch;
  width: 100%;
  background-color: #f9efe7;
}

.banner-inner {
  width:90%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  padding: 32px 0;
}

.banner-item {
  background:#fff;
  border: 1px solid #DDD9D9;
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 100%;
}
.banner-item__img {
  height: 54px;
  margin: 14px 0;
}

@media (max-width: 789px) {
  .banner-inner {
    flex-direction: column;
    gap: 16px;
  }

  .block-title {
    padding-left: 16px;
    font-size: 18px;
  }
  
}

.footer {
  align-items: center;
  align-self: stretch;
  background-color: transparent;
  border-top: 1px solid var(--bg-color);
  display: flex;
  gap: 10px;
  height: 64px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.footer__txt {
  letter-spacing: 0.80px;
  font-size: 14px;
  line-height: 32px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.back-btn {
  align-items: center;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 60px;
  width: 60px;
  justify-content: center;
  position: fixed;
  right: 24px;
  bottom: 24px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-btn__icon {
  height: 10px;
  position: relative;
  width: 18px;
}

.back-btn--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-3 {
  align-items: center;
  align-self: stretch;
  background-color: var(--primary);
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  justify-content: center;
  padding: 14px 0px;
  position: relative;
  width: 100%;
}

/* Tour Contact Banner Styles */
.tour-contact-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.tour-contact-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tour-contact-title::before {
  content: '';
  width: 3px;
  height: 23px;
  background-color: var(--primary);
}

.tour-contact-title h3 {
  font-family: var(--font-family-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin: 0;
}

.tour-contact-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.tour-contact-row {
  background-color: #fbf7f7;
  display: flex;
  gap: 24px;
  padding: 19px 30px 19px 30px;
  width: 100%;
  border-radius: 4px;
}

.tour-contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--white);
  padding: 14px 58px;
  border: 1px solid #ddd9d9;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  min-height: 80px;
  box-sizing: border-box;
  justify-content: center;
  position: relative;
}

.tour-contact-item img {
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.tour-contact-item .company-text {
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.48px;
  line-height: 1.4;
}

@media (max-width: 789px) {
  .tour-contact-banner {
    gap: 12px;
  }
  
  .tour-contact-title h3 {
    font-size: 18px;
  }
  
  .tour-contact-row {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }
  
  .tour-contact-item {
    padding: 14px 20px;
    gap: 14px;
  }
  
  .tour-contact-item .company-text {
    font-size: 14px;
  }
}

.dates-3 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 18px;
  position: relative;
  width: 100%;
}


.section-label {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 16px;
  position: relative;
}

.schedule-day.schedule-variant {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.schedule-day .only-sp,
.schedule-day .only-pc {
  width: 100%;
}








.price-3 {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
  position: relative;
}

.image-slider .swiper-slide{
  height: 356px;
}
.image-slider .swiper-slide img{
  height: auto;
  width:100%;
  object-fit: cover;
}

/* ツアーサブ画像のSwiper設定（SP用） */
.tour-sub-swiper {
  width: 100%;
  height: 180px;
  position: relative;
}

.tour-sub-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.tour-sub-swiper .tour-content-img__img {
  width: 100%;
  height: 100%;
}

.tour-sub-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-sub-swiper .swiper-button-next,
.tour-sub-swiper .swiper-button-prev {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  color: #3b3a3a;
}

.tour-sub-swiper .swiper-button-next::after,
.tour-sub-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 789px) {
  .image-slider .swiper-slide{
    height: auto;
  }
  .back-btn{
    height: 50px;
    width: 50px;
    right: 0;
    bottom: 0;
  
  }
  
  .footer__txt {
    white-space: normal;
    text-align: center;
    padding: 0px 60px;
    line-height: 20px;
    font-size: 12px;
  }
}