@charset "utf-8";

/*
 * Celeb HIRE ハイヤーページ専用
 */
:root {
  /* 1pt あたりの rem 倍率 (1.333333 / 16 = 0.083333) */
  --pt-ratio: calc(4 / 3 / 16);
}

html {
  /* rem使用のための定義 */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: clip;
}

.hide_sp {
  @media screen and (max-width: 767px) {
    display: none;
  }
}

section[id] {
  scroll-margin-top: 80px;
}

/* PC時のヘッダー高さ */
@media (min-width: 768px) {
  section[id] {
    scroll-margin-top: 130px;
  }
}

#contents {padding-bottom: 0;}
#footer .footer-info {display: none;}

#main-visual__hire,
#main-visual__hire-confirm,
#main-visual__hire-thanks {
  max-height: 556px;
  min-height: 450px;
  height: 100%;
  height: calc(100vh - var(--header-height));
  background-size: cover!important;

  background: url('../img/celeb_hire/mv_sp.webp') no-repeat center center;

  @media screen and (min-width: 768px) {
    max-height: 1016px;
    min-height: 500px;
    background: url('../img/celeb_hire/mv_pc.webp') no-repeat center center;
  }

  .main-visual-inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;

    min-height: 450px;
    @media screen and (min-width: 768px) {
      min-height: 500px;
    }
  }

  .title-box {
    .page-title {
      margin-left: 0;
      .main {
        color: #fff;
        font-weight: 700;
        font-size: 37px;
        letter-spacing: 3px;
        line-height: 1.36;

        @media screen and (min-width: 768px) {
          font-size: 76px;
        }
      }

      .sub {
        color: #fff;
        font-weight: 700;
        display: block;
        margin-top: 0.5em;
        font-size: 16px;

        @media screen and (min-width: 768px) {
          font-size: 34px;
        }
      }

      .main, .sub {
        text-shadow: 3.5px 3.5px 2.5px rgba(0, 0, 0, .75);
        @media screen and (min-width: 768px) {
          text-shadow: 5px 5px 5px rgba(60, 79, 86, .75);
        }
      }


      @media screen and (min-width: 768px) {
        position: relative;
        &:before {
          content: "";
          display: block;
          width: 1160px;
          height: 378px;

          position: absolute;
          top: 0;
          bottom: 0;
          left: -22vw;
          margin: auto;
          z-index: -1;

          background: url('../img/celeb_hire/gradient_pc.webp') no-repeat center center;
          background-size: cover;
        }
      }
      @media screen and (min-width: 968px) {
        &:before {
          left: -22vw;
        }
      }
    }
    /* .page-title */

    top: 19.5%;
    width: calc(720% / 7.50);

    @media screen and (min-width: 768px) {
      top: inherit;
      bottom: -35px;
    }

    @media screen and (max-width: 767px) {
      left: 0;
      right: 0;
      margin: auto;
    }
  }
  /* title-box */
}
/* main-visual__hire */



/* position stiky navigation */
.navigation_sticky {
  /* position: -webkit-sticky;
  position: sticky; */
  position: sticky;
  height: 130px;
  width: 100%;
  /* top: 80px;
  top: var(--header-height, 70px); */
  top: 0;
  left: 0;

  z-index: 99;
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(5px);

  padding: 1em;

  @media screen and (max-width: 767px) {
    padding: 1.5em;
    height: fit-content;
  }
}

.navigation_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 100%;

  a {
    text-align: center;
    color: #3a3a3a;
    transition: color .4s;

    &:hover,
    &.current {
      color: #5c9db6;
    }

    span {
      display: block;

      &.en {
        font-size: 14px;
        line-height: 1em;
        margin-bottom: .5em;
      }

      &.jp {
        font-size: 24px;
        line-height: 1em;
      }
    }
  }
  /* a */

  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 1em;

    a {
      span {
        display: block;

        &.en {
          font-size: 13px;
          line-height: 2em;
          margin-bottom: 0;
        }

        &.jp {
          font-size: 20px;
          line-height: 1;
        }
      }
    }
  }
}
/* nagigation_inner */




