/* 共通 */
:root {
  --main-font: "TheImpressionist", serif;
  /* --noto-font: "Noto Sans JP", sans-serif; */
  --sub-font: "Parisienne", cursive;
  --noto-font: "Noto Serif", serif;
  --base-font-size: 16px;
  --heading-font-size: 2rem;
  --main-color: #B59B9B;
  --main-blue: #1F233A;
  --main-gray: #D9D9D9;
  --font-gray: #4E4E4E;
}

.wrap {
  margin: 10rem 0;
  padding: 0;
}

.wrap img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
}

h1 {
  color: #1F233A;
  font-family: var(--noto-font);
  font-size: 5rem;
}

.container_wrapper {
  width: 128rem;
  padding: 5rem 0 1rem;
  background-color: #D9D9D9;
}

.plan-title-en {
  font-size: 5rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem 0 0;
  color: #1F233A;
  font-family: var(--main-font);
}

.plan-title-ja {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 5rem;
  color: #1F233A;
  font-family: var(--noto-font);
}

.content-container {
  background-color: #fff;
}


.lite-area {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.lite-detail {
  /* margin: 5rem 0 0 2rem; */
}

.content h2 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 -3rem;
  font-family: var(--noto-font);
  color: #1F233A;
  text-align: center;
}

.lite-detail p {
  font-size: 2rem;
  font-weight: 300;
  /* margin: 0 0 1rem; */
  font-family: var(--noto-font);
  color: #1F233A;

}

.lite-img img {
  width: 40rem;
  height: 30rem;
  object-fit: cover;
  margin: 7rem 3rem 5rem;
}



/* タブ切り替えのスタイル */
* {
  box-sizing: border-box;
}

.content_area {
  width: 100%;
  max-width: 113.5rem;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.tab-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0px;
  justify-content: space-between;
}

.tab {
  color: #ffffff;
  font-weight: 200;
  font-size: 1.6rem;
  text-align: center;
  /* width: calc(100% / 3); */
  width: 34rem;
  padding: 2rem 0rem 2rem;
  background-color: #1F233A;
  cursor: pointer;
  /* border: 1px solid #D4A373; */
  font-family: var(--noto-font);
}

.tab.active {
  background-color: #ffffff;
  color: #1F233A;
}

.content {
  display: none;
  /*必須*/
}

.content.show {
  display: block;
  /*必須*/
}

/* タブ切り替えのスタイルここまで */

/* キャンセルポリシー */
.policy-link {
  text-align: center;
}

.policy-link a {
  font-family: var(--noto-font);
  color: #1F233A;
  font-size: 2rem;
  margin: 2rem 0 7rem;
  display: block;
}



/* ここからスマホ版・SP版 */
@media screen and (max-width: 699.98px) {

  /* 画面幅が699.98px以下のデバイスに適用するスタイル */
  /* コンテンツの大枠 */
  .container_wrapper {
    max-width: 37.5rem;
    margin: 0rem auto;
  }

  .container_wrapper {
    padding: 0rem 0 1rem;
  }

  .contents_wrapper:last-of-type {
    max-width: 37.5rem;
    margin: 0rem auto 7rem;
  }

  .wrap {
    margin: 6rem 0 0;
  }

  .wrap img {
    width: 100%;
    height: 60rem;
    object-fit: cover;
  }

  .content_area {
    width: 100%;
    max-width: 37.5rem;
    padding: 0rem 0 3rem;
  }

  .plan-title-ja {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }


  .lite-area {
    display: block;
    text-align: center;
  }

  .lite-img img {
    width: 30rem;
    height: 15rem;
    object-fit: cover;
    margin: 3rem auto 0rem;
  }

  .lite-detail {
    margin: 0rem auto;
    width: 30rem;
    padding: 2rem;
  }

  .lite-detail p {
    font-size: 1.2rem;
    text-align: start;
    /* padding: 0 0 0 5rem; */
    line-height: 2;
  }



  /* ここからリンクボタン */
  .link-btn {
    width: 20rem;
    height: 5rem;
    font-size: 1.6rem;
    line-height: 5rem;
  }

  /* タブ切り替えのスタイル */
  .tab-container {
    /* display: block; */
  }

  .tab {
    width: 11rem;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 3rem;
    padding: 1rem 0rem 1rem;
  }

  /* タブ切り替えのスタイルここまで */
}

/* キャンセルポリシー */
.policy-link a {
  font-family: var(--noto-font);
  color: #1F233A;
  font-size: 1.2rem;
  margin: 2rem 0 4rem;
  display: block;
  cursor: pointer;
}


/* inview */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.inview1 {
  opacity: 0;
  transform: translateY(5rem);
  transition: 0.8s;
}

.inview1.show {
  opacity: 1;
  transform: translateY(0px);
  /* background-color: #fff; */
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */