/* ------------------------------
General Styles
--------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap');

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, sans-serif;
  color: #222222;
  font-size: 62.5%;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff;
}

img {
  width: 100%;
  height: auto;
}

picture {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: flex;
  flex-flow: column;
}

ul, ul li, ol, ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #222222;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  /* Chrome および Safari でデフォルトスタイルを解除 */
  -moz-appearance: none;
  /* Firefox でデフォルトスタイルを解除 */
}

/* ----------------------------
メディアクエリ
------------------------------ */
/*
SPファーストで記述

幅768px以下 スマホサイズ

@media screen and (min-width:768px) and (max-width:1024px)
幅769px以上1000px以下 タブレットサイズ

@media screen and (min-width:1025px)
幅1025px以上〜 PCサイズ-- */
.sp {
  display: block !important;
}

.tab {
  display: none !important;
}

.sp-tab {
  display: block !important;
}

.tab-pc {
  display: none !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width:768px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: block !important;
  }

  .sp-tab {
    display: block !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

@media screen and (min-width:1025px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: none !important;
  }

  .sp-tab {
    display: none !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: block !important;
  }
}

/* ----------------------------
font
------------------------------ */
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: 0.04em;
}

p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}

.note {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  margin: 16px auto 0;
  text-align: center;
}