.service_and_concierge {
  .bg_imageFit {
    position: relative;
    color: #fff;

    &.hire_service {
      background: url('../img/celeb_hire/hire_service_sp.webp') no-repeat center center;
      background-size: cover;

      min-height: 365px;

      @media screen and (min-width: 768px) {
        background: url('../img/celeb_hire/hire_service_pc.webp') no-repeat center center;
        min-height: 530px;
      }
    }

    &.concierge_service {
      background: url('../img/celeb_hire/concierge_sp.webp') no-repeat center center;
      background-size: cover;

      min-height: 365px;

      @media screen and (min-width: 768px) {
        background: url('../img/celeb_hire/concierge_pc.webp') no-repeat center center;
        min-height: 530px;
      }
    }
  }
  /* bg_imageFit */

  .bg_image_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;

    position: absolute;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  /* bg_image_inner */


  .bg_image_wrapper {
    @media screen and (min-width: 768px) {
      max-width: 615px;
      width: 100%;

      &.right {margin-left: auto;}
    }
  }


  .inner_header {
    font-size: 24px;
    line-height: 1;
    @media screen and (min-width: 768px) {
      font-size: 48px;
    }
  }
  .inner_sentence {
    font-size: 18px;
    line-height: 1.75;
    margin-top: 0.25em;

    @media screen and (min-width: 768px) {
      font-size: 36px;
    }
  }
}
/* service_and_concierge */


.section_inner {
  .section_header {
    text-align: center;

    &:after {
      display: block;
      content: attr(data-en);
      font-size: 35px;
      font-weight: bold;
      color: #5c9db6;

      @media screen and (min-width: 768px) {
        font-size: 70px;
      }
    }



    font-size: 13px;
    line-height: 1;
    @media screen and (min-width: 768px) {
      font-size: 26px;
    }

    &.white {
      color: #fff;
      &:after {color: #fff;}
    }
  }
  /* section_header */
}
/* section_inner */




/* SERVICE */
.service_section {
  padding-top: 50px;
  overflow: clip;
  position: relative;

  @media screen and (min-width: 768px) {
    padding: 150px 0 100px;
  }

  &:before {
    content: "";
    background: url('../img/celeb_hire/clowd_sp.webp') no-repeat top right;
    background-size: cover;

    position: absolute;
    top: 0;
    right: 0;

    aspect-ratio: 752 / 704;
    width: 100%;
    height: 352px;

    @media screen and (min-width: 768px) {
      aspect-ratio: 1632 / 609;
      max-width: 1632px;
      width: calc(1632% / 19.20);
      height: 609px;
    }
  }


  .service_list {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;

    display: flex;
    flex-direction: column;
    grid-row-gap: 50px;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
      grid-column-gap: 24px;
      grid-row-gap: 75px;

      max-width: 1200px;
      margin-top: 45px;
    }


    li {
      background-color: #f9f9f9;
      @media screen and (min-width: 768px) {
        max-width: 384px;
        width: calc(384% / 12.00);
      }
    }

    .service_sentence {
      padding: 25px 17px 35px;
      line-height: 1.625;
      font-size: 14px;
      letter-spacing: 1px;

      @media screen and (min-width: 768px) {
        font-size: 16px;
      }

      .service_title {
        line-height: 1;
        font-size: 20px;
        color: #5c9db6;
        text-align: center;

        @media screen and (min-width: 768px) {
          font-size: 24px;
        }
      }
      /* service_title */

      .service_body {
        margin-top: 1em;
        text-align: center;

        @media screen and (min-width: 768px) {
          text-align: left;
        }
      }
      /*service_body*/
    }
    /* service_sentence */
  }
  /* service_list */

}
/* service_section */
/* END SERVICE */


