@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
root設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

*:root {
  /*幅1280pxの時に1文字10pxとなる値 最小値10px*/
  font-size: 10px;
  /* font-size: 10px; */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1;
  /*自動カーニング*/
  font-feature-settings: "palt";
  /*両端揃え*/
  text-align: justify;
  /* ---------- */
  /* 変数 */
  /* 色 */
  --color-blue: #00488d;
  --color-light_blue: #006baf;
  --color-ex_light_blue: #d2eaf6;
  --color-ex_deep_blue: #001432;
}

@media screen and (max-width: 1024px) {
  /*幅1024pxの時に1文字10pxとなる値*/
  *:root {
    font-size: 1.24vw;
  }
}

@media screen and (max-width: 480px) {
  /*幅375pxの時に1文字10pxとなる値*/
  *:root {
    font-size: 2.6667vw;
    /* ---------- */
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
スムーズスクロール
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20.02rem;
  @media screen and (max-width: 1024px) {
    scroll-padding-top: 6.8rem;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
noscript
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

noscript {
  display: block;
  font-size: var(--fsize_m);
  padding: 1em;
  background-color: #ff0;
  text-align: center;
  line-height: 2;
  position: relative;
  z-index: 10000000;
  width: auto;
  color: #000;
  word-break: keep-all;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
テキスト設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/* タイトル */

h2.ui {
  text-align: center;
  color: var(--color-blue);
  &.white {
    color: #fff;
  }
  span {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-left: 0.05em;
    font-style: italic;
    @media screen and (max-width: 480px) {
      font-size: 2.6rem;
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
表示制御
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*PCで消す*/
.pc_hide {
  display: none;

  @media screen and (max-width: 480px) {
    display: block;
  }
}

/*SPで消す*/
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
リンク設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*リンク*/

a {
  text-decoration: none;
  transition: all 0.2s ease;
  text-decoration: none;

  &:visited {
  }

  &:hover {
    opacity: 0.8;
  }

  &:active {
    opacity: 0.5;
  }
}

/*PCでリンクを殺す*/
@media screen and (min-width: 481px) {
  a.disabled {
    &:hover,
    &:active {
      opacity: 1 !important;
    }
  }
  a.disabled {
    color: inherit;
    text-decoration: none;
    cursor: default;
  }

  /* 電話リンクを無効化する安全な方法 */
  a.disabled::after {
    content: "";
  }

  a.disabled[href^="tel:"] {
    /* 実際に通話リンクを殺す */
    pointer-events: auto; /* ← ここが重要！クリック自体は通す */
  }

  a.disabled[href^="tel:"]:active,
  a.disabled[href^="tel:"]:focus {
    /* PCでクリックしても通話を起動しないようにする */
    cursor: default;
  }
}

/*SPでリンクを殺す*/
@media screen and (max-width: 480px) {
  a.sp_disabled {
    pointer-events: none;

    &:hover,
    &:active {
      opacity: 1 !important;
    }
  }
}

/*--------------------*/
/* 丸ボタン */

.maru_button {
  display: block;
  background: #006baf;
  background: linear-gradient(90deg, rgba(0, 107, 175, 1) 0%, rgba(0, 72, 141, 1) 100%);
  color: #fff !important;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55em 0 0.65em;
  max-width: 27.2rem;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #fff;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.3);
  margin: auto;
  position: relative;

  &::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.861rem;
    height: 1.722rem;
    background-image: url(../img/common/icon-sankaku.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: 3.4rem;
    transform: translateY(-50%);
  }
  span {
    display: inline-block;
    letter-spacing: 0.11em;
    padding-left: 0.11em;
  }
  @media screen and (max-width: 480px) {
    max-width: 22rem;
    font-size: 1.6rem;
    &::after {
      width: 0.698rem;
      height: 1.4rem;
      right: 3rem;
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
画像
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

img {
  width: 100%;
  height: auto;

  &.ojf_cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }

  &.ojf_contain {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.ojf_cover_wrap {
  > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.ojf_contain_wrap {
  > img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ローディング画面
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease-out;
  .loader {
    position: relative;
    width: min(20%, 120px);
    aspect-ratio: 1/1;
    &::before {
      content: "";
      background-image: url(../img/common/logo_hiranuma-jp.svg);
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      display: block;
      position: absolute;
      top: calc(50% - 4px);
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      aspect-ratio: 1/1;
    }
    div.progress {
      position: absolute;
      bottom: 0;
      height: 4px;
      width: 100%;
      --c: no-repeat linear-gradient(#999 0 0);
      background: var(--c), var(--c), #ccc;
      background-size: 60% 100%;
      animation: l16 3s infinite;
    }
  }
}
@keyframes l16 {
  0% {
    background-position:
      -150% 0,
      -150% 0;
  }
  66% {
    background-position:
      250% 0,
      -150% 0;
  }
  100% {
    background-position:
      250% 0,
      250% 0;
  }
}

#loading-screen {
  &.fade-out {
    opacity: 0;
  }
}
#page_wrap {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  &.visible {
    opacity: 1;
  }
}
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページ設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

#page_wrap {
  /*--------------------*/
  /* ページ全体の幅 */
  overflow: hidden;
  min-width: 320px;
  /* header.cssの#headerの高さと連動 */
  padding-top: 18.02rem;

  @media screen and (max-width: 1024px) {
    /* header.cssの#headerの高さと連動 */
    padding-top: 6.8rem;
  }

  /*--------------------*/
  /* コンテンツ部分 */
  #contents_wrap {
    /*--------------------*/
    /* サイドバーあり */
    &.has_sidebar {
      display: flex;
      justify-content: space-between;

      @media screen and (max-width: 980px) {
        flex-direction: column;
      }

      #contents_area {
        width: calc(100% - 30rem - 2rem);

        @media screen and (max-width: 980px) {
          width: 100%;
        }
      }

      #sidar_area {
        width: 30rem;
        flex-shrink: 0;

        @media screen and (max-width: 980px) {
          width: 100%;
          margin-top: 2rem;
        }
      }
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
404
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
body.error404 {
  section.pagenotfound {
    h1 {
      font-size: 2.4rem;
      line-height: 2;
      text-align: center;
      margin: 2em 0;
      @media screen and (max-width: 480px) {
        font-size: 1.8rem;
      }
    }

    p {
      font-size: 1.6rem;
      line-height: 2;
      text-align: center;
      margin: 1em 0;
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
page_nav 
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.page_nav_wrap {
  margin: 7.8rem 0 0;

  @media screen and (max-width: 480px) {
    margin: 4rem 0 0;
  }

  ul.page_nav {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    @media screen and (max-width: 480px) {
      margin: 4rem 0 0;
      gap: 1rem;
    }

    li {
      max-width: 19.6rem;
      width: 28%;
      text-align: center;

      a {
        font-size: 1.8rem;
        display: block;
        background-color: #fff;
        border: 1px solid var(--color-blue);
        color: var(--color-blue);
        border-radius: 9999px;
        padding: 0.7em 1.7em 0.9em;
        box-sizing: border-box;
        @media screen and (max-width: 480px) {
          font-size: 1.2rem;
          padding: 0.7em 1em 0.9em;
        }
        span {
          display: block;
          position: relative;
          height: 100%;
        }
      }

      &.nav-previous,
      &.nav-next {
        a {
          background-color: var(--color-blue);
          color: #fff;
          span {
            &::after {
              content: "";
              display: block;
              height: 1em;
              width: auto;
              aspect-ratio: 10/19;
              background-image: url(../img/common/icon-sankaku.svg);
              background-size: contain;
              background-position: center center;
              background-repeat: no-repeat;
              position: absolute;
              top: 0.05em;
            }
          }
        }
      }
      &.nav-previous {
        a {
          span {
            text-align: right;
            &::after {
              left: 0;
              transform: scale(-1, 1);
            }
          }
        }
      }
      &.nav-next {
        a {
          span {
            text-align: left;
            &::after {
              right: 0;
            }
          }
        }
      }
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
.shop_link_list
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.shop_link_list {
  padding: 0 2rem;
  max-width: 79.8rem;
  margin: auto;

  h3 {
    background-color: var(--color-blue);
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    margin-bottom: 1.8rem;
    &:nth-of-type(2n) {
      background-color: var(--color-light_blue);
    }
    @media screen and (max-width: 480px) {
      font-size: 1.6rem;
      padding: 0.76rem 1.3rem;
      margin-bottom: 1rem;
    }
  }
  ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    @media screen and (max-width: 480px) {
      margin-bottom: 2.2rem;
    }
    li {
      line-height: 2;
      font-size: 2.6rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      margin: 0.13em 2em 0.13em 0;
      @media screen and (max-width: 480px) {
        font-size: 2.1rem;
        margin-right: 1.6em;
      }
      a {
        color: #000;
        span {
          position: relative;
          display: inline-block;
          text-decoration: underline;
          &::after {
            content: "";
            display: block;
            width: 1px;
            height: 1em;
            background-color: #000;
            position: absolute;
            right: -1em;
            top: 50%;
            transform: translateY(-50%);
          }
          @media screen and (max-width: 480px) {
            &::after {
              right: -0.8em;
            }
          }
        }
      }
      &:last-child {
        margin-right: 0;
        a {
          span {
            &::after {
              display: none;
            }
          }
        }
      }
    }
  }
}
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
固定ボタン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.fixed-cta {
  position: fixed;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;

  @media screen and (min-width: 481px) {
    right: 0;
    top: min(30vh, 38rem);
    transform: translateX(100%);
  }

  @media screen and (max-width: 480px) {
    transform: translateY(100%);
    bottom: 0;
    left: 0;
    width: 100%;
  }

  &.is-visible {
    opacity: 1;
    pointer-events: auto;

    @media screen and (min-width: 481px) {
      transform: translateX(0);
    }

    @media screen and (max-width: 480px) {
      transform: translateY(0);
    }
  }

  .fixed-cta__btn {
    display: block;
    position: relative;
    box-sizing: border-box;
    background: #e32934;
    border: 2px solid #fff800;
    display: flex;
    align-items: center;

    @media screen and (min-width: 481px) {
      border-right: none;
      flex-direction: column;
      gap: 1.4rem;
      width: 8.8rem;
      height: 35.4rem;
      border-radius: 4.4rem 0 0 4.4rem;
      padding: 1rem 0.6rem 1rem 1rem;
      .icon {
        width: 11.8rem;
        transform: translate(-20%, 0);
      }
      .text {
        width: 5.3rem;
      }
    }

    @media screen and (max-width: 480px) {
      gap: 0.7rem;
      width: 100%;
      height: 7.6rem;
      padding: 1.6rem 2rem;
      border-radius: 3.3rem 3.3rem 0 0;
      .icon {
        width: 4rem;
      }
      .text {
        width: 16.6rem;
      }
      p {
        font-size: 1.3rem;
        letter-spacing: 0.04em;
        font-weight: 900;
        line-height: 1.3;
        color: #fff;
        border-left: 2px solid #fff800;
        padding: 0.2rem 0 0.2rem 0.9rem;
      }
    }
  }
}

/* ===== スクロール判定用の番兵（見えなくてOK） ===== */
.sentinel {
  position: relative;
  height: 0;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
フリーダイヤルバナー
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.freedial_banner_wrap {
  width: 100%;
  h4 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    text-align: center;
    margin-bottom: 0.6em;
    @media screen and (max-width: 480px) {
      font-size: 1.8rem;
    }
  }
  .freedial_banner {
    width: 86.8rem;
    margin: auto;
    @media screen and (max-width: 480px) {
      max-width: 36.9rem;
      width: 98.4%;
      a {
        display: block;
      }
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
査定結果
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.result_outwrap {
  background-image: url(../img/top/bg-step.webp);
  background-size: cover;
  margin-bottom: 17.4rem;
  position: relative;
  @media screen and (max-width: 480px) {
    margin-bottom: 18rem;
  }
  section.result_wrap {
    padding: 14rem 2rem 3.4rem;
    @media screen and (max-width: 480px) {
      padding: 2rem 2rem 1rem;
    }
    &.call {
      padding-bottom: 11.6rem;
      @media screen and (max-width: 480px) {
        padding-bottom: 4.2rem;
      }
    }
    .result {
      background-color: #fff;
      border-radius: 9999px;
      max-width: 79.8rem;
      margin: auto;
      position: relative;
      padding: 6.2rem 0 4rem;
      @media screen and (max-width: 480px) {
        padding: 3rem 0 3rem;
        border-radius: 4rem;
      }

      h1 {
        position: absolute;
        width: 41.6rem;
        left: 50%;
        top: -7.2rem;
        transform: translate(-50%, 0);
        @media screen and (max-width: 480px) {
          position: static;
          width: 18.5rem;
          transform: none;
          margin: auto auto 2.6rem;
        }
      }
      .copy {
        font-size: 2.6rem;
        line-height: 1.5;
        letter-spacing: 0.05em;
        padding-left: 0.05em;
        font-weight: 900;
        text-align: center;
        margin-bottom: 1.8rem;
        @media screen and (max-width: 480px) {
          font-size: 1.8rem;
          letter-spacing: 0;
          padding-left: 0;
          line-height: 1.7;
          margin-bottom: 2.8rem;
        }
      }

      /* フリーダイアル ----------*/
      .freedial_wrap {
        display: flex;
        justify-content: center;
        gap: 2.2rem;
        margin-bottom: 2rem;
        @media screen and (max-width: 480px) {
          flex-direction: column;
          align-items: center;
          margin-bottom: 2.8rem;
        }
        h3 {
          display: none;
        }
        .freedial {
          width: 19.8rem;
          h5 {
            font-size: 1.4rem;
            font-weight: 900;
            letter-spacing: 0.02em;
            margin-bottom: 0.7rem;
          }
          .icon {
            display: inline-block;
            width: 3.6rem;
            vertical-align: middle;
            margin-right: 0.5rem;
            svg {
              fill: var(--color-blue);
            }
          }
          .number {
            display: inline-block;
            width: 15.3rem;
            vertical-align: middle;
          }
        }
      }
      .hours {
        font-size: 1.8rem;
        line-height: 1.5;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.08em;
        padding-left: 0.08em;
        @media screen and (max-width: 480px) {
          font-size: 1.6rem;
          span {
            display: none;
          }
        }
      }

      /* 金額あり */
      &.has-price {
        padding: 6rem 0;
        position: relative;
        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          width: 15.4rem;
          aspect-ratio: 154/233;
          background-image: url(../img/common/gekkeijyu-pc.svg);
          top: 50%;
          transform: translate(0, -50%);
          background-repeat: no-repeat;
          background-size: contain;
        }
        &::before {
          left: 3.4rem;
        }
        &::after {
          right: 3.4rem;
          transform: translate(0, -50%) scale(-1, 1);
        }
        @media screen and (max-width: 480px) {
          padding: 2rem 0;
          &::before,
          &::after {
            width: 7rem;

            top: 4.6rem;
            background-position: center;
          }
          &::before {
            left: 1rem;
            transform: translate(0);
          }
          &::after {
            right: 1rem;
            transform: translate(0) scale(-1, 1);
          }
        }
        .hk-result {
          .hk-amount {
            text-align: center;
            h3 {
              font-size: 2.4rem;
              letter-spacing: 0.11em;
              padding-left: 0.11em;
              font-weight: 900;
              margin-bottom: 0.6rem;
              @media screen and (max-width: 480px) {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
              }
            }
            .price {
              font-size: 9.8rem;
              @media screen and (max-width: 480px) {
                font-size: 5.6rem;
              }
              strong {
                font-weight: 900;
              }
              span {
                font-size: 0.5em;
                font-weight: 900;
                display: inline-block;
                vertical-align: middle;
                letter-spacing: 0.04em;
                @media screen and (max-width: 480px) {
                  font-size: 0.4em;
                }
                &.yen {
                  margin-left: 0.1em;
                }
              }
            }
          }
        }
        .anotation {
          margin: 2.8rem auto auto;
          width: 40rem;
          font-size: 1.2rem;
          font-weight: 400;
          line-height: 1.6;
          @media screen and (max-width: 480px) {
            line-height: 1.4;
            width: 80%;
            margin-top: 2rem;
          }
        }
      }
    }
    /* さらに */
    .more_wrap {
      max-width: 39.4rem;
      margin: 2.2rem auto 0;
      @media screen and (max-width: 480px) {
        max-width: 31.6rem;
        margin-top: 1.2rem;
      }
    }
  }
  section.chance_wrap {
    background-color: rgba(94, 206, 255, 0.5);
    padding: 11rem 2rem 22rem;
    position: relative;
    @media screen and (max-width: 480px) {
      padding-top: 7.2rem;
      padding-bottom: 15.6rem;
    }
    h2 {
      position: absolute;
      width: 54rem;
      left: 50%;
      top: -4.5rem;
      transform: translateX(-50%);
      z-index: 10;
      @media screen and (max-width: 480px) {
        width: 35.2rem;
        top: -1.6rem;
      }
      &.sarani {
        width: 66.8rem;
        @media screen and (max-width: 480px) {
          width: 26.7rem;
        }
      }
    }
    .plusup_wrap {
      max-width: 99.8rem;
      margin: auto;
      padding: 6.2rem 0 4.2rem;
      background-image: url(../img/top/bg-dot.svg);
      background-size: 2.4rem auto;
      position: relative;
      @media screen and (max-width: 480px) {
        padding-top: 8rem;
      }
      .anotation {
        margin: 2.8rem auto auto;
        max-width: 76.2rem;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.6;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
          max-width: 25.7rem;
          margin-top: 1.2rem;
        }
      }
      .yajirushi {
        position: absolute;
        filter: drop-shadow(0.6rem 0.6rem 0.4rem rgba(0, 0, 0, 0.3));
        width: 34.4rem;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 90%);
        @media screen and (max-width: 480px) {
          width: 24rem;
          transform: translate(-50%, 80%);
        }
      }

      /* プラス査定部分 */
      ul {
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        @media screen and (max-width: 480px) {
          display: block;
        }
        li {
          max-width: 30rem;
          width: 100%;
          position: relative;
          @media screen and (max-width: 480px) {
            max-width: 24.8rem;
            margin: auto;

            &:nth-child(n + 2) {
              margin-top: -5rem;
            }
          }
          img {
            position: relative;
          }
          &::after {
            content: "";
            display: block;
            background-image: url(../img/common/chance-plus.svg);
            background-repeat: no-repeat;
            background-size: contain;
            aspect-ratio: 1/1;
            position: absolute;
          }
        }
        &.result {
          li {
            padding-top: 6rem;

            &::after {
              top: 0;
              left: 50%;
              width: 7rem;
              transform: translateX(-50%);
            }
            @media screen and (max-width: 480px) {
              padding-top: 0;
              &::after {
                top: 7.8rem;
                left: -3.4rem;
                width: 6rem;
                transform: none;
              }
            }
          }
        }
        &.home {
          li {
            &::after {
              top: 17rem;
              left: 0;
              width: 4.8rem;
            }
            @media screen and (max-width: 1024px) {
              &::after {
                top: 13.6rem;
                left: 0;
                width: 3.8rem;
              }
            }
            &:nth-child(2),
            &:nth-child(3) {
              &::after {
                left: 2.2rem;
                top: 18.5rem;
              }
              @media screen and (max-width: 1024px) {
                &::after {
                  left: 1.6rem;
                  top: 13.4rem;
                }
              }
            }
            @media screen and (max-width: 480px) {
              &::after {
                top: 14.2rem;
                left: 0;
                width: 3.9rem;
              }
              &:nth-child(2),
              &:nth-child(3) {
                &::after {
                  left: 1.6rem;
                  top: 15.4rem;
                }
              }
            }
          }
        }
      }
    }
  }
  .freedial_banner_wrap {
    position: absolute;
    transform: translateY(-7.4rem);
    p.anotation {
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding-left: 0.04em;
      text-align: center;
      margin-top: 1rem;
      @media screen and (max-width: 480px) {
        font-size: 1rem;
        margin-top: 0.5rem;
      }
    }
  }
}
