/*
 * コーディングルール
 * ================
 * 1. 命名規則
 *    - BEMを採用
 *      - Block: 独立したコンポーネント（例：header, footer, tour-card）
 *      - Element: Blockの一部（例：header__logo, tour-card__image）
 *      - Modifier: BlockやElementのバリエーション（例：ranking__badge--gold）
 *    - クラス名は全て小文字、ハイフンとアンダースコアで区切る
 * 
 * 2. プロパティの記述順序
 *    1) display, position, box-model関連
 *       - display, position, top, right, bottom, left
 *       - float, clear
 *       - width, height
 *       - margin, padding
 *       - border, border-radius
 *    2) 背景関連
 *       - background
 *    3) テキスト関連
 *       - color
 *       - font-family, font-size, font-weight
 *       - line-height, letter-spacing
 *       - text-align, text-decoration
 *    4) その他
 *       - transform
 *       - transition
 *       - z-index
 *       - opacity
 * 
 * 3. メディアクエリ
 *    - ブレイクポイント
 *      - PC: 769px以上
 *      - SP: 768px以下
 *    - モバイルファーストで記述
 * 
 * 4. 変数定義
 *    - カラー
 *      --color-primary: #044B98;    // プライマリカラー（青）
 *      --color-secondary: #C62728;  // セカンダリカラー（赤）
 *      --color-text: #333333;       // 本文テキスト
 *      --color-gray: #757575;       // グレーテキスト
 * 
 *    - フォント
 *      --font-primary: 'Noto Sans JP', sans-serif;  // 日本語フォント
 *      --font-english: 'Sen', sans-serif;           // 英数字フォント
 *      --font-price: 'Inter', sans-serif;           // 価格表示用フォント
 */

 :root {
  /* プライマリカラー */
  --color-primary-10: #F5FAFF;
  --color-primary-15: #E5EDF5;
  --color-primary-20: #C3DAF3;
  --color-primary-30: #9FC3EA;
  --color-primary-40: #5287C1;
  --color-primary-80: #2B69AC;
  --color-primary-100: #044B98;

  /* アクセントカラー */
  --color-accent-30: #EEBEBE;
  --color-accent-50: #DD7D7E;
  --color-accent-80: #D15253;
  --color-accent-100: #C62728;

  /* グレースケール */
  --color-white: #FFFFFF;
  --color-gray-5: #FAFAFA;
  --color-gray-20: #EEEEEE;
  --color-gray-40: #BDBDBD;
  --color-gray-60: #757575;
  --color-gray-90: #333333;

  /* 機能色 */
  --color-background: #F6F8FC;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-shadow: rgba(0, 0, 0, 0.25);

  /* スペーシング */
  --space-2xs: 4px;   /* 極小余白 */
  --space-xs: 8px;    /* 小余白 */
  --space-sm: 12px;   /* やや小余白 */
  --space-md: 16px;   /* 中余白 */
  --space-lg: 24px;   /* やや大余白 */
  --space-xl: 32px;   /* 大余白 */
  --space-2xl: 40px;  /* より大きい余白 */
  --space-3xl: 48px;  /* 特大余白 */
  --space-4xl: 64px;  /* 最大余白 */

  /* フォントサイズ */
  --font-size-2xs: 10px;  /* 極小テキスト */
  --font-size-xs: 12px;   /* 小テキスト */
  --font-size-sm: 14px;   /* やや小テキスト */
  --font-size-md: 16px;   /* 標準テキスト */
  --font-size-lg: 18px;   /* やや大テキスト */
  --font-size-xl: 20px;   /* 大テキスト */
  --font-size-2xl: 24px;  /* より大きいテキスト */
  --font-size-3xl: 32px;  /* 特大テキスト */
  --font-size-4xl: 40px;  /* 見出し用 */
  --font-size-5xl: 48px;  /* 大見出し用 */

  /* フォントウェイト */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* 行の高さ */
  --line-height-tight: 1.2;    /* 詰まった行間 */
  --line-height-normal: 1.45;  /* 標準行間 */
  --line-height-relaxed: 1.75; /* 広めの行間 */

  /* ブレイクポイント */
  --breakpoint: 768px;

  /* レイアウト */
  --container-max-width: 1440px;
  --container-padding-pc: 180px;
  --container-padding-sp: 20px;

  /* アニメーション */
  --transition-default: 0.3s ease;

  /* 影 */
  --shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0px 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0px 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0px 4px 20px rgba(0, 0, 0, 0.2);

  /* 角丸 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 100px;

  /* フォント */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-english: 'Sen', sans-serif;
  --font-price: 'Inter', sans-serif;
}

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.45;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

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

/* リストのリセット */
ul, ol {
  list-style: none;
}

dl,dd{
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

h1,h2,h3,h4,h5,h6{
  margin-bottom: 0;
}

p{
  margin-bottom: 0;
}
.btn, button, input[type=button], input[type=submit]{
  padding: 0;
  width: auto;
  border: none;
}

/* ベース */
html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
  scroll-padding-top: 96px; /* ヘッダーの高さ */
}
body.active{
  overflow: hidden;
}

/* 旅ともCSS */

