@charset "utf-8";

/*
Theme Name:nara-tabi-curation
version:1.0.0.
*/


/* 全体設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  color: #583B28;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--space-80);
}

main>section {
  width: 100%;
  padding: var(--space-80) 0;
}

/* レスポンシブ対応*/
:root {

  /* セクションタイトル */
  --fs-section-title: 40px;
  /* 本文の見出し */
  --fs-heading: 24px;
  /* 2番目の見出し */
  --fs-midium: 20px;
  /* 小さめの文字*/
  --fs-small: 16px;


  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-64: 64px;
  --space-80: 80px;
  --space-104: 104px;
  --space-120: 120px;
}

@media (max-width: 768px) {
  :root {
    --fs-section-title: 24px;
    /* セクションタイトル */
    --fs-heading: 24px;
    /* 本文の見出し */
    --fs-small: 14px;
    /* 小さめの文字*/

    --space-8: 0px;
    --space-16: 8px;
    --space-24: 16px;
    --space-40: 24px;
    --space-64: 40px;
    --space-80: 40px;
    --space-104: 15px;
    --space-120: 60px;
  }
}

.wrapper {
  width: min(980px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}




/* 緑のボタン */
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-24);
  padding: 16px 24px;
  border-radius: 10px;
  background-color: #6C8851;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  opacity: 0.9;
}

.button img {
  width: 16px;
  height: 16px;
}

/*本文*/
p {
  font-size: 16px;
  line-height: 160%;
}

/*見出し*/
.section-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  padding-bottom: var(--space-32);
  margin: 0 auto;
  text-align: center;
}

.section-title h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-small);
  font-weight: 600;
  color: #6C8851;
  letter-spacing: 120%;
}

.section-title H2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
}


.section-title img {
  width: 80%;
}


/*背景白*/
.white {
  background-color: #FFFFFF;
}

/* 全体設定ここまで */


/*メニュー　*/
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-24) var(--space-40);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #ffffffb5;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fefefe98;
  z-index: 999;
}

.logo img {
  width: 180px;
  height: auto;
}

/*PC*/
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 20px;
  font-weight: 700;
}

/*ハンバーガーメニュー*/
.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background-color: #333;
  transition: 0.3s;
}

@media (max-width: 768px) {

  .menu-button {
    display: block;
    position: relative;
    z-index: 100;
  }


  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 80vh;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 100px 32px 32px;

    z-index: 50;
  }

}

/* ハンバーガー → × */

.menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}



/* ファーストビュー */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
}

/*カルーセル*/
.swiper {
  position: relative;
  width: 1080px;
  height: 600px;
  border-radius: 120px;
  overflow: hidden;
}

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

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

/* スマホ */
@media (max-width: 767px) {
  .swiper {
    width: 100%;
    height: 400px;
    border-radius: 120px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  color: #fff !important;
  top: auto;
  bottom: 24px;
  margin: 0;
}

.swiper-button-prev {
  left: calc(50% - 48px);
  right: auto;
}

.swiper-button-next {
  right: calc(50% - 48px);
  left: auto;
}


/* 矢印の大きさ */


/* キャッチコピー */
.hero {
  position: relative;
}

.fv-text {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 104px;
  width: 100%;
  z-index: 10;
  justify-content: space-between;
  align-items: flex-end;
}

.catchcopy h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 16px 0;
  letter-spacing: 2.5px;
}


@media (max-width: 768px) {
  .catchcopy h2 {
    font-size: 22px;
  }
}

.catchcopy h2 span {
  display: table;
  background-color: rgba(252, 247, 230, 0.7);
  border-radius: 8px;
  padding: 8px 16px;
  /*メニュー　*/
  gap: 24px;
  margin-bottom: 8px;
}

/* 満足度バッジ */
.satisfaction {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: rgba(108, 136, 81, 0.8);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF
}

.satisfaction .label {
  font-size: 18px;
}

.satisfaction .number {
  font-size: var(--fs-heading);
  font-weight: 700;
}


.satisfaction .number span {
  font-size: 20px;
}

/*intro*/
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  margin-top: var(--space-32);
  margin-bottom: var(--space-80);
}


/*自分では選ばなかった出会いをお届け*/
.our-curation {
  position: relative;
}


.our-curation .wrapper {

  display: flex;
  flex-direction: column;
  gap: var(--space-64);
}

.our-curation .section-title {
  position: relative;
}

.our-curation .section-title .absolute {
  width: 10%;
  position: absolute;
  top: 0;
  left: 0;
}