/* ------------------------------
Transition elsements
------------------------------ */
a, button {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

button:hover {
  cursor: pointer !important;
}

a:hover {
  opacity: 0.7;
  cursor: pointer !important;
}

/* ------------------------------
スクロールで表示
------------------------------ */
/* その場で */
.fadeIn-content {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ----------------------------
ボタン
------------------------------ */
.btn {
  display: block;
  margin: 0 auto;
  width: calc(100% - 32px);
  max-width: 343px;
  cursor: pointer;
  box-sizing: border-box;
}

.btn p {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

/* --チケット購入ボタン-- */
.sales-btn {
  color: #fff;
  background-color: #0071BC;
  padding: 20px 0;
  border-radius: 50px;
  position: relative;
  text-align: center;
  letter-spacing: 0.04em;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
  box-sizing: border-box;
}

.sales-btn::after {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  background: #fff url(../images/icon-cart.svg) no-repeat center center;
  padding: 13px;
  border-radius: 50px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.sales-btn:hover {
  letter-spacing: 0.15em;
  opacity: 1;
  background: #008ae6;
}

/* --汎用ボタン-- */
.MP-btn {
  color: #0071BC;
  border: 2px solid #0071BC;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 50px;
  position: relative;
  text-align: center;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
  box-sizing: border-box;
}

.MP-btn::after {
  display: block;
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-arrow-right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 15px;
}

.MP-btn:hover {
  letter-spacing: 0.15em;
  opacity: 1;
}

/* --運行会社ボタン-- */
.company-btn {
  width: 100%;
  color: #233B6C;
  background-color: #fff;
  text-align: left;
  padding: 8px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.company-btn:hover {
  opacity: 1;
  transform: scale(1.025);
}

.company-btn picture {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  overflow: hidden;
}

.company-btn::after {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/icon-external-link.svg) no-repeat center center;
  position: absolute;
  top: 35%;
  right: 8px;
}

/* --詳細ボタン-- */
.detail-btn {
  display: block;
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1;
  color: #0071BC;
  font-weight: 500;
  text-align: center;
  margin: 12px 0 12px auto;
  padding: 0px 26px 0px 10px;
  border: 1px solid #0071BC;
  border-radius: 50px;
  background: top 2px right 8px / 16px 16px url(../images/icon-external-link.svg)no-repeat #fff;
}

@media screen and (max-width:320px) {
  .btn p {
    font-size: 1.6rem;
  }

  /* --チケット購入ボタン-- */
  .sales-btn {
    padding: 16px 0;
  }

  .sales-btn::after {
    width: 16px;
    height: 16px;
    top: 3px;
    right: 2px;
  }

  .sales-btn:hover {
    letter-spacing: 0.1em;
  }
}

/* ------------------------------
追尾_チケット購入ボタン
------------------------------ */
.tracking-sales-btn {
  display: block;
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 10;
}

.tracking-sales-btn:hover {
  opacity: 1;
}

.tracking-sales-btn .tracking-sales-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100px;
  height: 100px;
  background: #0071BC;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
}

.tracking-sales-btn .tracking-sales-btn-wrapper p {
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.tracking-sales-btn .tracking-sales-btn-wrapper span {
  display: block;
  width: 64px;
  height: 38px;
}

.tracking-sales-btn .tracking-sales-btn-wrapper span::before {
  content: '';
  display: inline-block;
  width: 64px;
  height: 38px;
  background: url(../images/illust_ticket-btn.svg) no-repeat;
  background-size: contain;
}

@media screen and (min-width:1025px) {
  .tracking-sales-btn .tracking-sales-btn-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 100px;
  }

  .tracking-sales-btn .tracking-sales-btn-wrapper p {
    font-size: 1.4rem;
  }

  .tracking-sales-btn .tracking-sales-btn-wrapper span {
    width: 76px;
    height: 45px;
  }

  .tracking-sales-btn .tracking-sales-btn-wrapper span::before {
    width: 76px;
    height: 45px;
  }
}

/* ------------------------------
ハンバーガーメニューボタン
------------------------------ */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  border-radius: 0;
}

.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 101;
  margin: 12px 12px 0 0;
  float: right;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.openbtn span {
  display: inline-block;
  transition: all .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 30px;
  height: 3px;
  border-radius: 30px;
  background: #0071BC;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
}

.openbtn span:nth-of-type(3) {
  top: 35px;
}

.is-menu-active .openbtn {
  box-shadow: none;
}

.is-menu-active .openbtn span:nth-of-type(1) {
  top: 17px;
  left: 11px;
  transform: translateY(6px) rotate(-45deg);
}

.is-menu-active .openbtn span:nth-of-type(2) {
  opacity: 0;
}

.is-menu-active .openbtn span:nth-of-type(3) {
  top: 30px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
}

body.is-menu-active {
  overflow: hidden;
}

@media screen and (min-width:1025px) {
  body.is-menu-active {
    position: relative;
  }

  body.is-menu-active::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }

  /* --ホバーすると少し拡大-- */
  .openbtn:hover {
    width: 54px;
    height: 54px;
    box-shadow: 0px 7px 30px rgb(0 0 0 / 10%);
  }

  .openbtn:hover span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn:hover span:nth-of-type(2) {
    top: 27px;
  }

  .openbtn:hover span:nth-of-type(3) {
    top: 37px;
  }

  .is-menu-active .openbtn:hover span:nth-of-type(1) {
    top: 19px;
    left: 12px;
  }

  .is-menu-active .openbtn:hover span:nth-of-type(3) {
    top: 32px;
    left: 12px;
  }
}

/* ------------------------------
翻訳ボタン
------------------------------ */
/* -- 翻訳前 -- */
.translate-btn {
  background-color: #F759AF;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  margin: 12px 0 0 0;
  border-radius: 50%;
  z-index: 101;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.translate-btn:hover {
  background-color: #F759AF;
}

.translate-btn span {
  display: block;
  background: url(../images/icon-lang.svg)top 7px center / 20px 20px no-repeat;
  width: 50px;
  height: 50px;
  position: relative;
}

.translate-btn span::after {
  content: 'lang';
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -- 翻訳後 -- */
.translate-btn.clear span {
  background: url(../images/icon-lang-clear.svg)top 9px center / 28px 20px no-repeat;
}

.translate-btn.clear span::after {
  content: 'clear';
}

/* ------------------------------
header
------------------------------ */
header {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: calc(infinity);
}

header .header-wrapper {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

header .header-wrapper .menu {
  position: absolute;
  top: 0;
  /* メニューを画面外に配置 */
  transform: translateX(100vw);
  transition: all 0.6s ease-in-out;
  overflow: hidden;
}

.is-menu-active header .header-wrapper .menu {
  width: 100%;
  height: 100vh;
  background: #E9F6FF;
  /* メニューを表示位置に */
  transform: translateX(0);
  transition: all 0.6s ease-in-out;
}

header .header-wrapper .menu .menu-wrapper {
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header .header-wrapper .menu .menu-wrapper .menu-item a {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  color: #233B6C;
  font-weight: 700;
  text-align: center;
  position: relative;
}

@media screen and (min-width:768px) {
  header .header-wrapper .menu .menu-wrapper {
    gap: 64px;
  }
}

@media screen and (min-width:1025px) {
  header .header-wrapper .menu {
    /* メニューを画面外に配置 */
    transform: translateX(100vw);
  }

  .is-menu-active header .header-wrapper .menu {
    width: 391px;
    margin: 0 0 calc(100% - 391px) 0;
    /* メニューを表示位置に */
    transform: translateX(0);
  }

  r header .header-wrapper .menu .menu-wrapper .sales-btn {
    width: 100%;
    margin: 0;
  }

  header .header-wrapper .menu .menu-wrapper {
    width: calc(100% - 48px);
    align-items: flex-start;
    gap: 40px;
  }

  header .header-wrapper .menu .menu-wrapper .menu-item a {
    font-size: 1.6rem;
    text-align: start;
    position: relative;
  }

  header .header-wrapper .menu .menu-wrapper .menu-item a:hover {
    opacity: 1;
    color: #0071BC;
  }

  header .header-wrapper .menu .menu-wrapper .menu-item a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #0071BC;
    transition: 0.3s;
  }

  header .header-wrapper .menu .menu-wrapper .menu-item a:hover:after {
    width: 100%;
  }
}

@media screen and (max-width:320px) {
  header .header-wrapper .menu .menu-wrapper {
    gap: 32px;
  }

  header .header-wrapper .menu .menu-wrapper .menu-item a {
    font-size: 1.6rem;
  }
}

/* ------------------------------
ヒーローエリア
------------------------------ */
.hero-area {
  width: 100%;
  background: url(../images/webp/top-img.webp) no-repeat center bottom 10%;
}

.no-webp .hero-area {
  background: url(../images/top-img.png) no-repeat center bottom 10%;
}

.hero-area .hero-area-wrapper .txt-box {
  width: calc(100% - 32px);
  margin: 64px auto 40px;
  text-align: center;
}

.hero-area .hero-area-wrapper .txt-box img {
  max-width: 640px;
  height: auto;
}

@media screen and (min-width:768px) {
  .hero-area .hero-area-wrapper .txt-box {
    margin: 40px auto;
  }
}

@media screen and (min-width:1025px) {
  .hero-area {
    background: url(../images/webp/top-img.webp) no-repeat center bottom 25%;
  }

  .hero-area .hero-area-wrapper .txt-box {
    margin: 64px auto;
  }

  .hero-area .hero-area-wrapper .txt-box img {
    max-width: 1037px;
  }
}


/* ------------------------------
四国ハイウェイバスフリーパス
------------------------------ */
.ticket-area {
  width: calc(100% - 32px);
  max-width: 1016px;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.ticket-area .ticket-detail {
  max-width: 800px;
  margin: 0 auto 32px;
}

.ticket-area .ticket-detail picture {
  max-width: 343px;
  margin: 0 auto;
}

.ticket-area .ticket-detail p {
  font-size: 1.6rem;
  font-weight: 700;
}

.ticket-area .ticket-detail .start-sales {
  font-size: 5.867vw;
  line-height: 1;
  font-weight: 700;
  color: #F759AF;
  padding: 32px 16px 0;
  margin: 0 auto;
  text-align: center;
  grid-area: start-sales;
  position: relative;
  width: 100%;
  max-width: 282px;
  box-sizing: border-box;
}

.translated-ltr .ticket-area .ticket-detail .start-sales {
  max-width: 359px;
}

.ticket-area .ticket-detail .start-sales::before {
  content: '';
  display: block;
  width: 14px;
  height: 28px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../images/dotted-pink-line-left.svg) no-repeat bottom center;
  background-size: contain;
}

.ticket-area .ticket-detail .start-sales::after {
  content: '';
  display: block;
  width: 14px;
  height: 28px;
  position: absolute;
  bottom: -6px;
  right: 0;
  background: url(../images/dotted-pink-line-right.svg) no-repeat bottom center;
  background-size: contain;
}

/* フリーパス価格 */
.ticket-area .ticket-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.ticket-area .ticket-price-wrapper .ticket-price {
  width: 100%;
  max-width: 420px;
  height: 150px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "day price"
    "day period"
    "day  end-sales";
  align-items: center;
  justify-content: start;
  border-radius: 4px;
  margin: 0 auto;
}

.ticket-area .ticket-price-wrapper .ticket-price:is(.second-day) {
  border: 1px solid #E23870;
}

.ticket-area .ticket-price-wrapper .ticket-price:is(.third-day) {
  border: 1px solid #EB6D00;
}

.ticket-area .ticket-price-wrapper .ticket-price:is(.fifth-day) {
  border: 1px solid #079448;
}

.ticket-area .ticket-price-wrapper .ticket-price .day-box {
  grid-area: day;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.ticket-area .ticket-price-wrapper .ticket-price .day-box h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  padding: 16px;
  text-align: center;
}

.ticket-area .ticket-price-wrapper .second-day .day-box {
  background-color: #E23870;
}

.ticket-area .ticket-price-wrapper .third-day .day-box {
  background-color: #EB6D00;
}

.ticket-area .ticket-price-wrapper .fifth-day .day-box {
  background-color: #079448;
}

.ticket-area .ticket-price-wrapper .ticket-price .price {
  width: 100%;
  grid-area: price;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 12px 12px 6px 12px;
  box-sizing: border-box;
}

.ticket-area .ticket-price-wrapper .ticket-price .price+p {
  width: 100%;
  grid-area: period;
  line-height: 1.2;
  padding: 0 12px 6px 12px;
  box-sizing: border-box;
}

.ticket-area .ticket-price-wrapper .ticket-price .end-sales {
  width: 100%;
  grid-area: end-sales;
  line-height: 1.2;
  padding: 0 12px 12px 12px;
  box-sizing: border-box;
}

.ticket-area .ticket-price-wrapper .second-day .end-sales {
  color: #E23870;
}

.ticket-area .ticket-price-wrapper .third-day .end-sales {
  color: #EB6D00;
}

.ticket-area .ticket-price-wrapper .fifth-day .end-sales {
  color: #079448;
}

/* フリーパス価格以下 */
.ticket-area .term-of-validity-wrapper {
  max-width: 1016px;
  margin: 24px auto 0;
  text-align: center;
}

.ticket-area .term-of-validity-wrapper h3 {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #233B6C;
  background: #E9F6FF;
  padding: 8px 0;
}

.ticket-area .term-of-validity-wrapper p {
  margin: 24px auto 0;
}

.ticket-area .sales-btn {
  margin: 24px auto 0;
}

@media screen and (min-width:375px) {
  .ticket-area .ticket-price-wrapper .ticket-price {
    height: 130px;
  }
}

@media screen and (min-width:768px) {
  .ticket-area .ticket-detail {
    margin: 0 auto 16px;
  }

  .ticket-area .ticket-detail p {
    text-align: center;
  }

  .ticket-area .ticket-detail .start-sales {
    font-size: 2.4rem;
    max-width: 320px;
    box-sizing: unset;
  }

  /* フリーパス価格 */
  .ticket-area .ticket-price-wrapper {
    flex-direction: row;
  }

  .ticket-area .ticket-price-wrapper .ticket-price {
    width: calc(100% / 3);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ticket-area .ticket-price-wrapper .ticket-price .day-box {
    width: 100%;
    max-height: 35px;
  }

  .ticket-area .ticket-price-wrapper .ticket-price .day-box h3 {
    width: 100%;
  }

  .ticket-area .ticket-price-wrapper .ticket-price .price {
    text-align: center;
    padding: 12px 12px 8px 12px;
  }

  .ticket-area .ticket-price-wrapper .ticket-price .price+p {
    padding: 0 16px 8px 16px;
  }

  .ticket-area .ticket-price-wrapper .ticket-price .end-sales {
    padding: 0 16px 12px 16px;
  }
}

@media screen and (min-width:1025px) {
  .ticket-area {
    padding: 32px 0 64px;
  }

  .ticket-area .ticket-detail {
    max-width: none;
    margin: 0 auto 24px;
  }

  .ticket-area .ticket-detail p {
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .ticket-area .ticket-detail .start-sales {
    padding: 40px 16px 0;
  }

  /* フリーパス価格以下 */
  .ticket-area .sales-btn {
    margin: 40px auto 0;
  }

  .ticket-area .term-of-validity-wrapper p span {
    padding: 0 0 0 16px;
  }
}

/* ------------------------------
注意事項　共通
------------------------------ */
.precautions-wrapper {
  width: calc(100% - 16px);
  max-width: 1016px;
  margin: 24px auto 0;
}

.precautions-wrapper h3 {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #233b6c;
  text-align: center;
  background: #fff;
  padding: 8px 0;
}

.precautions-wrapper ol {
  padding: 16px 8px 0 24px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.precautions-wrapper ol li {
  margin-bottom: 12px;
  list-style: disc;
}

.precautions-wrapper ol li:last-child {
  margin-bottom: 0;
}

/* ------------------------------
乗り放題対象路線
------------------------------ */
.route-list-area {
  width: 100%;
  padding: 40px 0;
  margin: 0 auto;
  background: #E9F6FF;
  position: relative;
}

.route-list-area::before {
  content: '';
  display: block;
  width: 24px;
  height: 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fff;
  position: absolute;
  top: 0;
  left: calc(50% - 12px);
}

.route-list-area h2 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  width: calc(100% - 16px);
  max-width: 1000px;
  background: #E9F6FF;
  margin: 0 auto;
  padding: 12px 0;
  background: #fff;
  border-top: 1px solid #233B6C;
  border-bottom: 1px solid #233B6C;
}

/* 路線 */
.route-list-area .route-list {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}

.route-list-area .route-list>li {
  width: calc(50% - 4px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
}

.route-list-area .route-list>li h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  padding: 16px 0;
  background: #94D3FF;
  overflow-wrap: anywhere;
  border-radius: 4px 4px 0 0;
}

.route-list-area .route-list>li p {
  width: calc(100% - 16px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  border-bottom: 1px solid #C8C8CB;
}

.route-list-area .route-list>li ol {
  width: calc(100% - 16px);
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 12px 0;
  margin: 0 auto;
}

.route-list-area .route-list>li ol li {
  padding-left: 14px;
  position: relative;
  font-weight: 500;
}

.route-list-area .route-list>li ol li::before {
  display: block;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background: #222222;
  position: absolute;
  top: 35%;
  left: 4px;
}

@media screen and (min-width:768px) {

  /* 路線 */
  .route-list-area .route-list {
    gap: 24px 8px;
  }

  .route-list-area .route-list>li {
    width: calc(25% - 6px);
  }

  .route-list-area .route-list>li p {
    width: calc(100% - 16px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto;
    border-bottom: 1px solid #C8C8CB;
  }
}

@media screen and (min-width:1025px) {
  .route-list-area {
    padding: 64px 0;
  }

  /* 路線 */
  .route-list-area .route-list {
    margin: 36px auto 0;
    gap: 24px 16px;
  }

  .route-list-area .route-list>li {
    width: calc(25% - 12px);
  }

  .route-list-area .route-list>li h3 {
    font-size: 2rem;
  }

  .route-list-area .route-list>li p {
    font-size: 1.6rem;
    padding: 16px 0 12px;
  }

  .route-list-area .route-list>li ol {
    padding: 12px 0 16px;
  }

  .route-list-area .route-list>li ol li {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .route-list-area .route-list>li ol li::before {
    top: 45%;
    left: 4px;
  }

  /* 路線以下 */
  .route-list-area .precautions-wrapper {
    margin: 40px auto 0;
  }
}

/* ------------------------------
フリーパス購入・利用共通
------------------------------ */
.how-to-buy-area, .how-to-use-area, .how-to-use-area2 {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
}

.how-to-buy-area h2, .how-to-use-area h2, .how-to-use-area2 h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
}

.how-to-list {
  width: calc(100% - 80px);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 32px 0 0;
}

.how-to-list li {
  position: relative;
}

.how-to-list li .number {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #95D3FF;
  position: absolute;
  top: 0;
  left: -20px;
}

.how-to-list li picture {
  width: 200px;
  height: 270px;
  object-fit: cover;
  object-position: top;
  overflow: hidden;
  margin: 0 auto 16px;
}

@media screen and (min-width:768px) {
  .how-to-list {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 24px;
    padding: 40px 0 0;
  }

  .how-to-list li {
    width: calc(33% - 16px);
  }

  .how-to-list li .number {
    line-height: 1.5;
    width: 32px;
    height: 32px;
    left: -18px;
  }

  .how-to-list li picture {
    width: 150px;
    height: 258px;
  }
}

@media screen and (min-width:1025px) {
  .how-to-list {
    width: 1000px;
    padding: 48px 0 0;
    margin: 0 0 0 18px;
  }

  .how-to-list li {
    width: calc(25% - 18px);
  }
}

@media screen and (max-width:320px) {
  .how-to-list li .number {
    font-size: 1.8rem;
    line-height: 1.8;
    width: 32px;
    height: 32px;
    left: -32px;
  }
}

/* ------------------------------
フリーパス購入方法
------------------------------ */
.how-to-buy-area {
  padding: 40px 0;
  border-bottom: 1px dotted #C0C0C0;
}

@media screen and (min-width:1025px) {
  .how-to-buy-area {
    padding: 64px 0;
  }
}

/* ------------------------------
フリーパス利用方法(高速バスの予約方法)
------------------------------ */
.how-to-use-area {
  padding: 40px 0;
  border-bottom: 1px dotted #C0C0C0;
}

/* 4〜7番目の画像は高さ344px */
.how-to-use-area .how-to-list li:nth-child(n+4):nth-child(-n+7) picture {
  height: 344px;
}

/* 9番目は画像2個 */
.how-to-use-area .how-to-list li .pict-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 0 auto 16px;
  background: url(../images/icon-arrow-bottom.svg) no-repeat center center;
}

.how-to-use-area .how-to-list li .pict-wrapper picture {
  margin: 0 auto;
}

/* 3・4・6番目のテキストはセンター合わせ */
.how-to-use-area .how-to-list li:nth-child(3) picture+p,
.how-to-use-area .how-to-list li:nth-child(4) picture+p,
.how-to-use-area .how-to-list li:nth-child(6) picture+p {
  text-align: center;
}

@media screen and (min-width:768px) {

  /* 4〜7番目の画像は高さ258px */
  .how-to-use-area .how-to-list li:nth-child(n+4):nth-child(-n+7) picture {
    height: 258px;
  }

  /* 9番目は画像2個 */
  .how-to-use-area .how-to-list li:nth-child(9) {
    width: 65%;
  }

  .how-to-use-area .how-to-list li .pict-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0px;
    background: url(../images/icon-arrow-right.svg) no-repeat center center;
  }
}

@media screen and (min-width:1025px) {
  .how-to-use-area {
    padding: 64px 0;
  }

  /* 9番目は画像2個 */
  .how-to-use-area .how-to-list li:nth-child(9) {
    width: 49%;
  }
}

/* ------------------------------
フリーパス利用方法（予約締切後の高速バスへの乗車方法）
------------------------------ */
.how-to-use-area2 {
  padding: 40px 0;
}

.how-to-use-area2 .precautions-wrapper {
  margin: 24px auto 0;
}

.how-to-use-area2 .precautions-wrapper h3 {
  background: #E9F6FF;
}

/* 3番目の画像は高さ344px */
.how-to-use-area2 .how-to-list li:nth-child(3) picture {
  height: 344px;
}

.how-to-use-area2 .precautions-wrapper .sales-btn {
  margin: 20px auto 0;
}


@media screen and (min-width:768px) {

  /* 3番目の画像は高さ258px */
  .how-to-use-area2 .how-to-list li:nth-child(3) picture {
    height: 258px;
  }

  .how-to-use-area2 .precautions-wrapper .sales-btn {
    margin: 40px auto 0;
  }
}

@media screen and (min-width:1025px) {
  .how-to-use-area2 {
    padding: 64px 0;
  }

  .how-to-use-area2 .precautions-wrapper {
    margin: 48px auto 0;
  }

  .how-to-use-area2 .precautions-wrapper .sales-btn {
    margin: 64px auto 0;
  }
}

/* ------------------------------
各県おすすめスポット・コース
------------------------------ */
.recomend-area {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0 64px;
}

.recomend-area h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
}

.recomend-area h2+p {
  text-align: center;
  margin: 24px auto 0;
}

.recomend-area .prefecture-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 16px 10px;
  margin: 16px auto 0;
  justify-content: center;
}

.recomend-area .prefecture-list a {
  display: block;
  max-width: 238px;
  padding: 8px 16px 10px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  box-shadow: 2px 4px 8px rgb(0 0 0 / 15%);
}

.recomend-area .prefecture-list .ehime a {
  border: 1px solid #D1783B;
}

.recomend-area .prefecture-list .kagawa a {
  border: 1px solid #D05972;
}

.recomend-area .prefecture-list .kouchi a {
  border: 1px solid #006837;
}

.recomend-area .prefecture-list .tokushima a {
  border: 1px solid #00718D;
}

.recomend-area .prefecture-list p {
  width: 100%;
  text-align: center;
  margin: 10px auto 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

.recomend-area .prefecture-list .ehime p {
  color: #D1783B;
}

.recomend-area .prefecture-list .kagawa p {
  color: #D05972;
}

.recomend-area .prefecture-list .kouchi p {
  color: #006837;
}

.recomend-area .prefecture-list .tokushima p {
  color: #00718D;
}

.recomend-area .prefecture-list p::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/icon-arrow-right_w.svg) no-repeat center center / 6px 10px;
  border-radius: 50%;
}

.recomend-area .prefecture-list .ehime p::after {
  background-color: #D1783B;
}

.recomend-area .prefecture-list .kagawa p::after {
  background-color: #D05972;

}

.recomend-area .prefecture-list .kouchi p::after {
  background-color: #006837;
}

.recomend-area .prefecture-list .tokushima p::after {
  background-color: #00718D;
}

@media screen and (min-width:768px) {
  .recomend-area .prefecture-list {
    margin: 24px auto 0;
    gap: 24px;
  }

  .recomend-area .prefecture-list li {
    position: relative;
    top: 0;
  }

  .recomend-area .prefecture-list li:hover {
    top: -5px;
    transition: 0.3s;
  }

  .recomend-area .prefecture-list li a:hover {
    opacity: 1;
  }
}

@media screen and (min-width:1025px) {
  .recomend-area {
    padding: 56px 0 120px;
  }

  .recomend-area .prefecture-list {
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
    gap: 16px;
    margin: 40px auto 0;
  }

  .recomend-area .prefecture-list p {
    font-size: 2rem;
  }

  .recomend-area .prefecture-list p::after {
    width: 32px;
    height: 32px;
    background: url(../images/icon-arrow-right_w.svg) no-repeat center center / 10px 16px;
  }
}

/* ------------------------------
各社チケット
------------------------------ */
.link-area {
  padding: 0 0 40px;
}

.link-area .ttl-box {
  position: relative;
  margin: 0 auto 32px;
  width: calc(100% - 64px);
  max-width: 360px;
}

.link-area .ttl-box h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
}

.link-area .ttl-box::before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 45px;
  background: url(../images/dotted-line-left.svg) no-repeat bottom center;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

.link-area .ttl-box::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 45px;
  background: url(../images/dotted-line-right.svg) no-repeat bottom center;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

.link-area ol {
  width: calc(100% - 32px);
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  margin: 0 auto;
}

.link-area ol li {
  width: calc(50% - 8px);
}

.link-area ol li a {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.link-area ol li a:hover {
  opacity: 1;
  transform: scale(1.025);
}

@media screen and (min-width:768px) {
  .link-area .ttl-box {
    max-width: 490px;
  }

  .link-area .ttl-box h2 {
    font-size: 2.4rem;
    line-height: 1;
  }

  .link-area .ttl-box::before {
    width: 16px;
    height: 30px;
    bottom: -5px;
  }

  .link-area .ttl-box::after {
    width: 16px;
    height: 30px;
    bottom: -5px;
  }

  .link-area ol {
    gap: 24px;
    max-width: 768px;
  }

  .link-area ol li {
    width: calc(33% - 16px);
  }
}

@media screen and (min-width:1025px) {
  .link-area {
    padding: 0 0 64px;
  }
}

/* ------------------------------
運行会社
------------------------------ */
.company-area {
  background: #E9F6FF;
  padding: 40px 0 120px;
}

.company-area h2 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
}

.company-area ol {
  width: calc(100% - 32px);
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width:768px) {
  .company-area ol {
    max-width: 658px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .company-area ol li {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width:1025px) {
  .company-area {
    padding: 64px 0 160px;
  }

  .company-area ol {
    max-width: 1000px;
    margin: 48px auto 0;
    gap: 24px;
  }

  .company-area ol li {
    width: calc(33% - 13px);
  }
}

/* ------------------------------
footer
------------------------------ */
footer {
  background: #233B6C;
  padding: 24px 0;
}

footer p {
  text-align: center;
  font-weight: 400;
  color: #fff;
}

/* ------------------------------
おすすめスポット・コース一覧
------------------------------ */
/* ---見出し--- */
.recommend-ttl {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 24px auto;
}

.Ehime .recommend-ttl::before {
  content: "";
  display: block;
  width: 110px;
  height: 80px;
  opacity: 0.7;
  margin: 0 auto;
  background: url(../images/map_ehime.svg) no-repeat center center;
}

.Kagawa .recommend-ttl::before {
  content: "";
  display: block;
  width: 110px;
  height: 80px;
  opacity: 0.7;
  margin: 0 auto;
  background: url(../images/map_kagawa.svg) no-repeat center center;
}

.Kouchi .recommend-ttl::before {
  content: "";
  display: block;
  width: 110px;
  height: 80px;
  opacity: 0.7;
  margin: 0 auto;
  background: url(../images/map_kouchi.svg) no-repeat center center;
}

.Tokushima .recommend-ttl::before {
  content: "";
  display: block;
  width: 110px;
  height: 80px;
  opacity: 0.7;
  margin: 0 auto;
  background: url(../images/map_tokushima.svg) no-repeat center center;
}

.recommend-ttl .headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px auto;
}

.recommend-ttl .headline h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.Ehime .recommend-ttl .headline h1 {
  color: #D1783B;
}

.Kagawa .recommend-ttl .headline h1 {
  color: #D05972;
}

.Kouchi .recommend-ttl .headline h1 {
  color: #006837;
}

.Tokushima .recommend-ttl .headline h1 {
  color: #00718D;
}

.recommend-ttl .headline h1+p {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-align: center;
}

/* ---タブ--- */
.category-tab-wrapper .category-tab {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.category-tab-wrapper .category-tab {
  display: flex;
  justify-content: center;
  gap: 3px;
  align-items: flex-end;
}

.Ehime .category-tab-wrapper .category-tab {
  border-bottom: 2px solid #D1783B;
}

.Kagawa .category-tab-wrapper .category-tab {
  border-bottom: 2px solid #D05972;
}

.Kouchi .category-tab-wrapper .category-tab {
  border-bottom: 2px solid #006837;
}

.Tokushima .category-tab-wrapper .category-tab {
  border-bottom: 2px solid #00718D;
}

.category-tab-wrapper .category-tab input[type="radio"] {
  display: none;
}

.category-tab-wrapper .category-tab .category-tab-label {
  width: 100%;
  background-color: #C8C8CB;
  border-radius: 4px 4px 0 0;
  padding: 10px 0;
}

.category-tab-wrapper .category-tab .category-tab-label h2 {
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.category-tab-wrapper .category-tab .category-tab-label:hover {
  cursor: pointer;
}

.category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
  padding: 13px 0;
}

.Ehime .category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
  background-color: #D1783B;
}

.Kagawa .category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
  background-color: #D05972;
}

.Kouchi .category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
  background-color: #006837;
}

.Tokushimae .category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
  background-color: #00718D;
}