/* Section Contact */
.section_contact {
  background-color: #d7e7ee;
  padding: 30px 0;

  @media screen and (min-width: 768px) {
    padding: 50px 0;
  }

  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
  }
  /* section_inner */

  .txt-center {}
  .fz1832 {
    font-size: 18px;
    margin-top: 1em;

    @media screen and (min-width: 768px) {
      font-size: 32px;
    }
  }

  .contact_select {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 20px;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      justify-content: center;
      gap: 23px;
      margin-top: 35px;
    }


    li {
       font-size: 18px;
       background-color: #fff;
       border-radius: 5px;

       @media screen and (min-width: 768px) {
         font-size: 24px;
         border-radius: 10px;

         max-width: 384px;
         width: calc(384% / 12.00);
         padding: 1em;
       }

       a {
        display: block;
        padding: 1.25em;

        @media screen and (min-width: 768px) {
          padding: 20px .25em;
        }
       }

        &.number a {
          @media screen and (min-width: 768px) {
            padding: 20px .75em;
          }
        }
        .number {
          display: flex;
          justify-content: flex-start;
          align-items: center;
        }



        picture {
          display: block;
          width: 30px;
          height: auto;
          margin-right: 0.5em;

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

        .tel_number {
          font-size: 36px;
          font-weight: 500;
          line-height: 1;

          @media screen and (min-width: 768px) {
            font-size: 39px;
          }
        }

      .ontime {
        letter-spacing: 1px;
        font-size: 14px;
        margin-top: 0.5em;
        @media screen and (min-width: 768px) {
          font-size: 16px;
        }
      }

      &.line,&.mail {
        a {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%;

          .default_text {
            line-height: 1;
            display: flex;
            align-items: center;
          }


          picture {
            display: block;
            width: 30px;
            height: auto;

            @media screen and (min-width: 768px) {
              width: 56px;
            }
          }
        }
      }
    }
    /* li */
  }
  /* contact_select */
}
/* END Section Contact */



/* section models */
.section_models {
  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    padding: 45px 0;

    @media screen and (min-width: 768px) {
      padding: 95px 0 60px;
      max-width: 1200px;
    }
  }
  /* section_inner */

  .model_list {
    picture {
      display: block;
    }

    li {
      @media screen and (min-width: 768px) {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
      }


      .model_detail {
        .model_name {
          color: #9b9d9e;
          font-size: 45px;
          line-height: 1;

          @media screen and (min-width: 768px) {
            font-size: 80px;
          }
        }
        .model_name_jp {
          font-size: 20px;
          color: #3a3a3a;
          line-height: 1;
          padding-bottom: 0.5em;
          margin-top: .75em;
          border-bottom: 1px solid #5c9db6;

          @media screen and (min-width: 768px) {
            margin-top: 1.75em;
          }
        }
        .model_info {
          color-scheme: #3a3a3a;
          font-size: 15px;
          line-height: 1.5;
          margin-top: 1em;

        }


        @media screen and (min-width: 768px) {
          width: 554px;
          padding-right: 28px;
        }
      }
      /* model_detail */
    }
    /* li */

    .alphard {
      picture {
        @media screen and (min-width: 768px) {
          max-width: 606px;
          transform: translate(-50px, -50px);
        }
      }

      @media screen and (min-width: 768px) {
        margin-top: 127px;
      }
    }

    .hiace {
      picture {
        @media screen and (min-width: 768px) {
          max-width: 606px;
          transform: translate(-50px, -50px);
        }
      }
    }
  }
  /* model_list */
}
/* END section models */


/* section REVIEWS */
.section_reviews {
  background-color: #5c9db6;
  padding: 50px 0 70px;
  position: relative;


  @media screen and (min-width: 768px) {
    padding: 100px 0;
  }

  &:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

    background-image: url('../img/celeb_hire/revirews_clowd_sp.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;

    @media screen and (min-width: 768px) {
      background-image: url('../img/celeb_hire/revirews_clowd_pc.png');
      width: 976px;
      background-size: cover;
    }
  }

  .reviews_slide_wrapper {
    overflow: visible;

    @media screen and (min-width: 768px) {
      overflow: hidden;
    }
  }

  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    @media screen and (min-width: 768px) {
      max-width: 1200px;
    }
  }

  .review_list {
    margin-top: 65px;

    @media screen and (min-width: 768px) {
      margin-top: 85px;
    }

    li {
      background-color: #fff;
      padding: 6px;

      color: #3a3a3a;

      @media screen and (min-width: 768px) {
        height: auto !important;
        display: flex;
        flex-direction: column;
      }
    }
    /* li */
    .review_inner {
      border: 1.5px solid #5c9db6;
      padding: 20px;

      .info_header {
        display: flex;
        justify-content: flex-start;
        gap: 1em;
      }

      picture {
        display: block;
        width: 86px;

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

      .sentence {}

      .division {
        margin-top: 1em;
        font-size: 14px;

        @media screen and (min-width: 768px) {
          font-size: 16px;
        }
      }

      h3 {
        margin-top: 0.5em;
        font-size: 17.5px;

        @media screen and (min-width: 768px) {
          font-size: 20px;
        }
      }


      @media screen and (min-width: 768px) {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

    }
    /* review_inner */


    .review_sentence {
      margin-top: 1.5em;
      font-size: 15px;
      line-height: 1.75;
      letter-spacing: 1px;

      @media screen and (min-width: 768px) {
        font-size: 18px;
      }
    }
    /* review_sentence */
  }
  /* review_list */



  /* swiper */
  .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    height: 24px;
    margin-top: 20px;

    @media screen and (min-width: 768px) {
      height: 80px;
    }



    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
      position: static;
      top: inherit;
      left: inherit;
      right: inherit;
      margin: inherit;

      color: #fff;
    }

    .swiper-button-prev,
    .swiper-button-next {
      width: 9px;

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

    .swiper-pagination {
      width: fit-content;
      font-size: 20px;

      @media screen and (min-width: 768px) {
        font-size: 34px;
      }
    }
    /* swiper-pagination */
  }
  /* swiper-controls */
}
/* END section REVIEWS */