.charm-list {
  width: 70%;
  background-color: #fff9ef;
  border-radius: 8px;
  padding: var(--space-8) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.charm-list li {
  display: flex;
  gap: var(--space-16);
}

.our-curation .absolute {
  width: 25%;
  position: absolute;
  bottom: 0;
  left: 60%;
  z-index: -1;
}

/*例えば、こんな旅をご提案します*/
.your-choice {
  background-color: #FFFBF4;
}

.your-choice .section-title {
  position: relative;
}

.your-choice .section-title .absolute {
  width: 15%;
  position: absolute;
  right: 0;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
}


@media (max-width: 768px) {
  .choice-list {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.card {
  height: 504px;
  padding: var(--space-24);
  background-color: #FFFFFF;
  border-radius: 12px;
  border: #F5ede1 solid 1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .card {

    height: auto;
  }
}



.title-text {
  height: 104px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-label {
  display: inline-block;
  width: fit-content;
  background-color: #6C8851;
  color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}

.card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.card-img {
  width: 100%;
}

.card p {
  height: 80px;
}

@media (max-width: 768px) {
  .card p {
    height: auto;
  }
}

.tag {
  display: flex;
  color: #6C8851;
  font-size: var(--fs-small);
  gap: var(--space-16);
}

.tag span {
  border: 1px solid #F3EDE2;
  padding: 4px 8px;
  border-radius: 4px;
}



/*プラン一例*/
.plan-example {
  padding: 0 var(--space-24);
}

.plan-example-contents{
  display: flex;
  flex-direction: column;
  gap:var(--space-40)
}

.voice {
  display: flex;
  background-color: #FBF5EA;
  align-items: center;
  gap: 40px;
  padding: 16px;
  border-radius: 16px;
}

.voice img {
  width: 20%;
  height: auto;
}

.voice div {
  width: 75%;
  height: auto;
  padding: 16px;
  border-radius: 20px;
  line-height: 160%;
}

.time-schedule {
  display: flex;
  flex-direction: column;
}

.schedule {
  width: 100%;
  display: flex;
  gap: var(--space-24);
}


.time-line {
  width: 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.time {
  font-family: Calistoga;
  font-size: var(--fs-heading);
  font-weight: 400;
  border-radius: 100px;
  border: #6C8851 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  padding: var(--space-24);
}

.line {
  width: 2px;
  flex: 1;
  background-color: #6C8851;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.8s ease-out;
}

@keyframes border-reveal {
  to {
    transform: scaleY(1);
  }
}

.line.is-visible {
  transform: scaleY(1);
}


.schedule-text {
  flex: 1;
  background-color: #FFFBF4;
  padding: var(--space-24);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  margin-bottom: var(--space-40);
}

.schedule-title {
  font-size: var(--fs-heading);
  font-weight: 700;
}

.shoplist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: var(--space-24);
}

@media (max-width: 768px) {
  .shoplist {
    grid-template-columns: 1fr;
  }
}

.shoplist span {
  font-weight: 500;
  font-size: 20px;
}

.shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  padding: var(--space-24);
}

.shop p,
.shopping-time {
  width: 100%;
  text-align: left;
}

/*あなたの旅に寄り添える理由*/
.reason .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-24);
}

.reason-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
}

.reason-card {
  width: calc((100% - var(--space-24)) / 2);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-color: #F3EBDF;
  border-radius: 12px;
  padding: var(--space-16);
  flex-shrink: 0;
  gap: var(--space-32);
}

@media (max-width: 768px) {
  .reason-card {
    width: 100%;
  }
}

.reason-card--large {
  width: 100%;
  flex-basis: 100%;
}

.reason-cards h3 {
  font-size: var(--fs-heading);
  font-weight: 500;
}



.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
}


.reason-circle {
  width: 160px;
  aspect-ratio: 1 / 1;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.reason-circle img {
  width: 120px;
}

.reason-circle p {
  font-size: var(--fs-small);
}


/*プランのご案内*/
.plan-price-guide {
  background-color: #FFFBF4;
}

.plan-price-guide .section-title {
  position: relative;
}

.plan-price-guide .section-title .absolute {
  width: 10%;
  position: absolute;
  left: 70%;
}

.price-table {
  width: 90%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: #583B28;
  text-align: center;
}

.price-table th,
.price-table td {
  padding: var(--space-24);
  font-size: var(--fs-heading);
  vertical-align: middle;
  text-align: center;
}

.price-table th:not(.price-table__empty) {
  background-color: #f2e8da;
}

.price-table th {
  border-color: #fff;
  font-weight: 400;
}

.price-table td {
  background-color: #fff;
  border-color: #eadfd2;
  font-size: var(--fs-midium);
}

.price,
.due {
  width: 20%;
  border-right: 1px solid #fff;
}

.price-table__empty {
  width: 20%;
  background-color: transparent;
}

/*線*/
.plan-name,
.price {
  border-right: 1px solid #fff;
}

.price {
  border-bottom: 1px solid #fff;
}

.plan-price {
  border-bottom: 1px solid #8b6a55;
  border-right: 1px solid #8b6a55;
}

.plan-due {
  border-right: 1px solid #8b6a55;
}

/* 消したい線*/
.plan-name:last-child,
.plan-price:last-child,
.plan-due:last-child {
  border-right: none;
}




/* 角丸*/

/* 左上 */
.plan-name:first-of-type {
  border-radius: 8px 0 0 0;
}

/* 右上 */
.plan-name:last-child {
  border-radius: 0 8px 0 0;
}

/* 左下 */
.due {
  border-radius: 0 0 0 8px;
}

/* 右下 */
.plan-due:last-child {
  border-radius: 0 0 8px 0;
}


/*ご利用の流れ*/

.flow-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
  margin-top: var(--space-32);
}


@media (max-width:768px) {
  .flow-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flow-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #FFFBF4;
  align-items: center;
  text-align: center;
  gap: var(--space-24);
  padding: var(--space-24), 0;
}

.card-number {
  width: 100%;
  text-align: left;
  position: absolute;
  top: -24px;
  color: #6C8851;
  font-family: calistoga;
  font-size: var(--fs-heading);
}

.flow-title {
  font-size: var(--fs-heading);
  font-weight: 700;
}

.flow-card img {
  width: var(--space-64);
  aspect-ratio: 1 / 1;
}


.contact {
  background-color: #F2EADD;
}

/*フッター*/
footer {
  background-color: #583B28;
  color: #ffffff;
  text-align: center;
}

footer h3 {
  font-size: var(--fs-midium);
}