/* ---※※※タブ テストサイト用 ページ遷移がリンク※※※--- */

.category-tab-wrapper .category-tab .category-tab-label:hover {
  opacity: 1;
}

.category-tab-wrapper .category-tab .checked.category-tab-label {
  padding: 13px 0;
}

.Ehime .category-tab-wrapper .category-tab .checked.category-tab-label {
  background-color: #D1783B;
}

.Kagawa .category-tab-wrapper .category-tab .checked.category-tab-label {
  background-color: #D05972;
}

.Kouchi .category-tab-wrapper .category-tab .checked.category-tab-label {
  background-color: #006837;
}

.Tokushimaep .category-tab-wrapper .category-tab .checked.category-tab-label {
  background-color: #00718D;
}

/* ---おすすめコース・スポット　子要素--- */
.recommend-list {
  background-color: #E9F6FF;
}

.recommend-list .recommend-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 40px auto 80px;
}

.recommend-list .recommend-content-wrapper .recommend-content {
  display: block;
  max-width: 488px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 4px 8px 16px rgb(0 0 0 / 15%);
}

.recommend-list .recommend-content-wrapper .recommend-content a {
  display: block;
  padding: 16px 16px 24px;
}

.recommend-list .recommend-content-wrapper .recommend-content .cont-pict {
  border-radius: 8px;
  margin: 0 auto 16px
}