/* Price */
.section_price {
  position: relative;

  padding: 50px 0;
  @media screen and (min-width: 768px) {
    padding: 95px 0 100px;
  }


  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background-image: url('../img/celeb_hire/price_cloud_sp.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;

    @media screen and (min-width: 768px) {
      background-image: url('../img/celeb_hire/price_cloud_pc.png');
      width: 976px;
      background-size: cover;
    }
  }


  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    @media screen and (min-width: 768px) {
      max-width: 1200px;
    }
  }



  .price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 62px;
    background-color: #fff;

    thead {
      display: none;
      @media screen and (min-width: 768px) {
        display: table;

      }
    }

    tbody {
      display: block;

      tr {
        display: block;
        border: 1px solid #5c9db6;

        th.car-title {
          display: block;
          background-color: #5c9db6;
          color: #fff;
          padding: 14px 0;
          text-align: center;
          font-weight: bold;
          font-size: 20px;
          line-height: 1.125;

          @media screen and (min-width: 768px) {
            font-size: 22px;
          }
        }

        td {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          gap: 1em;
          /* padding: 10px 15px; */
          border-bottom: 1px solid #5c9db6;
          font-size: 20px;
          font-weight: bold;
          height: 50px;

          &:last-child {
            border-bottom: none;
          }

          /* スマホ用ラベルのスタイル */
          .cell-label {
            font-weight: bold;
            color: #3a3a3a;
            text-align: center;
            line-height: 1.2;

            border-right: 1px solid #5c9db6;
            min-width: 86px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            /* (30分) の小さい文字 */
            small {
              display: block;
              font-size: 0.75em;
              font-weight: normal;
            }
          }

          @media screen and (min-width: 768px) {
            font-size: 22px;
          }
        }
      }
    }



    @media (min-width: 768px) {
      display: table;

      thead {
        display: table-header-group;

        tr th {
          background-color: #fff;
          color: #333;
          padding: 29px 8px;
          border: 1px solid #71a4b8;
          text-align: center;
          vertical-align: middle;
          font-size: 20px;
          font-weight: 600;

          &:first-child {
            background-color: #71a4b8;
            color: #fff;
            font-weight: bold;
            width: 341px;
            padding-left: 0;
            padding-right: 0;
          }

          /* thead 内の <small> スタイル */
          small {
          }
        }
      }

      tbody {
        display: table-row-group;

        tr {
          display: table-row;

          th.car-title {
            display: table-cell;
            background-color: #71a4b8;
            color: #fff;
            padding: 29px 0;
            border: 1px solid #71a4b8;
            vertical-align: middle;

            font-size: 20px;
          }

          td {
            display: table-cell;
            padding: 15px 8px;
            border: 1px solid #71a4b8;
            text-align: center;
            vertical-align: middle;
            font-weight: 600;
            font-size: 22px;

            .cell-label {
              display: none;
            }

            &:last-child {text-indent: -2em;}
          }
        }
      }
    }
  }
}
/* section_price */
/* END Price */