/* SP・PC表示/非表示 */
.sp_hidden {
  @media (max-width: 768px) {
    display: none !important;
  }
}
.sp_visible {
  display: none !important;

  @media (max-width: 768px) {
    display: block !important;
  }
}
.pc_hidden {
  @media (min-width: 990px) {
    display: none !important;
  }
}
/* レイアウト */
.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 6%;

  @media (max-width: 990px) {
    padding: 0 3%;
  }

  @media (max-width: 768px) {
    padding: 0 5.33%;
  }
}
.l-section {
  padding-block: 80px;

  &.--low {
    padding-block: 50px;
  }

  &.--faq {
    display: flex;
    flex-direction: column;
    gap: 100px;

    @media (max-width: 768px) {
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    padding-block: 40px;

    &.--low {
      padding-block: 40px;
    }

    &.--icon {
      padding-block: 90px 40px;
    }
  }
}
.l-faq-section{
  padding-block: 50px;

  @media (max-width: 768px) {
    padding-block: 30px;
  }
}
.l-faq-contents{
  display: flex;
  flex-direction: column;
  gap: 60px;

  @media (max-width: 768px) {
    gap: 30px;
  }
}
.l-contents{
  display: flex;
  flex-direction: column;
  gap:50px;

  @media (max-width: 768px) {
    gap: 30px;
  }

  &.--staff{
    gap: 80px;
    @media (max-width: 768px) {
      gap: 30px;
    }
  }
}
.l-tour {

}
/* 共通パーツ */
.c-title{
  color: var(--color-gray-90);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;

  &.--left {
    margin-inline:0 auto;
  }

  @media (max-width: 768px) {
    font-size: var(--font-size-2xl);

    &.--left {
     margin-inline:auto;
    }
  }
}
.c-title.--sub{
  color: #000;
text-align: center;
font-size: 24px;
font-weight: 700;


@media (max-width: 768px) {
  font-size: 20px;
  padding-left: 34px;
}
}
.c-title.--small{
  font-size: 24px;
  font-weight: 700;
  color: #044B98;
  padding-block: 12px;
}
.c-title.--icon{
  padding-left: 43px;
  position: relative;
}
.c-title.--icon02{
  padding-left: 50px;
}
.c-title.--icon::before,.c-title.--icon02::before,.c-title.--icon03::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}
.c-title.--icon03{
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 34px;
  }
}
.c-title.--icon03::before{

  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
  }
}
.c-title.--tour-schedule::before{
  background-image: url(../images/front/icon-time.svg);
}
.c-title.--tour-accommodation::before{
  background-image: url(../images/front/icon-ger.svg);
}
.c-title.--tour-voice::before{
  background-image: url(../images/front/voice-title.png);
}
.c-title.--tour-travel-note{
  position: absolute;
  top: 5%;
  left: 0;

  @media (max-width: 768px) {
    position: relative;
  }
}
.c-title.--tour-travel-note::before{
  background-image: url(../images/front/icon-book.svg);
}
.c-title.--tour-experience::before{
  background-image: url(../images/front/icon-star.svg);
}
.c-title.--tour-tabitomo span{
  color: #C62728;
}
.c-title.--tour-tabitomo::before{
  background-image: url(../images/front/icon-tabitomo.png);
}
.c-title.--faq::before{
  background-image: url(../images/front/icon-faq.svg);
}
.c-title.--faq01::before{
  background-image: url(../images/faq/faq-look.png);
}
.c-title.--faq02::before{
  background-image: url(../images/faq/faq-calendar.png);
}
.c-title.--faq03::before{
  background-image: url(../images/faq/faq-flag.png);
}
.c-title.--faq04::before{
  background-image: url(../images/faq/faq-pass.png);
}
.c-title.--faq05::before{
  background-image: url(../images/faq/faq-car.png);
}
.c-title.--faq06::before{
  background-image: url(../images/faq/faq-money.png);
}
.c-title.--faq07::before{
  background-image: url(../images/faq/faq-bed.png);
}
.c-title.--faq08::before{
  background-image: url(../images/faq/faq-gel.png);
}
.c-title.--faq09::before{
  background-image: url(../images/faq/faq-gel.png);
}
.c-title.--faq10::before{
  background-image: url(../images/faq/faq-tent.png);
}
.c-title.--faq11::before{
  background-image: url(../images/faq/faq-horse.png);
}
.c-title.--faq12::before{
  background-image: url(../images/faq/faq-clothes.png);
}
.c-title.--tour-ranking::before{
  background-image: url(../images/front/ranking-title.png);
}
.c-title.--contact::before{
  background-image: url(../images/contact/icon-mail.png);
}
.c-title.--tag-search{
  padding-inline: 66px;
  position: relative;
  margin-bottom: 24px;

  @media (max-width: 768px) {
    font-size: 14px;
    padding-inline: 34px;
  }
}
.c-title.--tag-search::before{
  background-image: url(../images/front/tag-title.png);
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 56px;
height: 59px;

  @media (max-width: 768px) {
    width: 28px;
    height: 29px;
  }
}
.c-title.--tag-search::after{
  background-image: url(../images/front/tag-title.png);
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 56px;
height: 59px;

@media (max-width: 768px) {
  width: 28px;
  height: 29px;
}
}
.c-title.--youtube{
  @media (max-width: 768px) {
    padding-left: 0;
  }
}
.c-title.--youtube::before{
  background-image: url(../images/front/youtube-title.png);
  width: 40px;
  height: 40px;

  @media (max-width: 768px) {
  top: -50px;
  left: 50%;
  transform: translate(-50%, 0);
  }
}
.c-btn {
  border-radius: 100px;
  border: 2px solid var(--color-primary-100);
  background: #fff;
  display: flex;
  width: 335px;
  padding-block: 16px;
  padding-inline: 36px 44px;
  justify-content: center;
  align-items: center;
  color: var(--color-primary-100);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;

  @media (max-width: 768px) {
    display: flex;
    width: 234px;
    height: 56px;
    padding-inline: 8px 36px;
    font-size: 14px;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 30px;
  height: 30px;
  background-image: url(../images/front/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
    right: 12px;
  }
}
.c-btn.center {
  margin-inline: auto;
}
.c-btn.line{
background-color: #06C755;
border-color: #06C755;
color: #fff;
padding-inline: 66px 44px;
}
.c-btn.line::after{
  content: "";
position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/icon-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn.line::before{
  background-image: url(../images/front/line-arrow.svg);
}
.c-btn.--tel{
  @media (max-width: 768px) {
    color: #C62728;
    font-family: Inter;
    font-size: clamp(1.25rem, -0.932rem + 10.91vw, 1.625rem);
    font-weight: 900;
    letter-spacing: 1.82px;
    line-height: 0.9;
    padding-inline: 70px 22px;
    border-color: #C62728;
  }
}
.c-btn.--tel::before{
  @media (max-width: 768px) {
    display: none;
  }
}
.c-btn.--tel::after{
  @media (max-width: 768px) {
    content: "";
    position: absolute;
      width: 38px;
      height: 38px;
    background-image: url(../images/front/icon-tel_sp.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      left: 22px;
      top: 50%;
      transform: translateY(-50%);
  }
}
.c-btn.--reservation{
  border-color: #C62728;
  background-color: #C62728;
  color: #fff;
  width: 328px;

  @media (max-width: 768px) {
    padding-inline: 24px 44px;
  }
}
.c-btn.--reservation::before{
  background-image: url(../images/front/arrow-red.svg);
  width: 30px;
  height: 30px;
}
.c-btn.--tabitomo{
  padding-inline: 14px 44px;
  width: 328px;

  @media (max-width: 768px) {
    padding-inline: 14px 44px;
  }
}
.c-btn.--tabitomo::before{
  width: 30px;
  height: 30px;
}
.c-btn.--footer_btn{
  @media (max-width: 768px) {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
  }
}
.c-btn.--faq{
  flex-wrap: wrap;
  /* width: 234px; */
  width: calc(33% - 14px);
  padding-inline: 11px 44px;


  @media (max-width: 768px) {
    width: calc(50% - 8px);
    padding-inline: 12px 46px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
.c-btn.--faq.--sub{
  flex: 1;
  max-width: 254px;

  @media (max-width: 768px) {
    width: 155px;
  }
}
.c-btn.--faq::before{
  width: 30px;
  height: 30px;
  background-image: url(../images/faq/dawn-arrow.svg);
}
.c-tel{
  color: #333;
font-family: Inter;
font-size: 32px;
font-weight: 900;
line-height: 1;
letter-spacing: 1.28px;
display: flex;
flex-direction: column;
padding-left: 50px;
position: relative;
}
.c-tel::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/front/icon-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
}
.c-tel span{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.c-tel .ja{
  font-size: 14px;
  font-family: "Noto Sans JP";
}
.c-tour__tag{
  display: inline-flex;
  padding-inline: 20px 10px;
  padding-block: 4px;
  /* padding: 4px 10px; */
  align-items: center;
  border-radius: 100px;
border: 1px solid var(--color-primary-100);
background: #FFF;
color: var(--color-primary-100);
text-align: center;
font-size: 12px;
font-weight: 500;
line-height:1; /* 12px */
position: relative;

  @media (any-hover: hover) {
    &:hover {
      background-color: var(--color-primary-100);
      color: #fff;
    }
  }
  @media (max-width: 768px) {
    font-size: 10px;
    padding-inline: 18px 10px;
  }

  &.--header{
    @media (max-width: 768px) {
      font-size: 12px;
      border: none;
      background-color: transparent;
    }
  }

}
.c-tour__tag.no-link{
  pointer-events: none;
}
.c-tour__tag::before{
  content: "＃";
  position: absolute;
  display: inline-block;
  font-size: 12px;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);

  @media (max-width: 768px) {
    font-size: 10px;
  }
}
.c-tour__date{
  color: #5287C1;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.u-title-wrap{
  padding-block: 50px;

  @media (max-width: 768px) {
    padding-block: 30px;
  }
}
/* ぱんくず */
.breadcrumb {
  position: sticky;
  top: 96px;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: translate 0.5s ease;
  padding: 11px 0;

  @media (max-width: 990px) {
    top: 70px;
  }
}

.breadcrumb-title {
  @media (max-width: 768px) {
    display: inline-block;
    width: 180px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.breadcrumb ul {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
}

.container-fluid {
  max-width: 1200px;
}

.breadcrumb.js-slide-up {
  translate: 0 -270%;
}

.breadcrumb ul li {
  font-size: 14px;
}
/*MV*/
.l-main{
background-color: #fff;
}
.l-main.--faq{
  margin-top: 60px;

  @media (max-width: 768px) {
    margin-top: 50px;
  }
}
.l-main.--page{
 margin-top: 96px;

 @media (max-width: 768px) {
  margin-top: 73px;
 }
}
.l-main.--home{
  margin-top: 64px;

  @media (max-width: 990px) {
    margin-top: 34px;
  }

  @media (max-width: 768px) {
    margin-top: 24px;
  }
}
.p-mv{
position: relative;
height: 800px;

@media (max-width: 768px) {
  height: 727px;
}
}
.p-mv .cover_video{
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.p-mv__contents{
  position: absolute;
  top: 176px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1080px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;

  @media (max-width: 768px) {
    top: 210px;
    gap: 36px;
  }
}
.p-mv__title{
  color: #FFF;
  text-shadow: 0px 0px 15px rgba(4, 75, 152, 0.60);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 15px;

  @media (max-width: 768px) {
    font-size: 38px;
  }
}
.p-mv__title .small{
  font-size: 48px;

  @media (max-width: 768px) {
    font-size: 32px;
  }
}
.p-mv__title .sp_small{
  @media (max-width: 768px) {
    font-size: 32.951px;
  }
}
.p-mv__text{
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 15px rgba(4, 75, 152, 0.60);
  font-size: 24px;
  font-weight: 700;
  line-height: 2; /* 48px */

}
.p-mv__news{
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 100px;
  background: #FFF;
  padding-inline: 36px;
  padding-block: 16px;
  max-width: 704px;

  @media (max-width: 768px) {
    padding-inline: 24px;
    padding-block: 8px;
    gap: 16px;
    width: 90%;
    max-width: 335px;
  }
}
.p-mv__point{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  @media (max-width: 768px) {
    gap: 8px;
  }
}
.p-mv__point-item{
  border-radius: 100px;
  background-color: rgba(4, 75, 152, 0.30);
 border: 1px solid #FFF;
  backdrop-filter: blur(15px);
  width: 140px;
height: 140px;
flex-shrink: 0;
position: relative;
line-height: normal;

@media (max-width: 768px) {
  width: 100px;
  height: 100px;
}
}
.p-mv__point-item::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 123px;
  background-image: url(../images/front/mv-point.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    width: 30px;
    height: 87px;
  }
}
.p-mv__point-text{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
text-align: center;
font-weight: 700;

&.--number1{
font-size: 15px;
margin-top: 7px;

  @media (max-width: 768px) {
    font-size: 10px;
    margin-top: 5px;
  }
}
&.--number2{
  font-size: 15px;

  @media (max-width: 768px) {
    font-size: 10px;
  }
}
&.--number3{
  font-size: 17px;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

}
.p-mv__point-text.--number1 .number{
  font-family: Inter;
  font-size: 33px;
  letter-spacing: -0.671px;
  display: block;

  @media (max-width: 768px) {
    font-size: 24px;
    letter-spacing: -0.479px;
  }
}
.p-mv__point-text.--number1 .number .comma{
  font-size: 26px;
  letter-spacing: -2.683px;
  display: inline;

  @media (max-width: 768px) {
    font-size: 17px;
    letter-spacing: -1.916px;
  }
}
.p-mv__point-text.--number1 .number .zero{
  letter-spacing: 0;
  
 }
.p-mv__point-text.--number1 .number .ja{
  font-family: "Noto Sans JP";
  font-size: 22px;
  display: inline;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}
.p-mv__point-text.--number1 .bottom{
font-size: 10px;
font-weight: 700;
line-height: 10.677px; /* 106.773% */
text-align: right;
margin-inline: 15px;
display: block;

  @media (max-width: 768px) {
    font-size: 7px;
    line-height: 1.08952; /* 108.952% */
  }
}
.p-mv__point-text.--number2 .ja-narrow01{
  letter-spacing: -1.164px;

  @media (max-width: 768px) {
    letter-spacing: -0.931px;
  }
}
.p-mv__point-text.--number2 .ja-narrow02{
  letter-spacing: -0.668px;
  
  @media (max-width: 768px) {
    font-size: 10px;
    letter-spacing: -0.831px;
  }
}
.p-mv__point-text.--number2 .number{
  font-family: Inter;
  font-size: 22px;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}
.p-mv__point-text.--number2 .number.wide{
  letter-spacing: 1.164px;

  @media (max-width: 768px) {
    letter-spacing: 0.831px;
  }
}
.p-mv__point-text.--number2 .bottom{
  display: block;
  font-size: 25px;
  margin-top: -7px;

  @media (max-width: 768px) {
    font-size: 18px;
  }
}
.p-mv__point-text.--number2 .bottom span{
  font-size: 19px;

  @media (max-width: 768px) {
    font-size: 13px;
  }
}
.p-mv__point-text.--number3 .number{
  font-family: Inter;
  font-size: 42px;
  letter-spacing: -0.833px;
  display: block;
  margin-top: -5px;

  @media (max-width: 768px) {
    font-size: 30px;
    letter-spacing: -0.595px;
    margin-top: -3px;
  }
}
.p-mv__point-text.--number3 .small{
  font-size: 21px;
  letter-spacing: -0.414px;
  font-weight: 500;
  padding-left: 8px;
  position: relative;

  @media (max-width: 768px) {
    font-size: 15px;
    letter-spacing: -0.296px;
  }
}
.p-mv__point-text.--number3 .small .ja{
  font-size: 17px;
  font-family: "Noto Sans JP";

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-mv__point-text.--number3 .small::before{
  content: "";
  position: absolute;
top: 3px;
  left: 0;
  transform: rotate(19deg);
  width: 1px;
  height: 20px;
  background-color: #fff;

  @media (max-width: 768px) {
    height: 15px;
  }
}
.p-mv__point-text.--number3 .small::after{
  content: "※";
  position: absolute;
  top: -17px;
  right: 0;
  font-size: 9px;
  line-height: 24px;
  font-family: "Noto Sans";
}
.p-mv__point-caption{
  text-align: right;
  color: #FFF;
font-family: "Noto Sans";
font-size: 9px;
font-weight: 500;
line-height: 2.666; /* 266.667% */
margin-top: 4px;
}
.p-mv__scroll{
  position: absolute;
  bottom: 90px;
  right: 84px;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;

  @media (max-width: 768px) {
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
}
.p-mv__scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
    z-index: 2;
}

@keyframes circlemove{
  0%{bottom:-18px;}
  100%{bottom:-90px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.p-mv__scroll:after{
  content: "";
  position: absolute;
  bottom: -90px;
 left:50%;
 transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: #fff;

  @media (max-width: 768px) {
    height: 40px;
    bottom: -40px;
  }
}

.p-mv_bar{
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: #044B98;
  z-index: 1;
}




/*ツアー*/
.p-tour{

  @media (max-width: 768px) {
   overflow: hidden;
  }
}
.p-tour__slide{
  visibility: visible !important;
}
.p-tour__slide .splide__track{
overflow: visible !important;

@media (max-width: 768px) {
  /* overflow: hidden !important; */
}
}
.p-tour__heading {
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 0;
  }
}

.p-tour__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/ranking-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-tour__img {
  width: 100%;
  aspect-ratio: 328 / 218;
  height: auto;
}
.p-tour__img.--level{
  aspect-ratio: 201 / 242;
  flex: 0 0 38.95%;

  @media screen and (max-width: 990px) {
    aspect-ratio: 335 / 218;
    flex: auto;
  }

}
.p-tour__label{
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 10px 0px 10px 0px;
 background: #E5EDF5;
 color: #044B98;
text-align: center;
font-size: 12px;
font-weight: 500;
  
}
.p-tour__img img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.p-tour__img.--level img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;

  @media (max-width: 990px) {
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.p-tour__list.splide__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 48px;

  @media (max-width: 990px) {
    gap: 24px;
  }

  @media (max-width: 768px) {
    display: flex !important;
    gap: 0;
  }
}
.p-tour__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 48px;

  @media (max-width: 768px) {
    /* display: flex;
    flex-direction: column;
    gap: 24px; */
  }
}
.p-tour__list.--home{

  @media (max-width: 768px) {
  display: flex;
  flex-direction: column;
  gap: 40px;
  }
  
}

.p-tour__item{
  /* display: flex;
  flex-direction: column; */
  align-items: flex-start;
  gap: 16px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;

  @media (max-width: 768px) {
  display: flex;
  flex-direction: column;
  }
}
.p-tour__item.--compare{
 position: relative;
}
.p-tour__compare-box{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 51px;
  background-color: #fff;
  border-radius: 100px;
border: 1px solid #044B98;
background: #FFFFD4;
z-index: 1;
cursor: pointer;
}
.p-tour__compare-box.selected{
  background-color: #C3DAF3;
}
.p-tour__compare-box span{
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color:  #044B98;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}
.p-tour__compare-box::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/front/compare-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-tour__compare-box.selected::before{
  background-image: url(../images/front/compare-check-b.svg);
}
.p-tour__compare-box.disabled{
  border: 1px solid #BDBDBD;
  background: #EEE;
}
.p-tour__compare-box.disabled::before{
  background-image: url(../images/front/compare-check-g.svg);
}
.p-tour__compare-box.disabled span{
  color: #BDBDBD;
}
.p-tour__item-inner{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  border-radius: 20px;
background:  #fff;
position: relative;
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
transition: all 0.3s ease;
gap: 0;

  @media (any-hover: hover) {
    &:hover {
     transform: translateY(-10px);
    }
  }

  @media (max-width: 768px) {
   display: block;
  }
}
.p-tour__text{
color: #757575;
font-size: 14px;
font-weight: 400;
line-height: 1.42;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow-y: clip;

@media (max-width: 768px) {
  -webkit-line-clamp: 3;
}

}
.p-ranking__badge{
  position: relative;
}
.p-ranking__badge::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 16px;
  width: 76px;
  height: 86px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-ranking__badge.--gold::before{
  background-image: url(../images/front/ranking_01.png);
}
.p-ranking__badge.--silver::before{
  background-image: url(../images/front/ranking_02.png);
}
.p-ranking__badge.--bronze::before{
  background-image: url(../images/front/ranking_03.png);
}
.p-tour__body{
  display: flex;
  padding-block:36px 12px;
  padding-inline: 12px;
flex-direction: column;
align-items: stretch;

gap: 16px;
position: relative;

@media (max-width: 768px) {
  padding-inline: 24px;
}
}
.p-tour__body.--level{
  padding-block: 12px;
}
.p-tour__discription{
  position: absolute;
  top: -7%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  /* margin-inline: 12px; */
  color: #fff;
  text-align: center;
  font-size:12px;
  font-weight: 500;
  border-radius: 100px;
background: var(--color-primary-100);
display: flex;
padding: 4px 16px;
justify-content: center;
align-items: center;
word-break: keep-all;

@media (max-width: 990px) {
  font-size: 10px;
  top: -4%;
}
}
.p-tour__discription::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -27%;
  background-image: url(../images/front/discription-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 12px;
}
.p-tour__title{
  color: var(--grayscale-gray90, #333);
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-y: clip;
}
.p-tour__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
}
.p-tour__info.--ranking{
  @media (max-width: 768px) {
    min-height: 94px;
  }
}
.p-tour__info.--flex{
  flex-direction: row;
  gap: 35px;

  @media (max-width: 768px) {
    gap: 8px 16px;
    flex-wrap: wrap;
  }
}
.p-tour__info-list {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.p-tour__info-title {

  border-radius: 4px;
  background: #E5EDF5;
  display: flex;
width: 80px;
padding-block: 4px;
/* padding: 4px 10px; */
justify-content: center;
align-items: center;
color: var(--color-primary-100);
font-size: 14px;
font-weight: 500;
line-height: 100%; /* 14px */

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tour__info-title.--detail {
  width: 100px;

  @media (max-width: 768px) {
    width: 90px;
  }
}
.p-tour__info-title.--day{
  font-size: 16px;
  width: 100px;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-tour__info-text {
  flex: 1 0 0;
font-size: 14px;
font-weight: 500;
line-height: 20px; /* 142.857% */

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tour__info-text.--day{
  font-size: 16px;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-tour__caption-wrap{
  margin-top: 8px;
  display: flex;
 
  flex-direction: column;
  gap: 8px;
}
.p-tour__caption{
  color: #757575;
font-size:  12px;
font-weight: 500;
line-height: 1.4;

  @media (max-width: 768px) {
    font-size: 10px;
  }
}
.p-tour__caption.--detail{
  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tour__price-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.p-tour__price-wrap.--compare{
  align-items: center; 
}
.p-tour__price-wrap.--detail{

  @media (max-width: 768px) {
   order: 3;
  }
}
.p-tour__price-wrap.--level{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-tour__price{
  display: flex;
  align-items: center;
  gap: 5px;
  color:  #C62728;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: Inter;
  flex-wrap: wrap;
  justify-content: flex-end;

  @media (max-width: 768px) {
    font-size: 20px;
  }
}
.p-tour__price.--detail{
  @media (max-width: 768px) {
    font-size: 24px;
  }
}
/* .p-tour__price.--people{ 
  color: #333;
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42; 
  position: relative;
} */
/* .p-tour__price.--people:nth-child(2n)::before{ 
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  border-left: 1px dashed #BDBDBD
} */
/* .p-tour__price.--people .member{
  color: #757575;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  border-radius: 1px;
background: #EEE;
padding-block: 2px;
flex: 0 0 44px;
text-align: center;
} */
/* .p-tour__price.--people .member span{
  font-size: 12px;
  color: #757575;
} */
.p-tour__price span{
  color: #333;
  font-family: "Noto Sans JP";
  text-align: right;
  font-size: 16px;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
/* .p-tour__price.--people span{
font-size: 10px;
} */
.p-tour__btn {
  position: absolute;
  color:  var(--color-primary-100);
text-align: center;
font-size:14px;
font-weight: 700;
padding-right: 30px;
bottom: 12px;
right: 12px;

@media (max-width: 990px) {
  position: relative;
  width: fit-content;
  right: initial;
  bottom: inherit;
}

  @media (max-width: 768px) {
    position: absolute;
    font-size: 12px;
    bottom: 12px;
    right: 24px;
  }
}
.p-tour__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/front/tour-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-tour__tag__list{
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  align-self: stretch;
  flex-wrap: wrap;
}
/* 矢印のクリック範囲など */
.p-tour__slide .splide__arrows{
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-tour__slide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  height: 48px;
  transition: .2s;
  width: 48px;
  min-width: 48px;
  box-shadow: none;
  opacity: 1;
}
.p-tour__slide .splide__arrow--next{
  right: 0;
}
.p-tour__slide .splide__arrow--prev{
  left: 0;
}
/* 矢印共通のスタイル */
.p-tour__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 48px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 48px;
}
/* 前の矢印 */
.p-tour__slide .prev::before {
  background-image: url(../images/front/slide-arrow_left.svg);
}
/* 次の矢印 */
.p-tour__slide .next::before {
  background-image: url(../images/front/slide-arrow_right.svg);
}
/* スライドのサイズ調整 */
.p-tour__slide .splide__slide img {
  height: auto;
  width: 100%;
}
/* レベル別おすすめ乗馬ツアー */
.p-level__heading{
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 0;
  }
}
.p-level__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/level-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-level__list{
  display: flex;
  align-items: flex-start;
  gap: 48px;

  @media (max-width: 768px) {
   display: block;
  }
}
.p-level__item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;

  @media (max-width: 768px) {
    opacity: 0;
    visibility: hidden;
    height: 0;
    translate: 0 20px;
    transition: opacity 0.3s ease, translate 0.3s ease;

    &.js-show {
      opacity: 1;
      visibility: visible;
      height: fit-content;
      translate: 0;
    }
  }
}
.p-level__link{
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  position: relative;

/* Drop Shadow */
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);

  @media (max-width: 990px) {
    flex-direction: column;
  }
}
.p-level__title-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 24px;

  @media (max-width: 768px) {
    gap: 8px;
    margin-bottom: 20px;
  }
}

.p-level__title{
  border-radius: 10px;
  width: 100%;
  text-align: center;
  padding-block: 13px;
  pointer-events: none;

  @media (max-width: 768px) {
    border-radius: 100px;
    pointer-events: auto;
    padding-block: 16px;
    width: calc(50% - 4px);
    min-width: auto;
  }

}
.p-level__title span{
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding-left: 45px;

  @media (max-width: 768px) {
    color: #757575;
    font-size: 14px;
    padding-left: 33px;
  }
}
.p-level__title span::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-level__title.--beginner{
  background:  #5287C1;

  @media (max-width: 768px) {

    &[aria-selected="true"] {
      border: 1px solid #044b98;
      background: #044b98;
      pointer-events: none;
    }
    &[aria-selected="false"] {
      transition: opacity 0.3s ease;
      border: 2px solid  #EEE;
      background:  #EEE;
      @media (any-hover: hover) {
        &:hover {
          cursor: pointer;
          opacity: 0.7;
        }
      }
    }
  }
}
.p-level__title.--experience{
  background:  #044B98;

  @media (max-width: 768px) {
    border-radius: 100px;
    &[aria-selected="true"] {
      border: 1px solid #044b98;
      background: #044b98;
      pointer-events: none;
      color: #fff;
    }
    &[aria-selected="false"] {
      transition: opacity 0.3s ease;
      border: 2px solid  #EEE;
      background:  #EEE;
      @media (any-hover: hover) {
        &:hover {
          cursor: pointer;
          opacity: 0.7;
        }
      }
    }
  }
}
.p-level__title.--beginner[aria-selected="true"] span,
.p-level__title.--experience[aria-selected="true"] span {
  @media (max-width: 768px) {
  color: #fff;
}
}
.p-level__title.--beginner[aria-selected="false"] span::before,
.p-level__title.--experience[aria-selected="false"] span::before {
  @media (max-width: 768px) {
    filter: invert(46%) sepia(0%) saturate(0%) hue-rotate(147deg) brightness(95%) contrast(92%);
}
}
.p-level__title.--beginner span::before{
  background-image: url(../images/front/icon-beginner.png);
}
.p-level__title.--experience span::before{
  background-image: url(../images/front/icon-experience.png);
}
/* 比較表からツアーを選ぶ */
.p-compare__wrap{
  background-color:#FDFFC5;
  padding-block: 30px 46px;

  @media (max-width: 768px) {
    padding-block: 30px 38px;
  }
}
.p-compare__box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #fff;
padding: 24px 48px;
border-radius: 20px;
position: relative;
width: 700px;
margin-inline: auto;

  @media (max-width: 768px) {
  gap: 8px;
padding-inline: 16px;
width: 100%;
  }
}
.p-compare__box::before{
  content: "";
  position: absolute;
bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 32px;
  height: 32px;
  background-image: url(../images/front/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
      width: 24px;
      height: 24px;
      bottom: -8px;
  }
}
.p-compare__img{
  position: absolute;
   bottom: 24px;

  @media (max-width: 768px) {
    bottom: -28px;
  }
}
.p-compare__img.--horse{
  left: 48px;

  @media (max-width: 768px) {
    width: 40px;
    height: 58px;
    left: 22px;
  }
}
.p-compare__img.--search{
  right: 48px;

  @media (max-width: 768px) {
    width: 56px;
    height: 58px;
    right: 22px;
  }
}
.p-compare__heading{
  font-size: 24px;
  color: #044B98;

  @media (max-width: 768px) {
    font-size: 20px;
  }
}
.p-compare__text{
  text-align: center;
font-size: 16px;
font-weight: 500;
line-height: 1.7; 

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
/*必読記事*/
.p-blog{
}
.p-blog__heading{
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 0;
  }
}
.p-blog__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/blog-title.png);
  background-size: contain;
  background-repeat: no-repeat;

  @media (max-width: 768px) {
    width: 32px;
    height: 32px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-blog__slide{
  @media (max-width: 768px) {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-left: 5.33%;
  }
}
.p-blog__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;

  @media (max-width: 768px) {
    display: flex !important;
    gap: 0;
  }
}
.p-blog__item{
  display: flex;
  flex-direction: column;
}
.p-blog__img img{
  aspect-ratio: 327/214;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.p-blog__body{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 24px;
}
.p-blog__title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-y: clip;
}
.p-blog__info{
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (max-width: 768px) {
   flex-wrap: wrap;
   gap: 8px;
  }
}

/* モンゴルの情報 */
.p-basic{
  background-color: #FAFAFA;
}
.p-basic__heading {
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 0;
}
}
.p-basic__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/info-title.png);
  background-size: contain;
  background-repeat: no-repeat;

  @media (max-width: 768px) {
    width: 32px;
    height: 32px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
} 
.p-basic__wrap{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.p-basic__slide{
}
.p-basic__item{
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.p-basic__link{
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.p-basic__img img{
  aspect-ratio: 240/158;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.p-basic__body{
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 13px;
}
.p-basic__title{
  font-size: 18px;
  font-weight: 700;
}
.p-basic__text{
  font-size: 14px;
  font-weight: 500;
}
/* 矢印のクリック範囲など */
.p-basic__slide .splide__arrows{
  max-width: 1080px;
  width: 100%;
  position: absolute;
  top: -25%;
  left: 36%;
  transform: translateX(-50%);
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;

  @media (max-width: 768px) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 112%;
    height: 48px;
  }
}
.p-basic__slide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  height: 30px;
  transition: .2s;
  width: 30px;
  min-width: 30px;
  box-shadow: none;
  opacity: 1;
  position: initial;
  transform: translateY(0);

  @media (max-width: 768px) {
    height: 48px;
    width: 48px;
  }
}
.p-basic__slide .splide__arrow--next{
  right: 0;
}
.p-basic__slide .splide__arrow--prev{
  left: 0;
}
/* 矢印共通のスタイル */
.p-basic__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 30px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 30px;

  @media (max-width: 768px) {
    height: 48px;
    width: 48px;
  }
}
/* 前の矢印 */
.p-basic__slide .prev::before {
  background-image: url(../images/front/slide-arrow_left.svg);
}
/* 次の矢印 */
.p-basic__slide .next::before {
  background-image: url(../images/front/slide-arrow_right.svg);
}
/* お客様の声 */
.p-voice{
}
.p-voice__slide .splide__list{
  padding-right: 46px !important;

  @media (max-width: 768px) {
    padding-right: 0 !important;
  }
}
/* 矢印のクリック範囲など */
.p-voice__slide .splide__arrows{
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-voice__slide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  height: 48px;
  transition: .2s;
  width: 48px;
  min-width: 48px;
  box-shadow: none;
  opacity: 1;
}
.p-voice__slide .splide__arrow--next{
  right: 0;
}
.p-voice__slide .splide__arrow--prev{
  left: 0;
}
/* 矢印共通のスタイル */
.p-voice__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 48px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 48px;
}
/* 前の矢印 */
.p-voice__slide .prev::before {
  background-image: url(../images/front/slide-arrow_left.svg);
}
/* 次の矢印 */
.p-voice__slide .next::before {
  background-image: url(../images/front/slide-arrow_right.svg);
}
.p-voice__heading{
  padding-left: 50px;

  @media (max-width: 768px) {
    padding-left: 0;
  }
}
.p-voice__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/voice-title.png);
  background-size: contain;
  background-repeat: no-repeat;

  @media (max-width: 768px) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-voice__wrap{
  max-height: 740px;
  overflow-y: scroll !important;

  @media (max-width: 768px) {
   overflow: hidden;
  }
}
.p-voice__list {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  padding-right: 46px !important;

  @media (max-width: 768px) {
    flex-direction: row;
    gap: 0;
  }
}
.p-voice__item{
  border-radius: 20px;
  border: 2px solid #BDBDBD;
  display: flex;
  overflow: hidden;
  
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}
.p-voice__body{
  padding: 24px 24px 8px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
  background-color: #fff;

  @media (max-width: 768px) {
    padding: 16px 16px 8px 16px;
    gap: 16px;
  }
}
.p-voice__img{
  width: 30%;
display: flex;
flex-direction: column;

  @media (max-width: 768px) {
    width: 100%;
    overflow-x: scroll;
    flex-flow: row;
  }
}
.p-voice__img img{
    aspect-ratio: 328 / 230;
    object-fit: cover;
    height: 25%;

    @media (max-width: 768px) {
      aspect-ratio: 335 / 235;
      width: 100%;
      height: 100%;
      flex-shrink: 0;
    }
}
.p-voice__wrap::-webkit-scrollbar {
  width: 16px;

  @media (max-width: 768px) {
    display: none;
  }
}
.p-voice__wrap::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 100px;

  @media (max-width: 768px) {
    display: none;
  }
}
.p-voice__wrap::-webkit-scrollbar-thumb {
  background: #044B98;
  border-radius: 100px;

  @media (max-width: 768px) {
    display: none;
  }
}
.p-voice__content{
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (max-width: 768px) {
    gap: 8px;
  }
}
.p-voice__meta{
  display: flex;
flex-direction: column;
align-items: flex-start;
  gap: 8px;
}
.p-voice__star {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;

  @media (max-width: 768px) {
    gap: 8px;
  }
}
.p-voice__star img{
@media (max-width: 768px) {
  width: 110px;
  height: 20px;
}
}
.p-voice__star span{
  color: #FFAE22;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-voice__title {
  overflow: hidden;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;

  @media (max-width: 768px) {
    font-size: 16px;
  } 
}
.p-voice__info{
 display: flex;
 align-items: flex-start;
gap: 16px;

@media (max-width: 768px) {
  align-items: flex-start;
  /* align-content: flex-start; */
  gap: 4px 16px;
  /* align-self: stretch; */
  flex-wrap: wrap;
}
}
.p-voice__info p{
  overflow: hidden;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
p.p-voice__tour{
  @media (max-width: 768px) {
font-size: 10px;
  }
}
p.p-voice__name{
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
p.p-voice__date{
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
.p-voice__content h4{
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-voice__content h4::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/front/voice-head.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-voice__text{
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-voice__staff{
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}
.p-voice__staff::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/front/voice-staff.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-voice__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #044B98;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.14286;
  cursor: pointer;

  @media (max-width: 768px) {
    font-size: 12px;
    pointer-events: none;
  }
}
/* お客様の声ページ */
.p-voice-img__slide{
  width: 30%;

  @media (max-width: 768px) {
    width: 100%;
    aspect-ratio: 335 / 235;
    height: auto;
    overflow-x: scroll;
  }
}
.p-voice-img__slide .splide__track{
height: 100%;
}
.p-voice-img__slide .splide__list{
  @media (max-width: 768px) {
    width: 100%;
    /* overflow-x: scroll; */
    flex-flow: row !important;
  }
}
.p-voice-img__slide img{
  width: 100%;
height: 100%;
  object-fit: cover;
}
.p-page-voice{
  display: flex;
  flex-direction: column;
  gap: 32px;

}
.p-youtube__slide .splide__slide{
  /* aspect-ratio: 560 / 315;
  overflow: hidden; */
  aspect-ratio: 704 / 394;
}

.p-youtube__slide .splide__slide iframe {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  /* width: 100% !important;
  height: 100% !important; */
}


/* .p-voice__img.collapsed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.p-voice__img.collapsed img {
  height: 100%;
}
.p-voice__img.collapsed img:nth-child(1) {
  grid-column: 1 / 2;
}
.p-voice__img.collapsed img:nth-child(2) {
  grid-column: 2 / 3;
}
.p-voice__img.collapsed img:nth-child(3) {
  grid-column: 1 / 3;
} */
/* .p-voice__img.collapsed img:nth-child(4) {
  grid-column: 2 / 3;
} */







/* ツォクトが選ばれる理由 */
.p-reason{
}
.p-reason__heading{
  padding-left: 50px;

  /* @media (max-width: 768px) {
    padding-left: 0;
  } */
}
.p-reason__heading::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/reason-title.png);
  background-size: contain;
  background-repeat: no-repeat;

  /* @media (max-width: 768px) {
    width: 32px;
    height: 32px;
    top: -50px;
    left: 50%;
  } */
}
.p-reason__wrap{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  position: relative;
}
.p-reason__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FDFFC5;
  border-radius: 20px;
}
.p-reason__body{
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  gap: 8px;
}
.p-reason__title{
font-size:  20px;
font-weight: 700;
line-height: 1.5; 
letter-spacing: -0.1em;
}
.p-reason__title span{
  font-size: 14px;
  font-weight: 500;
}
.p-reason__text{
font-style: normal;
font-weight: 500;
line-height: 1.5;
}
.p-reason__slide{
padding-bottom: 60px;
position: static !important;

@media (max-width: 768px) {
  padding-bottom: 40px;
}
}
.p-reason__slide .splide__track {
  position: static !important;
}
.p-reason__slide .splide__pagination {
  bottom: 0;
  width: 100%;
  justify-content: center;
  gap: 16px;
  display: flex;
  position: absolute;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
.p-reason__slide .splide__pagination__page{
width: 10px;
height: 10px;
min-width: auto;
margin: 0;
}
 .p-reason__slide .splide__pagination__page.is-active{
  background-color: #044B98;
  transform: scale(1);
}



/* 旅とも */
.p-tabitomo {
  overflow-x: clip;
}
.p-tabitomo.--tour-tabitomo{
background-color: #FFFFD4;
}
.p-tabitomo__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;

  @media (max-width: 768px) {
    gap: 30px;
  }
}
.p-tabitomo__img {
  text-align: center;
  margin-bottom: 16px;

  @media (max-width: 768px) {
    margin-bottom: 8px;
  }
}
.p-tabitomo__heading {
  margin-bottom: 24px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;

  span {
    color: #c62728;
  }

  @media (max-width: 768px) {
    margin-bottom: 6px;
    font-size: 24px;
  }
}
.p-tabitomo__text {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;

  @media (max-width: 768px) {
    font-size: 14px;
    text-align: left;
  }
}
.p-tabitomo__tabs {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-tabitomo__tabs-list {
  display: flex;
  column-gap: 16px;
  font-family: Inter;
  justify-content: flex-start;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 10px;
  box-sizing: content-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.p-tabitomo__tabs-item {
  min-width: auto;
  display: flex;
  width: 94px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #757575;
  color: #757575;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }

  @media (max-width: 768px) {
    width: 54px;
    height: 54px;
    font-size: 16px;
    aspect-ratio: 1/1;
  }

  &[aria-selected="true"] {
    border: 1px solid #044b98;
    background: #044b98;
    color: #fff;
    pointer-events: none;
  }
  &[aria-selected="false"] {
    transition: opacity 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        cursor: pointer;
        opacity: 0.7;
      }
    }
  }
}
.p-tabitomo__tabs-years {
  color: #044b98;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}
.p-tabitomo__tabs-contents {
  margin-top: 50px;
  padding-left: 46px;
  width: min(984px, 100%);
  margin-inline: auto;

  @media (max-width: 768px) {
    margin-top: 30px;
    padding-inline: 5%;
  }
}
.p-tabitomo__tabs-content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  transition: opacity 0.3s ease, translate 0.3s ease;
  max-height: 434px;
  overflow-y: auto;
  padding-right: 46px;

  @media (max-width: 768px) {
    padding-right: 16px;
    max-height: 466px;
  }

  &.js-show {
    opacity: 1;
    visibility: visible;
    height: fit-content;
    translate: 0;
  }
}
.p-tabitomo__tabs-content-wrap::-webkit-scrollbar {
  width: 8px;
}
.p-tabitomo__tabs-content-wrap::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 100px;
}
.p-tabitomo__tabs-content-wrap::-webkit-scrollbar-thumb {
  background: #757575;
  border-radius: 100px;
}
.p-tabitomo__tabs-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.p-tabitomo__item {
  border-radius: 10px;
  border: 1px solid #044b98;
  background: #e5edf5;
  display: flex;
  padding-block: 8px;
  padding-inline: 20px 50px;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background-image: url(../images/tabitomo/tabitomo-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;

    &::after {
      background-image: url(../images/tabitomo/tabitomo-arrow_sp.svg);
    }
  }
}
.p-tabitomo__item.--detail {
  padding-inline: 20px 50px;
  flex: 0 0 auto;
}
.p-tabitomo__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 2px;
    height: 100%;
    background-image: url(../images/tabitomo/tabitomo-line.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  @media (max-width: 768px) {
    &::before {
      background-image: url(../images/tabitomo/tabitomo-line_sp.svg);
      bottom: -8px;
      transform: translate(-50%, 0);
      right: initial;
      top: initial;
      left: 50%;
      width: 100%;
      height: 2px;
    }
  }
}
.p-tabitomo__info.--detail::before {
  display: none;
}
.p-tabitomo__date {
  color: #044b98;
  font-size: 16px;
  font-weight: 500;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-tabitomo__price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #c62728;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;

  @media (max-width: 768px) {
    font-size: 18px;
  }
}
.p-tabitomo__price p {
  margin-bottom: 0;
}
.p-tabitomo__price span {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #044b98;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  background-color: #fff;
  font-family: Noto Sans JP;
  border-radius: 4px;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tabitomo__title {
  margin-bottom: 0;
  color: #044b98;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-y: clip;

  @media (max-width: 768px) {
    min-height: 60px;
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}
/* バナー */
.p-banner__item {
  display: flex;
  gap: 16px;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
  }
}
/* お知らせ */
.p-news__heading {
 position: relative;
 padding-left: 50px;
}
.p-news__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/news-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-news__list {
  display: flex;
  flex-direction: column;
}
.p-news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  padding-inline: 24px 48px;
  border-bottom: 1px solid #9FC3EA;
  position: relative;

  @media (max-width: 768px) {
    padding-inline: 24px 24px;
  }
}
.p-news__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url(../images/front/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
   display: none;
  }
}
.c-news__date {
  color: #044B98;
  font-family: Inter;
  font-weight: 500;
text-align: center;
font-size: 14px;
font-weight: 500;
line-height: normal;

&.--black{
  color: #333;
}

@media (max-width: 768px) {
    font-size: 12px;
}
}
.c-news__title {
  font-size: 16px;
  font-weight: 700;
  overflow-y: clip;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;


  @media (max-width: 768px) {
    font-size: 14px;
    -webkit-line-clamp: 3;

      &.--mv{
        font-size: 12px;
        -webkit-line-clamp: 2;
  }
  }
}
/* 記事カテゴリー */
.p-category__list {
  display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 16px;

@media (max-width: 768px) {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  gap: 16px;
}
}
.p-category__heading {
padding-left: 50px;
position: relative;
}
.p-category__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/category-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-category__item {
  display: flex;
  align-items: center;
  text-align: center;
/* width: 349px; */
width: 258px;
height: 90px;
padding-block: 30px;
justify-content: center;
align-items: center;
border-radius: 20px;
background:  #FFFFD4;
font-size: 20px;
font-weight: 700;
/* Drop Shadow */
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);

@media (max-width: 768px) {
  width: 100%;
  padding-block:68px 16px;
  font-size: 14px;
  box-shadow: none;
}
}
.p-category__item > span {
 position: relative;
 padding-right: 47px;
 padding-left: 71px;

 @media (max-width: 768px) {
  padding-right: 24px;
  padding-left: 0;
 }
}
.p-category__item > span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    top: -52px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-category__item > span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 24px;
  height: 24px;
  background-image: url(../images/front/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 768px) {
    width: 20px;
    height: 20px;
    right: 0;
  }
}
.p-category__item:nth-of-type(1) span::before   {
    background-image: url(../images/front/icon-category01.png);
}
.p-category__item:nth-of-type(2) span::before   {
    background-image: url(../images/front/icon-category02.png);
}
.p-category__item:nth-of-type(3) span::before   {
    background-image: url(../images/front/icon-category03.png);
} 
.p-category__item:nth-of-type(4) span::before   {
    background-image: url(../images/front/icon-category04.png);
} 
.p-category__tag-list {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  gap:24px 32px;

  display: grid;
grid-template-columns: repeat(5,1fr);
grid-template-rows: auto;
  gap: 24px 32px;

  @media (max-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-category__tag-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* width: 160px; */
  position: relative;
  padding-block: 6px;

  @media (max-width: 768px) {
    width: fit-content;
    padding-block: 8px;
  }
}
.p-category__tag-item:not(.pc-no-before):not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  width: 2px;
  height: 100%;
  background-image: url(../images/front/line.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-category__tag-item span {
  font-size: 14px;
  font-weight: 700;
padding-left: 40px;
position: relative;
}
.p-category__tag-item span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-category__tag-item:nth-of-type(1) span::before {
  background-image: url(../images/front/icon-tag01.png);
}
.p-category__tag-item:nth-of-type(2) span::before {
  background-image: url(../images/front/icon-tag02.png);
}
.p-category__tag-item:nth-of-type(3) span::before {
  background-image: url(../images/front/icon-tag03.png);
}
.p-category__tag-item:nth-of-type(4) span::before {
  background-image: url(../images/front/icon-tag04.png);
}
.p-category__tag-item:nth-of-type(5) span::before {
  background-image: url(../images/front/icon-tag05.png);
}
.p-category__tag-item:nth-of-type(6) span::before {
  background-image: url(../images/front/icon-tag06.png);
}
.p-category__tag-item:nth-of-type(7) span::before {
  background-image: url(../images/front/icon-tag07.png);
}
.p-category__tag-item:nth-of-type(8) span::before {
  background-image: url(../images/front/icon-tag08.png);
}
.p-category__tag-item:nth-of-type(9) span::before {
  background-image: url(../images/front/icon-tag09.png);
}
.p-category__tag-item:nth-of-type(10) span::before {
  background-image: url(../images/front/icon-tag10.png);
}

/* ツアー比較表 */
.p-chart__heading {
  padding-left: 50px;
} 
.p-chart__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/front/chart-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}
.p-chart__table-wrap {
  overflow-x: auto;

  @media (max-width: 768px) {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 5.33% 0;
  }
}
.p-chart__table {
  width: 1080px;
  border-collapse: separate;
  border-spacing: 0 16px;
  border-radius: 10px;

  @media (max-width: 768px) {
    width: 1040px;
  }
}
.p-chart__thead tr {
  border-radius: 10px;
  background:  #E5EDF5;
}
.p-chart__thead th {
  color: #044B98;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-block: 8px;
  /* padding-inline: 24px;
  padding-block: 13px; */

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-chart__thead th:first-of-type {
  border-radius: 10px 0 0 10px;
  text-align: left;
}
.p-chart__thead th:last-of-type {
  border-radius: 0 10px 10px 0;
}
.p-chart__table th:nth-of-type(1) {
  width: 345px;
}

.p-chart__table th:nth-of-type(2) {
  width: 133px;
}

.p-chart__table th:nth-of-type(3) {
  width: 118px;
}

.p-chart__table th:nth-of-type(4) {
  width: 150px;
}

.p-chart__table th:nth-of-type(5) {
  width: 206px;
}

.p-chart__table th:nth-of-type(6) {
  width: 128px;
}
.p-chart__table th span{ 
padding-block: 5px;
padding-inline: 24px;
display: block;
word-break: keep-all;
}
.p-chart__table th:not(:first-of-type) span{
  border-left: 1px dashed #5287C1;
}
.p-chart__table td:first-of-type{ 
/* padding-right: 16px; */
}
.p-chart__table td:not(:first-of-type) {
  border-left: 1px dashed #5287C1;
  padding-inline:16px;
}
.p-chart__title  a{
  display: flex;
  align-items: center;
}
.p-chart__title p{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 16px;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-chart__title img {
  width: 70px;
  height: 70px;
}
.p-chart__date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-chart__price {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-chart__season {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 8px !important;
} 
.p-chart__place {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 8px !important;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-chart__place span {
  background-color: #EEE;
  color: #BDBDBD;
  display: flex;
  padding: 4px 10px 5px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.p-chart__place span.current {
  background-color: #044B98;
  color: #fff;
}
.p-chart__place-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.p-chart__level {
  padding: 8px 16px;
  text-align: center;
}
.p-chart__level p {
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

/* ツアー季節 */
.p-season-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-season {
  border-radius: 100px;
  background: #EEE;
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  color: #BDBDBD;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.c-season.--all {
  max-width: 114px;
  margin-inline: auto;
  margin-bottom: 8px;
}
.c-season.current.--all{
  background: #044B98;
  color: #fff;
}
.c-season.current.--spring{
  background: #FF7581;
  color: #fff;
}
.c-season.current.--summer{
  background: #FFF35C;
  color: #333;
}
.c-season.current.--autumn{
  background: #FFAC00;  
  color: #fff;
}
.c-season.current.--winter{
  background: #5287C1;
  color: #fff;
}



/* ヘッダー */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    padding: 0 clamp(0.625rem, -10.144rem + 16.83vw, 5rem);
    background-color: #fff;
    z-index: 10;
    transition: translate 0.5s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow-y: clip;

    &.js-slide-up {
      translate: 0 -50%;
    }

    @media (max-width: 990px) {
      height: 73px;
      overflow-y: visible;
    }
}

/* 固定ヘッダーが表示されたときのスタイル */
#js-header.is-show {
  top: 0; /* 隠していたヘッダーを表示 */
}


.p-header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;

    @media (max-width: 990px) {
    display: block;
    }
}

.p-header__logo {
  display: flex;
  align-items: center;
  height: inherit;
  transition: transform 0.5s ease;
  transform-origin: left center;

  &.js-slide-up {
    transform: translateY(20%) scale(0.6);

  }
}
.p-header__logo a{
display: block;
}
.p-header__logo  img{
  @media (max-width: 990px) {
    width: 175px;
    height: 60px;
  }
}
.p-header__nav {
    display: flex;
    align-items: center;
    height: inherit;
    transition: transform 0.5s ease;


    @media (max-width: 990px) {
      opacity: 0;
      visibility: hidden;
      flex-direction: column;
      width: 100vw;
      margin-inline: calc(50% - 50vw);
      height: calc(100svh - 73px);
      overflow-y: scroll;
      background-color: #fff;
    }

    @media screen and (min-width: 991px) {
      &.js-slide-up {
        transform: translateY(20%);
      }
    }
}

.p-header__nav.active {
  opacity: 1;
  visibility: visible;
}

.p-header__list {
    display: flex;
    align-items: center;
    height: inherit;
    margin-bottom: 0;

    @media (max-width: 990px) {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
      height: auto;
      padding-block: 24px;
      padding-inline: 24px;
      background-color: #FFFFD4;
    }
}

.p-header__item {
  height: inherit;
}
.p-header__item.--tabitomo{ 
  position: relative;
}
.p-header__item.--tabitomo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/tabitomo/tabitomo.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 86px;
  height: 39px;

  @media (max-width: 990px) {
    display: none;
  }
}
.p-header__item a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color:  #333;
font-family: "Noto Sans";
font-size:  clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
font-weight: 700;
line-height: 1.5; 
padding-inline: 16px;

  @media (max-width: 990px) {
    border-radius: 100px;
    border: 2px solid #044B9B;
    background: #FFF;
padding: 10px 16px;
gap: 2px;
color: #044B98;
text-align: center;
font-size: clamp(0.688rem, -0.813rem + 7.5vw, 0.875rem);
justify-content: flex-start;
  }
}
.p-header__item a span {
  flex: 1;

}
.p-header__item a .red {
  color: #C62728;
}
.p-header__tag {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
  padding-inline: 24px;
  background-color: #fff;
  padding-top: 32px;
}
.p-header__tag-list{
  margin-bottom: 0;
}
.p-header__tag-title {
  color: #333;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;

  @media screen {
    margin-bottom: 0;
  }
}
.p-header__btn {
  height: inherit;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 990px) {
   height: auto;
   padding-inline: 24px;
   justify-content: flex-start;
   width: 100%;
   background-color: #fff;
   padding-top: 32px;
  }
}
.p-header__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color:  #fff;
  font-family: "Noto Sans";
  font-size:  clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  background-color: #044B98;
  padding-inline: 16px;
  padding-block: 8px;
  border-radius: 100px;

  @media (max-width: 990px) {
    padding: 10px 16px;
    font-size: 14px;
    width: 154px;
  }
}


/* ドロワー */
.c-drawer-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 24px;
  height: 24px;
  padding: 5px 2px 6px 2px;
  transition: transform 0.5s ease;
  cursor: pointer;

  @media (min-width: 991px) {
    display: none;
  }

  &.js-slide-up {
    transform: translateY(20%);
  }
}
.c-drawer-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.c-drawer-icon span:nth-of-type(1) {
  top: 5px;
}
.c-drawer-icon span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
} 
.c-drawer-icon span:nth-of-type(3) {
  bottom: 5px;
}
.c-drawer-icon.active span:nth-of-type(1) {
  transform:translateX(-50%) rotate(45deg);
  top: 11px;
}
.c-drawer-icon.active span:nth-of-type(2) {
  opacity: 0;
}
.c-drawer-icon.active span:nth-of-type(3) {
  transform:translateX(-50%) rotate(-45deg);
  bottom: 11px;
}


/* フロー */
.p-flow{
  background: url(../images/home/bg-steps.png) 50% 50% / cover no-repeat;

  @media (max-width: 768px) {
    background: url(../images/front/bg-steps_sp.png) 50% 50% / cover no-repeat;
  }
}
.p-flow__heading{
  color: #fff;
}
.p-flow__wrap{
  @media (max-width: 768px) {
    overflow-x: scroll;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 5.33% 0;

    }
}
.p-flow__list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;

  @media (max-width: 768px) {
    width: 1080px;
    padding-right: 5.33%;
    box-sizing: content-box;
  }

}
.p-flow__item{
  background-color: #E5EDF5;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
padding: 16px 20px;
flex-direction: column;
align-items: center;
gap: 8px;
flex: 1;
position: relative;

@media (max-width: 768px) {
  width: 234px;
}
}
.p-flow__item:not(:first-of-type)::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
  left: -34px;
  background-image: url(../images/front/flow-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 30px;
}
.p-flow__item img{
margin-inline: auto;
}
.p-flow__item h3{
  color: #103A58;
  text-align: center;
  font-size: 24px;

  @media (max-width: 768px) {
    font-size: 20px;
  }
}
.p-flow__item p{
  color: #333;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-flow__item p span{
  color: #757575;
  font-size: 14px;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-flow__item:last-of-type{
background-color: #F4F98B;
}

/* フッター */
.p-footer{
  background-color: #fff;
  padding-block: 50px;
}
.l-footer__contents{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    @media (max-width: 990px) {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-template-rows: auto;
     gap: 30px;
    }

  }
  .p-footer__list {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;

    @media (max-width: 768px) {
      gap: 16px;
    }
  }
  .p-footer__list:nth-of-type(1){
    @media (max-width: 990px) {
      grid-column: 1 / 2;

      @media (max-width: 768px) {
        grid-column: 1 / 3;
      }
    }
  }
  .p-footer__list:nth-of-type(2){
    @media (max-width: 990px) {
      grid-column: 2 / 3;
    }

    @media (max-width: 768px) {
      grid-column: 1 / 2;
    }
  }
  .p-footer__list:nth-of-type(3){
    @media (max-width: 990px) {
      grid-column: 1 / 3;
    }

    @media (max-width: 768px) {
      grid-column: 2 / 3;
    }
  }

  .p-footer__link{
    color: #333;
    font-family: "Noto Sans";
    font-size: 14px;
    font-weight: 500;
display: flex;
align-items: center;
justify-content: flex-start;
  }

  .p-footer__link.--bold{
    font-weight: 700;
    font-size: 16px;
  }

  .p-footer__link.--icon{
    display: flex;
    align-items: center;
    gap: 8px;
  } 

  .p-footer__link.--in{
   padding-left: 18px;
   position: relative;
  }

  .p-footer__link.--gray{
    color: #757575;
    font-size: 12px;

    @media (max-width: 768px) {
      font-size: 10px;
    }
  }

  .p-footer__link.--in::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 1px;
    background: #044B98;
  }
  
  .p-footer__icon-wrap{
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
gap: 24px 40px;

@media (max-width: 768px) {
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
  }

  .p-footer__link-wrap{
    display: flex;
    align-items: center;
    gap: 40px;

    @media (max-width: 990px) {
      gap: 16px;
    }

    @media (max-width: 768px) {
      display: flex !important;
      flex-direction: column;
      margin-top: 40px;
    }
  }

  .p-footer__bottom{
padding-block: 48px;
background-color: #E5EDF5;
  }

  .p-footer__link-wrap.bottom{
    @media (max-width: 768px) {
      display: none !important;
    }
  }

  .l-footer__bottom{
display: flex;
justify-content: space-between;
align-items: stretch;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
  }
  }
  .p-footer__bottom-logo {
    display: block;

    @media (max-width: 768px) {
   width: 94%;
   order: 1;
    }
  }

  .p-footer__left{
    display: flex;
flex-direction: column;
    gap: 38px;

    @media (max-width: 768px) {
      display: contents;
    }
  }

  .p-footer__right{
    display: flex;
flex-direction: column;
justify-content: space-between;

    @media (max-width: 768px) {
      display: contents;
    }
  }

  .p-footer__mail {
    @media (max-width: 768px) {
      order: 5;
    }
  }

  .p-footer__btn-wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;

    @media (max-width: 768px) {
      order: 3;
      gap: 16px;
    }
  }

  .p-footer__bottom-info{
 
    @media (max-width: 768px) {
      order: 2;
    }
  }

  .p-footer__bottom-info p, .p-footer__bottom-info a{
    color: #333;
    font-size: 16px;
    font-weight: 400;
    font-family: "Mgen+ 1p";
  }

  .p-footer__bottom-info a span{
    text-decoration: underline;
  }

  .p-footer__bottom-info p span{
    display: block;
    font-size: 18px;
    font-weight: 500;
  }

  .p-footer__bottom-info p span.small{
    font-size: 16px;
  }

  .p-footer__bottom-sns{
    display: flex;
align-items: center;
gap: 24px;

    @media (max-width: 768px) {
      order: 4;
    }
  }

  .p-footer__bottom-sns p{
    color:  #044B98;
text-align: center;
font-family: Inter;
font-size: 16px;
font-weight: 700;
white-space: pre;
  }

  .p-footer__bottom-sns a{
    display: block;
    
  }
  .p-footer__tel-caption{
    @media (max-width: 768px) {
      color: #C62728;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      margin-top: -6px;
    }
  }
  .p-footer__tel-caption span{
    @media (max-width: 768px) {
      font-family: Inter;
    }
  }
  .p-footer__caption{
    margin-bottom: 32px;
    max-width: 335px;
margin-inline: auto;
padding-block: 10px;
border-top: 1px solid #757575;
border-bottom: 1px solid #757575;

    @media (max-width: 768px) {
      margin-bottom: 0;
      max-width: fit-content;
  }
}
.p-footer__caption li{
  position: relative;
  padding-left: 14px;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-footer__caption li::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
  /* コピーライト */
  .p-copyright{
    background-color: #044B98;
    padding-block: 30px;

    @media (max-width: 768px) {
      padding-block: 20px;
    }
  }
  .p-copyright small{
    color: #fff;
font-family: "Noto Sans JP";
font-size: 14px;
font-weight: 400;
display: block;
text-align: center;

    @media (max-width: 768px) {
      font-size: 10px;
    }
  }
  /* faq */
  .p-blue__header{
    background: #F5FAFF;
    /* padding-bottom: 70px;

    @media (max-width: 768px) {
      padding-bottom: 50px;
    } */
  }
  .p-faq__title{
    padding: 50px 10px;

    @media (max-width: 768px) {
      padding: 30px 10px;
    }
  }

  .p-faq__category {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
align-content: flex-start;
    gap: 16px;
    gap: 24px;
    max-width: 800px;
    padding-inline: 25px;
    margin-inline: auto;
    margin-top: 60px;

    @media (max-width: 768px) {
      gap: 16px 8px;
      margin-top: 30px;
      padding-inline: 0;
    }
  }
  .p-faq__category.--sub{
    gap: 48px;
    max-width: 890px;
    padding-inline: 17px;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;

    @media (max-width: 768px) {
      gap: 8px;
      padding-inline: 0;
      overflow-x: scroll;
      width: 100vw;
      margin: 0px calc(50% - 50vw);
      display: grid;
      justify-content: flex-start;
      grid-template-columns: repeat(3, 155px);
      padding-inline: 5.33%;
    }
  }
  .p-faq__contents{
    display: flex;
    width: 100%;
max-width: 800px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0 auto;
  }
  .p-faq__contents.--tour{
    max-width: 704px;
  }
  .p-faq__item{
     padding: 10px 16px;
     border-radius: 10px;
     background: #FFF;
     box-shadow: 0px 2.672px 6.68px 0px rgba(0, 0, 0, 0.25);
     width: 100%;
     cursor: pointer;
     transition: all 0.3s ease;

  }
  .p-faq__item:hover{
    background: #F5FAFF;
  }
  .p-faq__question{
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 42px;
    padding-right: 34px;
    position: relative;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }
  .p-faq__question::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url(../images/front/question.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
  }
  .p-faq__question::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/front/icon-open.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
  }
  .p-faq__question.is-open::after{
    background-image: url(../images/front/icon-close.svg);
  }
  .p-faq__answer{
    display: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
padding-left: 48px;
padding-top: 10px;
position: relative;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }
  .p-faq__answer p{   
     color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }
  .p-faq__answer a{
    color: #044B98;
    text-decoration: underline;
  }
  .p-faq__answer::before{
    content: "";
    position: absolute;
    top: 10px;
    /* top: 50%;
    transform: translateY(-50%); */
    left: 0;
    background-image: url(../images/front/answer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
  }

  /* 検索窓 */
  .p-faq__search {
    margin: 20px 0;
    padding-bottom: 70px;

    @media (max-width: 768px) {
      padding-bottom: 50px;
    }
  }
  
  .p-faq__search-form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }
  .p-faq__search-form::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/faq/search.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  input[type="text"].p-faq__search-input {
    width: 100%;
    padding-block: 10px;
    padding-inline: 50px 16px;
    border-radius: 10px;
    border: 1px solid #E5EDF5;
    background: #FFF;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 2;
  }
  .p-faq__search-input::placeholder{
    color: #BDBDBD;
    font-weight: 500;
  }
  
  .p-faq__search-input:focus {
    border-color: #007cba;
  }
  
  .p-faq__search-results {
    margin: 0 auto 20px;
    max-width: 700px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: none;
    position: relative;
    z-index: 100;
  }
  
  .p-faq__search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .p-faq__search-results li {
    border-bottom: 1px solid #E5EDF5;
  }
  
  .p-faq__search-results li:last-child {
    border-bottom: none;
  }
  
  .p-faq__search-results a {
    display: block;
    padding-block: 10px;
    padding-inline: 58px 50px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }
  .p-faq__search-results a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url(../images/front/question.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .p-faq__search-results a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/faq/dawn-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  
  .p-faq__search-results a:hover {
    background: #f5faff;
  }
  
  .p-faq__no-results {
    padding-block: 10px;
    padding-inline: 58px 50px;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
  }

.--no-breadcrumb{
  margin-top: 65px;
}
  /* about */
  .p-aboutHeader{
    position: relative;
    background-image: url(../images/about/about-head.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 625px;
    
    @media (max-width: 768px) {
      background-image: url(../images/about/about-head_sp.jpg);
      height: 650px;
    }
  }
  .p-aboutHeader__logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 331px;

    @media (max-width: 768px) {
      width: 58%;
      max-width: 218px;
      top: 100px;
      transform: translateX(-50%);
    }
  }
  .p-about__title{
padding: 50px 10px;
justify-content: center;
align-items: center;
margin-bottom: 50px;

      @media (max-width: 768px) {
        padding: 30px 10px;
        margin-bottom: 30px;
      }
  }
  .p-about__content{
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .p-about__content p{
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    text-align: center;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  .p-about__content p.last{
 margin-top: -20px;
  }

  .p-about__splide{
    padding-block: 150px;

    @media (max-width: 768px) {
      padding-block: 60px;
    }
  }
  .p-about__splide__img{

  }
  .p-about__splide__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;

    @media (max-width: 768px) {
      border-radius: 18px;
    }
  }
  /* スタッフ紹介 */
  .p-staff{
    padding-block: 160px;

    @media (max-width: 768px) {
      padding-block: 80px;
    }
  }
  .p-staff__heading{
    padding-left: 50px;
    position: relative;
    margin-bottom: 80px;

    @media (max-width: 768px) {
      margin-bottom: 40px;
    }

&::before{
  content: "";
  background-image: url(../images/about/staff-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
 
  }
  .p-staff__content{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 24px;
    }
  }
  .p-staff__content:nth-of-type(even){
    flex-direction: row-reverse;

    @media (max-width: 768px) {
      flex-direction: column;
    }
  }
  .p-staff__img, .p-staff__video{
  flex: 0 0 30%;
    aspect-ratio: 328 / 410;

    @media (max-width: 768px) {
    flex: auto;
    width: 100%;
    aspect-ratio: 335 / 419;
    }

    &.wide{
flex: 0 0 39%;
aspect-ratio: 424 / 530;

    @media (max-width: 768px) {
      flex: auto;
      width: 100%;
      aspect-ratio: 335 / 419;
    }
    }
  }
  .p-staff__img img, .p-staff__video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  .p-staff__video{
    position: relative;

    &::before{
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 30%;
      aspect-ratio: 1 / 1;
      height: auto;
      background-image: url(../images/about/icon-play.png);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      pointer-events: none;
    }
  }
  /* .p-staff__video a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  } */
  .p-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  
  .p-modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.8);
    z-index: -1;
  }
  
  .p-modal__container {
    position: absolute;
    z-index: 1;
    max-width: 1080px;
    aspect-ratio: 1080/608;
    width: 75%;
    top: 50%;
    left: 50%;
    height: auto;
    /* overflow-y: scroll; */
    transform: translate(-50%, -50%);

    @media (max-width: 768px) {
      width: 90%;
    }
  }
  .p-modal__container.--voice{
    max-width: 600px;
    width: 90%;
    height: 80%;
    overflow-y: scroll;
    border-radius: 20px;
  }
  
  .p-modal__video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;

    @media (max-width: 768px) {
      border-radius: 20px;
    }
  }
  
  
  .p-modal__close {
    min-width: 48px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background-color: transparent;
    position: relative;
  }
  .p-modal__close.--voice{
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
    
  .p-modal__bottom {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
  }
  .p-modal__bottom.--voice{
   position: fixed;
   top: 4%;
   right: 17px;
   margin-bottom: 0;
  }
  
  .p-modal.is-open {
    opacity: 1;
    visibility: visible;
  }
  .p-staff__text{
    flex: 1;
  }
  .p-staff__job{
    color: #044B98;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  .p-staff__name{
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 2;
    display: flex;
align-items: center;
column-gap: 16px;
margin-bottom: 24px;
flex-wrap: wrap;

    @media (max-width: 768px) {
      font-size: 20px;
      margin-bottom: 16px;
    }

  }
  .p-staff__name span{
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  .p-staff__text{
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 24px;

    @media (max-width: 768px) {
      font-size: 14px;
      margin-bottom: 16px;
    }
  }
  .p-staff__info{
    padding: 20px;
    border-radius: 20px;
background: #F5FAFF;

  }
  .p-staff__info p{
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }
  .p-staff__info h4{
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }
  .p-staff__info h4 span{
    font-size: 14px;
    font-weight: 500;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  .p-staff__info ul{
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  /* 動画モーダル */
  .lity-container{
    max-width: 1080px !important;
    position: relative !important;
    width: 80% !important;
    }
.lity-close{
      position: absolute !important;
      /* opacity: 0 !important; */
      z-index: 1000 !important;
      width: 48px !important;
      height: 48px !important;
      top: -15% !important;
    right: -19% !important;

      &::before{
        content: "";
        position: absolute;
        background-image: url(../images/about/video-close.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: 0;
        left: 0;
  width: 100%;
  height: 100%;
      }
    }

    /* お問い合わせ */
    .p-contact__title {
      padding: 50px 10px;

      @media (max-width: 768px) {
        padding: 30px 10px;
      }
    }
    .p-contact__wrap{
      max-width: 890px;
      margin-inline: auto;
      padding-inline: 14px;
      padding-block: 50px;

      @media (max-width: 768px) {
        padding-inline: 5.33%;
        padding-block: 40px 24px;
      }
    }
    .p-contact__link{
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 30px;

     @media (max-width: 768px) {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;

     }
    }
    .p-contact__link a{
    }
    .p-contact__tel{
      margin: 7px auto 0;
      width: 97%;

      @media (max-width: 768px) {
        width: 100%;
        margin: 0;
      }
    }
    .p-contact__list{
      margin-block: 0;
    }
    .p-contact__list li{
      color: #757575;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      padding-left: 16px;
      position: relative;

      @media (max-width: 768px) {
        font-size: 14px;
      }
    }
    .p-contact__list li::before{
      content: "※";
      position: absolute;
      top: 0;
      left: 0;
    }

/* コンタクトフォーム */
.p-contactForm__wrap{
  max-width: 700px;
  margin-inline: auto;

  @media (max-width: 768px) {
    margin-top: 30px;
  }
}
.p-contactForm__row {
	align-items: flex-start;
	display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-contactForm__row.flex-row{
  flex-direction: row;
  gap: 20px;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 8px;
  }
}
.p-contactForm__row.contents .p-contactForm__row-head {
  flex-shrink: 0;
}
.p-contactForm__row.contents .p-contactForm__row-date{
  flex: 1;
  width: auto;
}

.p-contactForm__row-head {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.p-contactForm__row-head span {
	display: inline-block;
	position: relative;
}

.p-contactForm__row-head span.must::after {
	background-color: #C62728;
	content: "必須";
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
	left: calc(100% + 8px);
	letter-spacing: 0em;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
  border-radius: 2px;
  padding: 2px 4px;
}

.p-contactForm__row-date {
width: 100%;
}

.p-contactForm__row-date.flex{
  display: flex;
}
.p-contactForm__row-date.flex.number{
  gap: 40px;

  @media (max-width: 768px) {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}
.p-contactForm__row-date.flex.date{
  gap: 10px;
  max-width: 345px;
  align-items: center;
}
.p-contactForm__row-date.flex.date .wpcf7-form-control-wrap{
  position: relative;
}
.p-contactForm__row-date.flex.date .wpcf7-form-control-wrap::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-image: url(../images/front/form-calendar.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}
.p-contactForm__row-date.flex.date input{
  padding-left: 40px;
}
.p-contactForm__row-date.flex.number label{
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-contactForm__row-date.flex.number label span{
  flex-shrink: 1;
  word-break: auto-phrase;
}
.p-contactForm__row-date.flex.number label input{

  @media (max-width: 768px) {
    width: 56px;
  }
}
.p-contactForm__row-date span {
  color: #333;
  font-size: 16px;
  font-weight: 400;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.p-contactForm .wpcf7-checkbox {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 10px 32px;
  flex: 1 0 0;
  flex-wrap: wrap;
}
.p-contactForm .wpcf7-checkbox .wpcf7-list-item{
margin-left: 0;
}

.p-contactForm__row + .p-contactForm__row {
	margin-top: 31px;
}

.p-contactForm input[type=text],
input[type=email],
.p-contactForm input[type=tel],
.p-contactForm input[type=date],
.p-contactForm input[type=number],
.p-contactForm textarea {
	border: none;
	font-size: 16px;
	font-weight: 400;
	height: auto;
	padding: 10px;
	transition: outline 0.2s;
	width: 100%;
  border-radius: 4px;
  outline: 1px solid #BDBDBD !important;
  background: #FAFAFA;

  @media (max-width: 768px) {
    font-size: 14px;
  }

  &::placeholder{
    color: #BDBDBD;
  }
}

.p-contactForm textarea {
	height: 206px;
	resize: vertical;
}

.p-contactForm input[type=date] ::-moz-placeholder {
	color: #BDBDBD;
}

.p-contactForm input[type=date] ::placeholder {
	color: #BDBDBD;
}

.p-contactForm__check.center{
  width: fit-content;
  margin-inline: auto;
}
.p-contactForm__check.center span{
  font-size: 14px;

  @media (max-width: 768px) {
    font-size: 12px;
  }
  
}
.p-contactForm__check a{
  color: #044B98;
font-size: 14px;
font-weight: 400;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;

@media (max-width: 768px) {
  font-size: 12px;
}
}

.p-contactForm__check label input[type=checkbox] {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.p-contactForm__check label span {
	display: inline-block;
	padding-left: 27px;
	position: relative;

  @media (max-width: 768px) {
   padding-left: 25px;
  }
}

.p-contactForm__check label span::before {
	content: "";
	height: 17px;
	left: 0;
	position: absolute;
	top: 3px;
	width: 17px;
  border-radius: 2px;
  border: 1px solid #BDBDBD;
  background: #FAFAFA;
}

.p-contactForm__check label span::after {
  border-bottom: 2px solid #044B98;
  border-left: 2px solid #044B98;
  content: "";
  height: 6px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 7px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 10px;
}

.p-contactForm__check label:hover::before {
	border: 1px solid #044B98;
}

.p-contactForm__check label input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.p-contactForm__check label input[type=checkbox]:checked + span::before {
	border: 1px solid #044B98;
}

.p-contactForm__check label input[type=checkbox]:focus + span::before {
	border: 1px solid #044B98;
}

.p-contactForm__check label input[type=checkbox]:focus-visible + span::before {
	border: 1px solid #044B98;
}

.p-contactForm__check label:hover {
	cursor: pointer;
}

.p-contactForm .wpcf7-submit:disabled {
  background-color: #BDBDBD;
  color: #fff;
  opacity: 1;
  border: 2px solid #BDBDBD;

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
    }
  }
}

.p-contactForm__submit{
  position: relative;
  width: fit-content;
  margin-inline: auto;
  transition: all 0.3s ease;

/* disabled状態でない場合のみホバー効果を適用 */
@media (any-hover: hover) {
  &:hover:not(:has(.wpcf7-submit:disabled)) {
    opacity: 0.8;
  }
}
}
.p-contactForm__submit .wpcf7-spinner{
  display: none;
}

.p-contactForm__submit input[type="submit"]{
  border-radius: 100px;
  border: 2px solid #044B98;
  background: #044B98;
  display: flex;
  width: 335px;
  padding-block: 16px;
  padding-inline: 14px 44px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;

  @media (max-width: 768px) {
    font-size: 14px;
    max-width: 335px;
    width: 100%;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}
.p-contactForm__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 30px;
  height: 30px;
  background-image: url(../images/front/white-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;


  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
    right: 12px;
  }
}
/* disabled時の::after要素の背景画像を変更 */
.p-contactForm__submit:has(.wpcf7-submit:disabled)::after {
  background-image: url(../images/front/white-arrow-disable.svg);
}
.p-contactForm .wpcf7-not-valid-tip{
  color: #C62728;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 8px;
}
/* お問い合わせ完了 */
.p-thanks{
  max-width: 700px;
  margin-inline: auto;
}

.p-thanks__text{
 font-size: 16px;
 font-weight: 400;
 line-height: 1.5;
 font-weight: 500;

 @media (max-width: 768px) {
  font-size: 14px;
 }
}
.p-thanks__text.bold{
  font-weight: 700;
}
/* ツアー比較 */
.p-tourCompare{
  border-top: 4px solid #044B98;
  background: #FFFFD4;
  padding-inline: 6.944%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;

  @media (max-width: 768px) {
    padding-inline: 5.33%;
    padding-block: 4px;
  }
}
.p-tourCompare__contents{
 display: flex;
 align-items: center;
 gap: 16px;
 max-width: 1240px;
 margin-inline: auto;
 justify-content: center;

  @media (max-width: 768px) {
    gap: 0;
  }
}
.p-tourCompare__list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;

  @media (max-width: 768px) {
  gap: 0;
  }
}
.p-tourCompare__item{
  display: flex;
  align-items: stretch;
  padding-block: 16px;
  flex: 1;
  max-width: 264px;
  position: relative;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 2px;
    padding-inline: 4px;
    padding-block: 0;
    border-right: 1px dashed #5287C1;
    max-width: 70px;
  }
}
.p-tourCompare__item:last-child{
  @media (max-width: 768px) {
    border-right: none;
  }
}

.p-tourCompare__img{
  flex: 0 0 36%;

  @media (max-width: 768px) {
    flex:auto;
    aspect-ratio: 62 / 47;
  }
}
.p-tourCompare__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-tourCompare__title{
  flex: 1;
  padding-block: 8px;
  padding-inline: 16px;
  border-right: 1px dashed #5287C1;

  @media (max-width: 768px) {
   border-right: none;
   padding: 0;
  }

}
.p-tourCompare__title span{
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-y: hidden;

  @media (max-width: 768px) {
    font-size: 8px;
    -webkit-line-clamp: 2;
  }
}
.p-tourCompare__button{
  min-width: 128px;
  padding: 8px 16px;
font-size:  16px;
font-weight: 700;
line-height: normal;
background-color:#C62728;
border-radius: 100px;
color: #fff;
box-shadow: 0px 2.672px 6.68px 0px rgba(0, 0, 0, 0.25);

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-tourCompare__link{
display: block;
width: 100%;
padding-block: 4px;
text-align: center;
}
.p-tourCompare__link span{
  color: #044B98;
text-align: center;
font-size: 14px;
font-weight: 700;
line-height: normal;
position: relative;
padding-right: 24px;

@media (max-width: 768px) {
  font-size: 12px;
}
}
.p-tourCompare__link span::after{
  content: "";
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  background-image: url(../images/front/compare-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  right: 0;
}
.p-tourCompare__close{
  position: absolute;
  background-color: transparent;
  border: none;
  top: 2px;
  right: 3px;
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

  @media (max-width: 768px) {
    top: -2px;
    right: 3px;
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}

.p-tourCompare__close img{

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

  @media (max-width: 768px) {
    overflow-x: scroll;
  }
}
.p-compareTable__contents{
  display: flex;
  gap: clamp(1.25rem, -0.756rem + 4.17vw, 3rem);

  @media (max-width: 768px) {
   gap: 24px;
   width: 1028px;
   padding-right: 20px;

  }
}
.p-compareTable__item{
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(25% - clamp(0.625rem, -2.097rem + 5.66vw, 3rem));

  @media (max-width: 768px) {
    width: 234px;
  }
}
.p-compareTable__item figure{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.p-compareTable__title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  /* flex-grow: 1; */
  flex-grow: 0;
  overflow-y: clip;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  display: -webkit-box;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}
.p-compareTable__title.--cut{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-y: hidden;
}
.p-compareTable__img {
  width: 100%;
  aspect-ratio: 234 / 176;
  height: auto;
}
.p-compareTable__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.p-compareTable__button-wrap{
  display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.p-tourCompare__info{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-tourCompare__info-item{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-tourCompare__info-item p{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.p-tourCompare__info-item ul{
margin-bottom: 0;
}
.p-tourCompare__info-item .p-tourCompare__info-list{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tourCompare__info-item .p-tourCompare__info-list li{
  position: relative;
  padding-left: 18px;
}
.p-tourCompare__info-item .p-tourCompare__info-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-tourCompare__info-item-title{
  color: #333;
font-size: 18px;
font-weight: 700;
line-height: 1;
padding-block: 8px;
text-align: center;
border-bottom: 1px solid #333;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}
.p-tourCompare__info-item dl{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-tourCompare__info-item dt{
  border-radius: 4px;
  background: #EEE;
  color: #757575;
font-size: 16px;
font-weight: 700;
line-height: 1;
padding-block: 4px;
text-align: center;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.p-tourCompare__info-item dd .space{
  height: 76px;
  position: relative;
}
.p-tourCompare__info-item dd .space::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #757575;
}
p.p-tourCompare__info-note{
  color: #757575;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}
.p-tourCompare__info-note.center{
  text-align: center;
}
.p-tourCompare__level{
  padding: 8px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.p-tourCompare__level p{
  color:  #333;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.p-tourCompare__summary {
  display: flex;
  flex-direction: column;
  gap: 30px;
}