.recommend-list .recommend-content-wrapper .recommend-content .cont-ttl {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px
}

.recommend-list .recommend-content-wrapper .recommend-content .cont-tagarea {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin: 16px auto;
}


.recommend-list .recommend-content-wrapper .recommend-content .cont-tagarea .tag {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  color: #C8C8CB;
}

.recommend-list .recommend-content-wrapper .recommend-content .cont-txt {
  font-weight: 400;
  letter-spacing: 0.04em;
}


.recommend-list .MP-btn {
  margin: 0 auto 160px;
}

@media screen and (min-width:768px) {

  /* ---おすすめコース・スポット　子要素--- */
  .recommend-list .recommend-content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 16px;
    justify-content: flex-start;
    align-items: baseline;
  }

  .recommend-list .recommend-content-wrapper .recommend-content {
    width: calc(50% - 8px);
    display: block;
  }

  .recommend-list .recommend-content-wrapper .recommend-content {
    position: relative;
    top: 0;
  }

  .recommend-list .recommend-content-wrapper .recommend-content:hover {
    top: -5px;
    transition: 0.3s;
  }

  .recommend-list .recommend-content-wrapper .recommend-content a:hover {
    opacity: 1;
  }


  .recommend-list .MP-btn {
    margin: 0 auto 160px;
  }
}