/* FAQ */
.section_faq {
  background-color: #5c9db6;
  padding: 50px 0;
  @media screen and (min-width: 768px) {
    padding: 95px 0 100px;
  }


  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    @media screen and (min-width: 768px) {
      max-width: 1200px;
    }
  }




  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;

    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

    @media screen and (min-width: 768px) {
      gap: 30px;
    }
  }

  .faq-item {
    background: #fff;
    overflow: hidden;
  }

  /* 質問ボタン */
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;

    @media screen and (min-width: 768px) {
      padding: 29px 1.5em;
    }

    .icon-q {
      color: #5c9db6;
      margin-right: .5em;
      font-size: 20px;

      display: flex;
      flex-direction: column;
      margin-bottom: auto;
      line-height: 1;

      @media screen and (min-width: 768px) {
        font-size: 40px;
      }
    }

    .text {
      flex: 1;
      color: #5c9db6;

      font-size: 15px;
      line-height: 1.5;

      @media screen and (min-width: 768px) {
        font-size: 26px;
        letter-spacing: 1px;
      }
    }

    /* + / - のアイコン */
    .toggle-icon {
      position: relative;
      width: 14px;
      height: 14px;
      margin-left: 1em;

      @media screen and (min-width: 768px) {
        width: 28px;
        height: 28px;
      }

      /* 横線 (常に表示) */
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #5d9ab1;
        transform: translateY(-50%);

        @media screen and (min-width: 768px) {
          height: 5px;
        }
      }

      /* 縦线 (開いたら回転して消える) */
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background-color: #5d9ab1;
        transform: translateX(-50%);
        transition: transform 0.4s ease, opacity 0.4s ease;

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

  /* ★ 開いている時の「-」アイコン変化 */
  .faq-item.is-open {
    .faq-question .toggle-icon::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }
  }

  /* Answer エリア */
  .faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;

    .faq-answer-inner {
      display: flex;
      margin-top: 5px;
      padding: 0 2.3em 20px 20px;
      line-height: 1.5;
      letter-spacing: 0.75px;

      @media screen and (min-width: 768px) {
        padding: 0 2.3em 1.5em 1.75em;
      }

      .icon-a {
        color: #5c9db6;
        margin-right: 13px;
        line-height: 1;
        font-size: 20px;

        @media screen and (min-width: 768px) {
          font-size: 40px;
          margin-right: .6em;
        }
      }

      .text {
        flex: 1;
        color: #5c9db6;
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 0.75px;

        @media screen and (min-width: 768px) {
          font-size: 26px;
          letter-spacing: 1px;
        }
      }
    }
  }


}
/* END FAQ */




/* FLOW SECTION */
.section_flow {
  background-color: #eff3f5;
  padding: 50px 0;
  position: relative;
  color: #3a3a3a;
  @media screen and (min-width: 768px) {
    padding: 95px 0 100px;
  }


  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    @media screen and (min-width: 768px) {
      max-width: 1200px;
    }
  }


  .flow_list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 62px;

    @media screen and (min-width: 768px) {
      margin-top: 75px;
    }

    .flow-item {
      position: relative;
      background: #fff;
      border-radius: 6px;
      padding: 20px 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);

      display: flex;
      flex-direction: column;
      gap: 15px;

      @media screen and (min-width: 768px) {
        flex-direction: row;
        align-items: center;
        border-radius: 12px;
        padding: 35px;
      }

      &:not(:last-child) {
        margin-bottom: 58px;
        @media screen and (min-width: 768px) {
          margin-bottom: 75px;
        }
      }

      &:not(:last-child)::after {
        content: "";
        position: absolute;
        width: 31px;
        height: 16.5px;
        left: 0;
        right: 0;
        bottom: -4em;
        margin: auto;

        background: url('../img/celeb_hire/flow_next.svg') no-repeat center center;
        background-size: cover;

        @media screen and (min-width: 768px) {
          bottom: -3em;
        }
      }

        .flow-header {
        display: flex;
        align-items: center;
        gap: 1.25em;

        @media screen and (min-width: 768px) {
          gap: 1.75em;
        }

        .flow_icon {
          width: 48px;
          height: 48px;
          flex-shrink: 0;

          @media screen and (min-width: 768px) {
            width: 94px;
            height: 94px;
          }

          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }

        .flow-step-title {
          .step-num {
            display: block;
            font-size: 15px;
            font-weight: bold;
            line-height: 1.5;

            @media screen and (min-width: 768px) {
              font-size: 28px;
              width: 265px;
            }
          }
          .step-name {
            font-size: 20px;
            font-weight: bold;
            line-height: 1;
            letter-spacing: 1px;
            margin: 0;

            @media screen and (min-width: 768px) {
              font-size: 38px;
            }
          }
        }
      }

      .flow-desc {
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
        letter-spacing: 1px;

        @media screen and (min-width: 768px) {
          font-size: 24px;
          letter-spacing: 0;
        }

        small {
          font-size: 0.85rem;

          @media screen and (min-width: 768px) {
            font-size: 24px;
          }
        }
      }
    }
  }
  /* flow-list */


}
/* END FLOW SECTION */



/* Contact apply */
.section_contacts {
  padding: 45px 0;

  @media screen and (min-width: 768px) {
    padding: 100px 0;
  }

  .section_inner {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;

    background-color: #d7e7ee;
    border-radius: 8px;
    padding-top: 45px;
    padding-bottom: 50px;

    @media screen and (min-width: 768px) {
      border-radius: 15px;
      padding-top: 95px;
      padding-bottom: 90px;
      max-width: 1200px;
    }
  }
  /* section_inner */


  .contact_select {
    letter-spacing: 1px;
    margin-top: 22px;
    width: calc(600% / 6.70);
    margin-left: auto;
    margin-right: auto;

    @media screen and (min-width: 768px) {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1000px;
      width: calc(1000% / 12.00);
      margin-top: 45px;
    }


    li {
      background-color: #fff;
      border-radius: 4px;
      padding: 1em;

      &:not(:first-child){
        margin-top: 1em;
      }

      @media screen and (min-width: 768px) {
        border-radius: 8px;
        width: calc(475% / 10.00);
        min-height: 175px;
        padding: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        &:not(:first-child){
          margin-top: 0;
        }
      }
    }

    .number {
      .number_inner {
        line-height: 1;
        display: flex;
        justify-content: center;
        gap: 0.5em;

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

        picture {
          display: block;
          width: 31px;
          height: 31.5px;

          @media screen and (min-width: 768px) {
            width: 49px;
            height: 50px;
          }
        }

        .tel_number {
          font-size: 33px;

          @media screen and (min-width: 768px) {
            font-size: 52px;
          }
        }

      }
      .ontime {
        font-size: 12.5px;
        letter-spacing: 1px;
        text-align: center;
        font-weight: 600;
        line-height: 1.75;

        @media screen and (min-width: 768px) {
          font-size: 20px;
          margin-top: 0.15em;
        }
      }
    }
    .default_text {
      text-align: center;

      &.header {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 0.25em;

        @media screen and (min-width: 768px) {
          line-height: 1;
          font-size: 27px;
          margin-bottom: 0.5em;
        }
      }
    }

    .l-flex {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1em;
    }


    li.line {
      picture {
        display: block;
        width: 61px;
        height: 61px;

        @media screen and (min-width: 768px) {
          width: 97px;
          height: 97px;
        }
      }

      .sentence {
        line-height: 1.5;
        font-size: 12.5px;
        @media screen and (min-width: 768px) {
          font-size: 20px;
        }
      }
    }
  }
  /* contact_select */

  .contacts_note {
    font-size: 15px;
    line-height: 1.5;

    @media screen and (min-width: 768px) {
      text-align: center;
      justify-content: center;
      font-size: 21px;
    }
  }


  .form_wrapper {
    margin-top: 20px;
    display: block;

    @media screen and (min-width: 768px) {
      margin-top: 45px;
      border: 1px solid #3789a9;

    }

    dl {
      font-size: 20px;
      /* font-size: calc(20 * var(--pt-ratio) * 1rem); */
      width: 100%;

      @media screen and (max-width: 767px) {
        &.upper_border p {line-height: 1.5;}
      }


      @media screen and (min-width: 768px) {
        font-size: 22px;
        /* font-size: calc(22 * var(--pt-ratio) * 1rem); */
        display: flex;
        justify-content: flex-start;
        background-color: #fff;

        &:not(:first-child),
        &.upper_border {
          border-top: 1px solid #3789a9;
        }
      }
    }
    /* dl */

    dt {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      max-width: 100%;
      width: 100%;
      background-color: #fff;
      color: #3a3a3a;
      line-height: 1;
      padding: 0 1em;

      height: 42.5px;
      border-top: 1px solid #3789a9;
      border-bottom: 1px solid #3789a9;

      & > p {letter-spacing: 0px;}


      @media screen and (min-width: 768px) {
        max-width: 352px;
        width: 100%;
        height: 88px;

        border: none;


      }

      &.require:after {
        content: "必須";
        font-size: 13.5px;
        color: #fff;

        background-color: #e8604b;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 37px;
        width: fit-content;
        padding: 0 .2em;

        margin-left: auto;

        @media screen and (min-width: 768px) {
          font-size: 17.5px;
          height: 26px;
          padding: 0 .5em;
        }
      }
      /* require */
    }
    /* dt */

    dd {
      flex: 1;
      margin-top: 20px;

      @media screen and (min-width: 768px) {
        margin-top: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #d7e7ee;
        border-left: 1px solid #3789a9;

        & > p {
          width: calc(608% / 6.45);
        }
      }

      input[type="text"],
      input,
      select,
      textarea {
        font-size: 20px;
        line-height: 1.15;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 40px;

        border: 1px solid #fff;
        transition: border .3s;

        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

        @media screen and (min-width: 768px) {
          height: 48px;
        }

        &:focus {
          outline: #3789a9;
          border-radius: 0;
          border: 1px solid #3789a9;
        }
      }

      textarea {
        min-height: 150px;

        @media screen and (min-width: 768px) {
          min-height: 184px;
          margin: 20px auto;
        }
      }

      &.one-line {
        & > p {
          display: flex;
          justify-content: flex-start;
          align-items: center;

          select {
            /* width: 30%!important; */
          }
        }

        @media screen and (max-width: 767px) {
          & > p {flex-wrap: wrap;}
        }

        .hours {
          margin-left: auto;
          font-size: 16px;
        }

        input[name="date-in"],
        input[name="date-out"] {
          width: 244px;
          height: 48px;
          display: block;
          padding: 0 .5em;

          @media screen and (max-width: 767px) {margin-bottom: 1em;}
        }

        .wpcf7-form-control-wrap[data-name="select-dateinHour"],
        .wpcf7-form-control-wrap[data-name="select-dateinMunites"],
        .wpcf7-form-control-wrap[data-name="select-dateoutHour"],
        .wpcf7-form-control-wrap[data-name="select-dateoutMunites"]
        {
          width: 100px;
          height: 48px;
        }

        .wpcf7-form-control-wrap[data-name="select-dateinMunites"],
        .wpcf7-form-control-wrap[data-name="select-dateoutMunites"]
        {
          margin-left: 1em;
        }

        select[name="select-dateinHour"],
        select[name="select-dateinMunites"],
        select[name="select-dateoutHour"],
        select[name="select-dateoutMunites"]
         {
          width: 100%;
          height: 100%;
        }
      }
      /* one line */
    }
    /* dd */
  }
  .wpcf7-not-valid-tip {
    font-size: 12px;
    @media screen and (min-width: 768px) {
      font-size: 14px;
    }
  }
  /* form_wrapper */

  .hire_privacy_wrapper {
    font-size: 18px;
    text-align: center;
    @media screen and (min-width: 768px) {
      font-size: 20px;
    }

    .privacy_title {
      margin-top: 2em;
      font-size: 18px;
      @media screen and (min-width: 768px) {
        font-size: 20px;
      }
    }
    /* privacy_title */

    .privacy_check {
      margin-top: 1.5em;

      display: flex;
      justify-content: center;
    }
    /* privacy_check */

    .is_form_button,
    .btn_return {
      height: 50px;
      margin-top: 45px;

      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      background-color: #3789a9;
      font-size: 17.5px;
      max-width: 170px;
      width: 100%;

      margin-left: auto;
      margin-right: auto;

      @media screen and (min-width: 768px) {
        font-size: 22px;
        max-width: 210px;
        height: 60px;
        margin-top: 50px;
      }
    }
    /* is_form_button */

    .btn_return + .is_form_button {
      margin-top: 1em;
    }

    .privacy_checkbox {
      display: none;
      & + .wpcf7-list-item-label {
        padding-left: 0.5em;
      }
      & + .wpcf7-list-item-label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0em;
        width: 20px;
        height: 20px;
        border: 2px solid #3789a9;
        background-color: #fff;

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

      &:checked + .wpcf7-list-item-label:after {
        content: "";
        position: absolute;
        top: -1px;
        left: 4px;
        width: 20px;
        height: 10px;
        border-bottom: 3px solid #3789a9;
        border-left: 3px solid #3789a9;
        transform: rotate(-45deg);
      }
    }
    /* privacy_checkbox */
  }

  @media screen and (max-width: 767px) {
    .privacy_check {
      font-size: 16px;
      line-height: 24px;
      width: 89%;
      flex-wrap: wrap;
      justify-content: flex-start!important;
      margin-left: auto;
      margin-right: auto;
    }

    .contact_select.form_wrapper {
      dl:not(:first-child){
        margin-top: 20px;
      }
    }
  }
  /* hire_privacy_wrapper */

  /* スタイル調整 */
  .form-confirm .hours {
    margin-left: 1em!important;
  }
  [data-id="group-reservecheck"] {
    margin-top: 20px;
    @media screen and (min-width: 768px) {
      margin-top: 0;
    }
  }
  [data-name="date-in"],
  [data-name="date-out"] {
    @media screen and (max-width: 767px) {
      width: 100%;

      input {width: 100%!important;}
    }
  }
  .wpcf7-response-output {display: none;}

}
/* END Contact apply */