@media screen and (min-width:1025px) {

  /* ---見出し--- */
  .recommend-ttl {
    margin: 40px auto 32px;
    position: relative;
  }

  .Ehime .recommend-ttl::before {
    width: 138px;
    height: 100px;
    position: absolute;
    left: 120px;
    top: -20px;
    z-index: -1;
  }

  .Kagawa .recommend-ttl::before {
    width: 138px;
    height: 100px;
    position: absolute;
    left: 120px;
    top: -20px;
    z-index: -1;
  }

  .Kouchi .recommend-ttl::before {
    width: 138px;
    height: 100px;
    position: absolute;
    left: 120px;
    top: -20px;
    z-index: -1;
  }

  .Tokushima .recommend-ttl::before {
    width: 138px;
    height: 100px;
    position: absolute;
    left: 120px;
    top: -20px;
    z-index: -1;
  }

  .recommend-ttl .headline {
    gap: 16px;
    margin: 0 auto 32px;
  }

  .recommend-ttl .headline h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .recommend-ttl .headline h1+p {
    line-height: 1;
  }

  .recommend-ttl .headline+p {
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  /* ---タブ--- */
  .category-tab-wrapper .category-tab {
    gap: 4px;
  }

  .category-tab-wrapper .category-tab input[type="radio"]:checked+.category-tab-label {
    padding: 14px 0;
  }

  /* ---おすすめコース・スポット　子要素--- */
  .recommend-list .recommend-content-wrapper {
    gap: 40px 32px;
  }

  .recommend-list .recommend-content-wrapper .recommend-content {
    width: calc(33% - 21px);
    min-width: 312px;
  }

  .recommend-list .recommend-content-wrapper .recommend-content .cont-pict {
    margin: 0 auto 20px
  }

  .recommend-list .MP-btn {
    margin: 0 auto 160px;
  }
}

/* ------------------------------
おすすめスポット　個別ページ
------------------------------ */
/* --コース・スポット共通部分-- */
.recommend-page .recommend-ttl .headline {
  margin: 16px auto 0;
}

.recommend-spot,
.recommend-course {
  background-color: #E9F6FF;
  padding-bottom: 120px;
}

.recommend-spot .recommend-content-wrapper,
.recommend-course .recommend-content-wrapper {
  width: calc(100% - 32px);
  max-width: 1000px;
  padding: 24px 0 0;
  margin: 40px auto 0;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
}

.recommend-spot .note,
.recommend-course .note {
  width: calc(100% - 32px);
  max-width: 1000px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  margin: 16px auto 0;
}

.recommend-spot .MP-btn,
.recommend-course .MP-btn {
  margin: 80px auto 0;
}

.recommend-content-hero {
  margin: 0 auto 40px;
}

.recommend-content-hero .cont-ttl {
  width: calc(100% - 32px);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px;
}

.recommend-content-hero .cont-img-wrapper {
  margin: 0 auto 24px;
  text-align: center;
  position: relative;
}

.recommend-content-hero .cont-img-wrapper img {
  width: 100%;
  max-width: 992px;
  max-height: 569px;
  object-fit: cover;
}

.recommend-content-hero .criterion {
  width: 100%;
  background: #fff;
  border-top: 1px solid #233B6C;
  border-bottom: 1px solid #233B6C;
  padding: 8px 0;
  position: absolute;
  bottom: -34px;
}

.recommend-content-hero .criterion p {
  width: fit-content;
  line-height: 1.25;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  margin: 0 auto;
  padding-left: 24px;
  position: relative;
}

.recommend-content-hero .criterion p::before {
  display: block;
  width: 20px;
  height: 20px;
  content: '';
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 0;
}

.recommend-content-hero .distance p::before {
  background: url(../images/icon-walking.svg) no-repeat;
}

.recommend-content-hero .cont-tagarea {
  width: calc(100% - 32px);
  margin: 58px auto 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.recommend-content-hero .cont-tagarea .tag {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  background: #E9F6FF;
  padding: 8px 16px;
  border-radius: 50px;
}

.recommend-content-hero .cont-txt {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px dotted #C0C0C0;
  letter-spacing: 0.04em;
}

.recommend-page .section-ttl {
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #94D3FF;
  text-align: center;
  margin: 0 auto 24px;
}

/* --コース・スポット共通部分 下部関連チケット一覧-- */
.recommend-page .related-tickets-area .related-tickets-wrapper {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.recommend-page .related-tickets-area .related-tickets-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket {
  padding: 0 0 32px;
  border-bottom: 1px solid #EEEEEE;
  letter-spacing: 0.04em;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket:last-child {
  padding: 0;
  border-bottom: none;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket .ticket-ttl {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 20px auto;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket .sales-btn {
  width: 100%;
  box-shadow: none;
  padding: 16px 0;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket .sales-btn p {
  font-size: 1.6rem;
}

.recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket .sales-btn::after {
  width: 20px;
  height: 20px;
  padding: 8px;
  background: #fff url(../images/icon-cart.svg) no-repeat left 7px center;
  top: 6px;
  right: 6px;
}

/* -- スポット アクセス方法-- */
.recommend-spot .cont-access-area {
  width: calc(100% - 32px);
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #C0C0C0;
}

.recommend-spot .cont-access-area .address {
  margin: 0 0 8px;
}

.recommend-spot .cont-access-area .iframe-wrap iframe {
  width: 100%;
  height: 400px;
  margin: 0 auto 24px;
}

.recommend-spot .route-search-area {
  margin: 0 auto 40px;
}

.recommend-spot .route-search-area h4 {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 auto 24px;
}

.recommend-spot .route-search-area h4 span {
  font-size: 1.4rem;
  font-weight: 400;
}

.recommend-spot .route-search-area .route-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.recommend-spot .route-search-area .route-btn {
  display: block;
  width: 100%;
  max-width: 343px;
  padding: 21px 0;
  background: top 50% right 16px / 16px 16px no-repeat url(../images/icon-external-link_db.svg) #fff;
  border: 2px solid #233B6C;
  box-sizing: border-box;
  position: relative;
}

.recommend-spot .route-search-area .route-btn p {
  width: fit-content;
  line-height: 1.25;
  font-weight: 700;
  color: #233B6C;
  margin: 0 auto;
  padding-left: 28px;
  position: relative;
}

.recommend-spot .route-search-area .route-btn .car {
  background: top 50% left 0 / 20px 20px no-repeat url(../images/icon-car.svg);
}

.recommend-spot .route-search-area .route-btn .ransportation {
  background: top 50% left 0 / 20px 20px no-repeat url(../images/icon-public-transport.svg);
}

.recommend-spot .route-search-area .route-btn .walk {
  background: top 50% left 0 / 20px 20px no-repeat url(../images/icon-walking.svg);
}

.recommend-spot .how-to-access-area h4 {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 auto 24px;
}

.recommend-spot .how-to-access-area .how-to-access {
  margin: 0 auto 16px;
}

.recommend-spot .how-to-access-area .how-to-access:last-child {
  margin: 0;
}

.recommend-spot .how-to-access-area .how-to-access h5 {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}

.recommend-spot .how-to-access-area .how-to-access ul li {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
  list-style: disc;
  margin-left: 20px;
}

@media screen and (min-width:768px) {

  /* -- スポット アクセス方法-- */
  .recommend-spot .route-search-area .route-btn-wrapper {
    flex-direction: row;
  }

  /* --コース・スポット共通部分 下部関連チケット一覧-- */
  .recommend-page .related-tickets-area .related-tickets-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 16px;
  }

  .recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket {
    width: calc(50% - 8px);
    max-width: 488px;
    padding: 16px 16px 24px 16px;
    border: 1px solid #C8C8CB;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket:last-child {
    padding: 16px 16px 24px 16px;
    border: 1px solid #C8C8CB;
  }
}

@media screen and (min-width:1025px) {

  /* --コース・スポット共通部分-- */
  .recommend-page .recommend-ttl {
    margin: 40px auto;
  }

  .recommend-page .recommend-ttl .headline {
    margin: 0 auto;
  }

  .recommend-spot .recommend-content-wrapper,
  .recommend-course .recommend-content-wrapper {
    padding: 40px;
    margin: 64px auto 16px;
    border-radius: 20px;
  }

  .recommend-spot .note,
  .recommend-course .note {
    text-align: center;
  }

  .recommend-content-hero .cont-ttl {
    font-size: 2.8rem;
    margin: 0 auto 40px;
  }

  .recommend-content-hero .cont-img-wrapper {
    margin: 0 auto 40px;
  }

  .recommend-content-hero .cont-img-wrapper img {
    border-radius: 8px;
  }

  .recommend-content-hero .criterion {
    width: auto;
    border: 1px solid #233B6C;
    padding: 7px 24px;
    border-radius: 50px;
    position: absolute;
    left: 16px;
    bottom: 16px;
  }

  .recommend-content-hero .cont-tagarea {
    margin: 0 auto 40px;
  }

  .recommend-content-hero .cont-tagarea .tag {
    font-size: 1.4rem;
  }

  .recommend-content-hero .cont-txt {
    width: 100%;
  }

  .recommend-page .section-ttl {
    font-size: 3.6rem;
    text-align: left;
    margin: 0 auto 16px;
  }

  /* --コース・スポット共通部分 下部関連チケット一覧-- */
  .recommend-page .related-tickets-area .related-tickets-wrapper {
    width: 100%;
    align-items: flex-start;
    gap: 40px 16px;
    margin: 0;
    padding: 0;
  }

  .recommend-page .related-tickets-area .related-tickets-wrapper .related-ticket {
    width: calc(888px / 3);
  }

  /* -- スポット アクセス方法-- */
  .recommend-spot .cont-access-area {
    width: 100%;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px dotted #C0C0C0;
  }

  .recommend-spot .cont-access-area .iframe-wrap iframe {
    height: 350px;
    margin: 0 auto 40px;
  }

  .recommend-spot .route-search-area {
    margin: 0 auto 32px;
  }

  .recommend-spot .route-search-area h4 span {
    margin-left: 5px;
  }

  .recommend-spot .how-to-access-area h4 {
    margin: 0 auto 20px;
  }

  .recommend-spot .how-to-access-area .how-to-access {
    margin: 0 auto 16px;
  }
}

/* ------------------------------
おすすめコース　個別ページ
------------------------------ */
.recommend-course .recommend-content-hero .time-required p::before {
  background: url(../images/icon-time.svg) no-repeat;
  background-size: contain;
}

.recommend-page .recommend-course .course-area .section-ttl {
  letter-spacing: 0;
  margin: 0 auto 12px;
}

.recommend-page .recommend-course .course-area .sub-ttl {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 24px;
}

.course-area .course-wrapper {
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

/* --コース リスト-- */
.course-area .course-wrapper .course-menu {
  width: 100%;
  text-align: left;
  background: #fff;
}

.course-area .course-wrapper .course-menu ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #EEEEEE;
  box-sizing: border-box;
  position: relative;
}

.course-area .course-wrapper .course-menu ul li:first-child {
  border-top: 1px solid #EEEEEE;
}

.course-area .course-wrapper .course-menu ul li::after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background: 50% 50% / 16px 16px url(../images/icon-arrow-bottom_db.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 30%;
  right: 8px;
}

.course-area .course-wrapper .course-menu ul li a {
  display: block;
  padding: 8px;
  box-sizing: border-box;
}

.course-area .course-wrapper .course-menu .menu-child {
  width: calc(100% - 24px);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-area .course-wrapper .course-menu .menu-child .order {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #233B6C;
}

.course-area .course-wrapper .course-menu .ticket::after {
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url(../images/icon-ticket.svg)no-repeat;
  background-size: contain;
  content: "";
  margin: 0px 0px -3px 0;
  background-position: left center;
}



/* --コース スポットブロック-- */
.course-area .course-wrapper .course-content {
  padding: 0 0 15px 0;
}


.course-content .course-spot .course-spot-ttl {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  padding: 5px 16px;
  margin: 0 auto 12px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #233B6C;
  position: relative;
}

.course-content .course-spot .course-spot-ttl .order {
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  position: absolute;
  left: 16px;
}

.course-content .course-spot .course-spot-ttl .course-img-wrapper .cont-pict {
  width: 100%;
  max-width: 596px;
  max-height: 393px;
  object-fit: cover;
}

.course-content .course-spot .course-img-wrapper {
  position: relative;
}

.course-content .course-spot .course-img-wrapper .time-required {
  width: 100%;
  background: #fff;
  border-top: 1px solid #233B6C;
  border-bottom: 1px solid #233B6C;
  padding: 7px 0;
  position: absolute;
  bottom: -30px;
}

.course-content .course-spot .course-img-wrapper .time-required p {
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #233B6C;
  text-align: center;
  margin: 0 auto;
  padding-left: 22px;
  position: relative;
}

.course-content .course-spot .course-img-wrapper .time-required p::before {
  display: block;
  width: 16px;
  height: 16px;
  content: '';
  background: url(../images/icon-time.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.course-content .course-spot .course-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 46px auto 0;
}

.course-content .course-spot .course-detail-wrapper .detail-btn {
  margin: 0 0 0 auto;
}

/* --コース 移動方法ブロック-- */
.course-content .how-to-move {
  margin: 8px auto;
  display: flex;
  align-items: center;
}

.course-content .how-to-move .dotted-arrow {
  width: calc(50% + 8px);
  height: 50px;
  background: url(../images/dotted-arrow.svg) no-repeat;
  background-size: contain;
  background-position: top 0 right 0;
}

.course-content .how-to-move p {
  width: calc(50% - 8px);
  height: 50px;
  font-size: 1.2rem;
  line-height: 1;
  color: #233B6C;
  text-align: left;
  font-weight: 700;
  margin: 0 0 0 8px;
  display: flex;
  align-items: center;
}

.course-content .how-to-move p span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px 0 0;
}

.course-content .how-to-move p span.walk {
  background: url(../images/icon-walking.svg) no-repeat;
  background-size: contain;
}

/* --コース 交通機関乗車ブロック-- */

.course-content .take-transportation {
  margin: 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E9F6FF;
  border-radius: 50px;
}

.course-content .take-transportation p {
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #233B6C;
  font-weight: 700;
  text-align: center;
  margin: 8px 16px;
  padding-left: 18px;
  position: relative;
  box-sizing: border-box;
}

.course-content .take-transportation span {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.course-content .take-transportation span.train {
  background: url(../images/icon-train.svg) no-repeat;
  background-size: contain;
}

.course-content .take-transportation span.bus {
  background: url(../images/icon-public-transport.svg) no-repeat;
  background-size: contain;
}

/* --コース 関連チケットブロック-- */

.course-content .related-ticket {
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 24px 16px;
  box-sizing: border-box;
  display: grid;
}

.course-content .related-ticket .ticket-ttl {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 16px auto;
}

.course-content .related-ticket .sales-btn {
  width: 100%;
  box-shadow: none;
  padding: 16px 0;
}

.course-content .related-ticket .sales-btn::after {
  width: 20px;
  height: 20px;
  padding: 8px;
  background: #fff url(../images/icon-cart.svg) no-repeat left 7px center;
  top: 6px;
  right: 6px;
}

.course-content .related-ticket .sales-btn p {
  font-size: 1.6rem;
}

@media screen and (min-width:768px) {
  .course-content .related-ticket {
    grid-template-columns: 250px auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "ticket-img ticket-detail"
      "sales-btn  sales-btn";
    gap: 32px 16px;
  }

  .course-content .related-ticket .ticket-img {
    grid-area: ticket-img;
  }

  .course-content .related-ticket .ticket-detail-wrapper {
    grid-area: ticket-detail;
  }

  .course-content .related-ticket .sales-btn {
    grid-area: sales-btn;
  }

  .course-content .related-ticket .ticket-ttl {
    text-align: left;
    margin: 0 0 16px 0;
  }

  .course-content .related-ticket .detail-btn {
    margin: 12px 0 0 0;
  }
}

@media screen and (min-width:1025px) {

  .recommend-page .recommend-course .course-area .section-ttl {
    margin: 0 auto 8px;
  }

  .recommend-page .recommend-course .course-area .sub-ttl {
    text-align: left;
    margin: 0 0 40px 0;
  }

  .course-area .course-wrapper {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  /* --コース リスト-- */
  .course-area .course-wrapper .course-menu {
    box-shadow: 0px 3px 8px rgb(0 0 0 / 10%);
    border-radius: 8px;
    overflow: hidden
  }

  .course-area .course-wrapper .course-menu ul li:first-child {
    border-top: none;
  }

  /* --コース スポットブロック-- */
  .course-area .course-wrapper .course-content {
    padding: 0;
  }

  .course-content .course-spot .course-spot-ttl {
    padding: 6px 16px;
    margin: 0 auto 16px;
  }

  .course-content .course-spot .course-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }

  .course-content .course-spot .course-img-wrapper .time-required {
    width: fit-content;
    border: 1px solid #233B6C;
    padding: 4px 12px;
    border-radius: 50px;
    bottom: 16px;
    left: 16px;
  }

  .course-content .course-spot .course-img-wrapper .time-required p {
    font-size: 1.4rem;
  }

  .course-content .course-spot .course-img-wrapper .time-required p::before {
    top: 1px;
  }

  .course-content .course-spot .course-detail-wrapper {
    flex-direction: row;
    align-items: flex-start;
    margin: 16px auto 0;
  }

  .course-content .course-spot .course-detail-wrapper .course-txt {
    flex: 1;
  }

  .course-content .course-spot .course-detail-wrapper .detail-btn {
    margin: 0;
    width: 30px;
  }

  /* --コース 移動方法ブロック-- */

  .course-content .how-to-move p {
    font-size: 1.4rem;
  }

  /* --コース 交通機関乗車ブロック-- */
  .course-content .take-transportation p {
    font-size: 1.4rem;
    padding-left: 24px;
  }

  .course-content .take-transportation span {
    width: 20px;
    height: 20px;
  }
}

/** ページ共通 翻訳制御箇所 */
.item-name-ja, .item-name-en {
  display: none;
}