.fix--btn-box .btn__search.btn a {
  position: relative;

  @media screen and (min-width: 768px) {
    padding-top: 2.75em;
    padding-bottom: 1em;
  }

  &:before {
    content: "";
    display: block;
    width: 19px;
    height: 19px;
    margin-right: 0.5em;
    background: url('../img/celeb_hire/icno_phone.svg') no-repeat center center;

    @media screen and (min-width: 768px) {
      position: absolute;
      top: 1em;
      left: 0;
      right: 0;
      margin: auto;

      width: 23px;
      height: 24px;
    }
  }
}

.fix--btn-box .btn__members.btn a {
  position: relative;

  @media screen and (min-width: 768px) {
    padding-top: 2.5em;
    padding-bottom: 1em;
  }

  &:before {
    content: "";
    display: block;
    width: 24.5px;
    height: 17px;
    margin-right: 0.5em;
    background: url('../img/celeb_hire/icon_mail.svg') no-repeat center center;

    @media screen and (min-width: 768px) {
      position: absolute;
      top: 1em;
      left: 0;
      right: 0;
      margin: auto;

      width: 26px;
      height: 18px;
    }
  }
}
/* fix--btn-box */
@media screen and (max-width: 767px) {
  .fix--btn-box .btn a {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;

    font-size: 18px;
  }
}



#hire.section {
  background-color: #5c9db6;
  color: #fff;

  .section-inner {
    width: calc(670% / 7.50);

    @media screen and (min-width: 768px) {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
  }

    .section-title__sub {
      text-align: left;
      display: block;
      text-align: left;
      font-size: 18px;
      @media screen and (min-width: 768px) {
        font-size: 30px;
      }
    }
    .section-title__main {
      font-size: 43px;
      text-align: left;
      @media screen and (min-width: 768px) {
        font-size: 80px;
      }
    }

  .hire-list {
    @media screen and (min-width: 768px) {
      flex: 1;
      margin-left: auto;
    }
    .hire-list-item {
      @media screen and (min-width: 768px) {
        margin: 0;
      }
    }



    .hire-list-item__body .hire-item__txt  {
      margin-bottom: 0;
    }
    .hire-list-item__body .hire-item__txt .flex-container {

      @media screen and (min-width: 768px) {
        gap: 50px;
        justify-content: flex-end;
      }

      li {
        margin-left: 0;
        &:before {
          content: none;
        }
      }

      a {
        color: #fff;
        font-size: 20px;

        display: flex;
        align-items: center;
        gap: .15em;

        &:before {
          width: 22px;
          height: 20px;
          background: url('../img/celeb_hire/icon_hibiscus.svg') no-repeat center center;
          margin: 0;
          border: none;

          @media screen and (min-width: 768px) {
            width: 34px;
            height: 31px;
          }
        }

        @media screen and (min-width: 768px) {
         font-size: 30px;
        }

      }
      @media screen and (min-width: 768px) {
        flex-wrap: nowrap;

        li {
          width: fit-content;
        }
      }
    }
    /*hire-list-item */
  }
  /* hire-list */
}
