* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --point-primary: #FABE02;
  --point-secondary: #FF8025;
  --point-third: #FFEAA8;
  --base-white: #fff;
  --base-defult: #2A2A27;
  --base-yellow: #FFFEEA;
  --line-green: #06C755;

  --sp-width: 768px;

  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.none {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--base-white);
}

.bgwrap {
  width: 100%;
  margin: 0 auto;
  background-color: var(--base-white);
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--point-primary);
  padding: 0 15px;

  .header_logo {
    margin: 0;
    padding: 0;
    font-size: 0;

    img {
      width: 80px;
      height: 70px;
      object-fit: contain;
    }
  }

  .header_right {
    position: relative;

    .header_tel_area {
      position: relative;
      color: var(--base-white);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 16px;
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 900;
      line-height: 130%;

      p {
        display: none;
      }

      .header_tel {
        text-decoration: none;
        color: var(--base-white);
      }

      .header_tel:before {
        position: absolute;
        left: -25px;
        top: 2px;
        content: '';
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url(../img/tel_icon.svg);
        background-size: contain;
        vertical-align: middle;
        line-height: 130%;
      }
    }

    .header_line {
      display: none;
    }
  }

}

@media (width > 768px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 0 0 40px;
    z-index: 1000;

    .header_logo {
      margin: 0;
      padding: 0;
      font-size: 0;

      img {
        width: 90px;
        height: 80px;
      }
    }

    .header_right {
      display: flex;
      height: 80px;
      align-items: stretch;
      gap: 8px;

      .header_tel_area {
        justify-content: center;
        align-items: center;
        p {
          display: block;
          font-size: 14px;
        }

        .header_tel {
          font-size: 24px;
        }
  
        .header_tel:before {
          top: 40px;
          left: -30px;
          width: 24px;
          height: 24px;
        }
      }


      .header_line {
        background-color: var(--line-green);
        display: flex;
        color: var(--base-white);
        align-items: center;
        padding: 0 40px 0 20px;
        gap: 8px;

        .line_logo {
          height: 70px;
          width: 70px;

          img {
            width: 100%;
            object-fit: cover;
          }
        }

        .line_cta {
          display: flex;
          flex-direction: column;
          align-items: center;
          font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
          font-weight: 600;
          font-size: 18px;


          a {
            display: flex;
            gap: 8px;
            background-color: var(--base-white);
            color: var(--line-green);
            text-decoration: none;
            /* font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
            font-weight: 900; */
            font-size: 24px;
            letter-spacing: 1px;
            padding: 2px 16px;
            border-radius: 8px;

            span {
              font-size: 18px;
            }

            img {
              font-size: 24px;
              width: 16px;
            }
          }
        }

      }
    }

  }
}

.nav_pc {
  display: none;
}

@media (width > 768px) {
  .nav_pc {
    display: block;
    margin: 90px 40px 0;

    ul {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap:8px;

      li {
        display: block;
        width: 24%;
        list-style: none;
        
        a {
          width: 100%;
          display: inline-block;
          text-decoration: none;
          text-align: center;
          color: var(--base-defult);
          font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
          font-weight: 900;
          font-size: 18px;
          letter-spacing: 0%;
          background-color: #F9F9F9;
          border: #2A2A2733 1px solid;
          padding: 8px 4px;
        }
      }
    }
  }
}

@media (width > 1439px) {
  .nav_pc {
    
    ul {
      flex-wrap: nowrap;
      
      li {
        
        a {
          font-size: 20px;
        }
      }
    }
  }
}


.first_view {
  width: 100%;
  overflow: hidden;
  margin-top: -1px;

  img {
    width: 101%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (width > 768px) {
  .first_view {
    margin: 10px 40px 80px;
    max-width: calc(100% - 80px);

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

.businesshour {
  margin: 30px 0 60px;

  .businesshour_feature {
    color: var(--point-secondary);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%;
    margin: 0 0 16px;
  }

  .businesshour_time {
    margin: 0 auto 8px;
    padding: 16px;
    width: fit-content;
    background-color: var(--point-primary);
    color: var(--base-white);
  }

  .businesshour_annotation {
    color: var(--base-defult);
    text-align: center;
    font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}

@media (width > 768px) {
  .businesshour {
    margin: 80px 0 120px;

    .businesshour_feature {
      font-size: 56px;
      line-height: 150%;
      margin: 0 0 32px;
    }

    .businesshour_time {
      margin: 0 auto 16px;
      padding: 16px 32px;
      font-size: 24px;
    }

    .businesshour_annotation {
      font-size: 18px;
    }
  }
}

.fivestep {
  background-color: var(--base-yellow);
  text-align: center;
  padding: 0 0 80px;

  .truble_img {
    display: flex;
    justify-content: center;
    margin: 10px 16px 0;

    img {
      width: 100%;
      max-width: 400px;
    }
  }

  .presentence {
    margin-top: 20px;
    color: var(--base-defult);
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
  }

  .appeal {
    margin-top: 12px;
    color: var(--base-defult);
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 200%;

    span {
      display: inline-block;
      margin: 0 10px 0;
      color: var(--point-secondary);
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 64px;
      font-style: normal;
      vertical-align: middle;
    }
  }

  .steplist {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px auto 0;
    width: calc(100% - 16px * 2);
    max-width: calc(500px - 32px);

    .stepitem {
      list-style: none;
      position: relative;
      padding: 10px 20px;
      gap: 8px;
      border-radius: 30px;
      background-color: var(--point-secondary);
      color: var(--base-white);
      font-family: "Noto Sans", sans-serif;
      ;
      font-size: 20px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
      letter-spacing: 2px;

      span {
        display: inline-block;
      }

      span:after {
        content: "";
        display: block;
        background-color: var(--base-white);
        border-radius: 2px;
        height: 4px;
      }

      div {
        width: fit-content;
        margin: 0 auto;
      }

      p {
        width: fit-content;
        margin-top: 8px;
        text-align: left;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
      }
    }

    .stepitem:after {
      position: absolute;
      content: url(/img/steplist_arrow.svg);
      bottom: -30px;
      left: 50%;
      transform: translate(-50%, 0);
    }

    .stepitem:last-of-type:after {
      display: none;
    }
  }
}

@media (450px < width) {
  .fivestep {
    max-width: clac(450px - 16px * 2);
  }
}

@media (width > 1023px) {
  .fivestep {
    padding: 40px 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    .truble_img {
      display: flex;
      justify-content: center;
      margin: 0 16px;

      img {
        width: 100%;
        max-width: 400px;
      }
    }

    .presentence {
      margin-top: 20px;
      font-size: 20px;
    }

    .appeal {
      margin-top: 20px;
      font-size: 32px;

      span {
        margin: 0 10px 0;
        font-size: 72px;
      }
    }

    .steplist {
      gap: 40px;
      margin: 0;
      width: 450px;

      .stepitem {
        padding: 15px 25px;
        gap: 12px;
        border-radius: 40px;
        font-size: 24px;

        span:after {
          border-radius: 2px;
          height: 4px;
        }

        p {
          width: fit-content;
          margin-top: 8px;
          text-align: left;
          font-size: 16px;
        }
      }

      .stepitem:after {
        position: absolute;
        content: url(/img/steplist_arrow.svg);
        bottom: -30px;
        left: 50%;
        transform: translate(-50%, 0);
      }

      .stepitem:last-of-type:after {
        display: none;
      }
    }
  }
}

.features {
  padding: 20px 0 60px;

  .sentence {
    color: var(--base-defult);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;

    .upperpoint {
      position: relative;
    }

    .upperpoint::before {
      position: absolute;
      content: "";
      width: 8px;
      height: 8px;
      background-color: var(--point-secondary);
      border-radius: 4px;
      top: -12px;
      left: 50%;
      transform: translate(-50%, 0);
    }

    .underline {
      display: inline-block;
    }

    .underline:after {
      content: "";
      display: block;
      background-color: var(--point-primary);
      border-radius: 2px;
      height: 4px;
    }

    .smalltext {
      font-size: 20px;
      font-style: normal;
      font-weight: 900;
      line-height: 150%;
      letter-spacing: 1px;
    }
  }

  .supplement {
    margin-top: 15px;
    color: var(--point-secondary);
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 1.44px;

    .bigtext {
      font-size: 22px;
      letter-spacing: 1.98px;
    }
  }

  .trublelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 5px;
    background-color: var(--base-yellow);
    border-radius: 30px;
    margin: 20px 0 60px;
    width: 90%;
    margin: 20px auto 40px;
    max-width: 500px;
    border-radius: 30px;

    .trubleitem {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 150%;
      margin-bottom: 15px;
      /* 24px */

      img {
        width: 70%;
        max-height: 70px;
        margin-bottom: 5px;
      }
    }
  }

  .repairplace {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;

    li {
      width: 40%;
      list-style: none;
      text-align: center;
      display: flex;
      padding: 5px 15px;
      justify-content: center;
      align-items: center;
      background-color: var(--point-third);
      border-radius: 10px;
      margin-bottom: 5px;
      font-family: "Noto Sans", sans-serif;
      ;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }
}

@media (width > 768px) {
  .features {
    padding: 80px 0 120px;

    .sentence {
      font-size: 48px;

      .upperpoint::before {
        width: 12px;
        height: 12px;
        border-radius: 6px;
        top: -18px;
      }

      .underline {
        display: inline-block;
      }

      .underline:after {
        margin-top: -6px;
      }

      .smalltext {
        font-size: 26px;
      }
    }

    .supplement {
      margin-top: 30px;
      font-size: 18px;
      line-height: 180%;

      .bigtext {
        font-size: 26px;
      }
    }

    .trublelist {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-around;
      padding: 20px 0 5px;
      border-radius: 30px;
      margin: 40px auto 60px;
      width: 730px;
      max-width: none;

      .trubleitem {
        width: 24%;
        font-size: 18px;

        img {
          width: 70%;
          max-height: 70px;
          margin-bottom: 10px;
        }
      }
    }

    .repairplace {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      margin: 20px auto;
      gap: 10px;
      max-width: 730px;

      li {
        width: 24%;
        padding: 10px 15px;
        border-radius: 10px;
        margin-bottom: 5px;
        font-size: 24px;
      }
    }
  }
}

.area {
  padding: 0 0 60px;

  h2 {
    color: var(--base-white);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    background-color: var(--point-secondary);
    padding: 10px;
  }

  .cityname {
    display: flex;
    justify-content: center;
    color: var(--base-defult);
    margin: 20px auto 0;
    font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
  }

  .areamap {
    margin: 0 auto;
    max-width: 500px;

    img {
      width: 100%;
    }
  }
}

@media (width > 768px) {
  .area {
    padding: 0 0 60px;
  
    h2 {
      font-size: 28px;
      padding: 20px;
    }

    .areawrap {
      display: flex;
      flex-direction: row-reverse;
      justify-content: center;
      margin: 30px auto 0;
    }
  
    .cityname {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px 0 0;
      font-size: 16px;
    }
  
    .areamap {
      margin: 0;
      width: calc(100% / 2);
      max-width: 500px;
  
      img {
        width: 100%;
      }
    }
  }
}

.customervoice {
  background-color: var(--point-primary);
  padding: 50px 0 80px;

  .presentence {
    display: flex;
    justify-content: center;
    gap: 8px;

    p {
      color: var(--base-white);
      text-align: center;
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 900;
      line-height: 130%;
      letter-spacing: 2px;

      span {
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: 130%;
      }
    }

    img {
      width: 21%;
      max-width: 85px;
      height: auto;
      object-fit: contain;
    }
  }

  .voicelist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0;

    .voiceitem {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;

      img {
        width: 15%;
        max-width: 75px;
      }

      p {
        display: flex;
        justify-content: center;
        width: 70%;
        background-color: var(--base-white);
        color: var(--base-defult);
        text-align: center;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        padding: 10px 20px;
        border-radius: 500px;
        box-shadow: 2px 3px 6.5px 0 rgba(42, 42, 39, 0.29);
      }
    }
  }
}

@media (width > 768px) {
  .customervoice {
    padding: 80px 0 120px;

    .presentence {
      gap: 32px;

      p {
        font-size: 26px;
        line-height: 140%;
        letter-spacing: 4px;

        span {
          font-size: 48px;
        }
      }

      img {
        max-width: 120px;
      }
    }

  }
}

@media (width > 1023px) {
  .customervoice {
    .voicelist {
      flex-direction: row;
      justify-content: center;
      gap: 30px;
      margin: 40px 0 0;

      .voiceitem {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 0;

        img {
          width: 80px;
          max-width: none;
        }

        p {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 300px;
          height: 100px;
          font-size: 16px;
          padding: 10px 20px;
          border-radius: 500px;
        }
      }
    }
  }
}

.qa {
  h2 {
    display: flex;
    background-color: var(--base-yellow);
    padding: 20px 0;
    justify-content: center;
    color: var(--point-secondary);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
  }

  .qalist {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    width: calc(100% - 16px * 2);
    max-width: calc(500px - 32px);

    .qaitem {
      width: 100%;

      .question {
        display: flex;
        color: var(--point-secondary);
        font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
        font-style: normal;
        font-weight: 900;
        line-height: 130%;
        margin-bottom: 16px;

        div {
          width: 20px;
          font-size: 20px;
          margin-right: 8px;
        }

        p {
          position: relative;
          width: 90%;
          font-size: 16px;
          /* border-bottom: var(--point-secondary) 2px solid; */
        }

        p:after {
          position: absolute;
          bottom: -8px;
          left: 0;
          content: "";
          width: 100%;
          height: 2px;
          background-color: var(--point-secondary);
          border-radius: 1px;
        }
      }

      .answer {
        display: flex;
        color: var(--base-defult);
        font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 16px;

        div {
          width: 20px;
          font-size: 16px;
          margin-right: 8px;
        }

        p {
          position: relative;
          width: 90%;
          font-size: 15px;
        }

      }
    }
  }
}

@media (width > 768px) {
  .qa {
    h2 {
      padding: 30px 0;
      font-size: 28px;
    }

    .qalist {
      gap: 30px;
      margin: 40px auto;
      width: 600px;

      .qaitem {
        width: 100%;

        .question {
          margin-bottom: 24px;

          div {
            width: 24px;
            font-size: 24px;
            margin-right: 8px;
          }

          p {
            width: 88%;
            font-size: 20px;
          }

          p:after {
            bottom: -12px;
            height: 3px;
            border-radius: 2px;
          }
        }

        .answer {
          margin-bottom: 24px;

          div {
            width: 24px;
            font-size: 22px;
            margin-right: 8px;
          }

          p {
            font-size: 18px;
          }
        }
      }
    }
  }
}

.payment {
  .title {
    background-color: var(--base-yellow);
    padding: 30px 0;
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;

    h2 {
      color: var(--base-defult);
      font-size: 32px;
    }

    p {
      color: var(--point-secondary);
      font-size: 22px;
      letter-spacing: 1.98px;
    }
  }

  .img {
    text-align: center;
    margin: 0 auto 40px;

    img {
      width: 100%;
      height: auto;
      max-width: 500px;
      object-fit: cover;
    }
  }
}

@media (width > 768px) {
  .payment {
    .title {
      padding: 40px 0;
      gap: 24px;

      h2 {
        font-size: 38px;
      }

      p {
        font-size: 24px;
        letter-spacing: 1.98px;
      }
    }

    .img {
      text-align: center;
      margin: 30px auto 60px;

      img {
        width: 96%;
        height: auto;
        max-width: 800px;
        object-fit: cover;
      }
    }
  }
}

.merit {
  .title {
    background-color: var(--point-primary);
    padding: 20px 0;
    color: var(--base-white);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;

    div {
      font-size: 22px;
    }

    h2 {
      margin-top: 10px;
      font-size: 32px;
      letter-spacing: 3.2px;

      span {
        display: inline-block;
        margin-right: 15px;
        font-size: 64px;
        letter-spacing: -6.4px;
      }
    }
  }

  .meritlist {
    width: 100%;
    margin: 0;
    padding: 0;
    counter-reset: number 0;

    .merititem {
      position: relative;
      padding: 50px 16px;

      h3 {
        color: var(--point-secondary);
        text-align: center;
        font-size: 16px;
        font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
        font-style: normal;
        font-weight: 900;
        line-height: 130%;
        letter-spacing: 1.12px;
        margin-bottom: 10px;

        span {
          font-size: 22px;
          letter-spacing: 1.54px;
        }
      }

      p {
        color: var(--base-defult);
        text-align: center;
        font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
      }
    }

    .merititem:nth-of-type(odd) {
      background-color: var(--base-yellow);
    }

    .merititem:after {
      position: absolute;
      counter-increment: number 1;
      content: counter(number);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: rgba(250, 190, 2, 0.15);
      text-align: center;
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 160px;
      font-style: normal;
      font-weight: 900;
      line-height: 150%;
    }
  }

  .pc-br {
    display: none;
  }
}

@media (width > 1023px) {
  .merit {
    .title {
      padding: 40px 0;

      div {
        font-size: 24px;
      }

      h2 {
        margin-top: 10px;
        font-size: 38px;

        span {
          margin-right: 20px;
          font-size: 80px;
        }
      }
    }

    .meritlist {
      display: flex;
      width: 100%;

      .merititem {
        position: relative;
        width: calc(100% / 3);
        height: 360px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;

        h3 {
          font-size: 18px;
          margin-bottom: 16px;
          line-height: 1.3;

          span {
            font-size: 26px;
            letter-spacing: 1.54px;
          }
        }

        p {
          font-size: 16px;
          line-height: 150%;
        }
      }

      .merititem:nth-of-type(odd) {
        background-color: var(--base-yellow);
      }

      .merititem:after {
        position: absolute;
        counter-increment: number 1;
        content: counter(number);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: rgba(250, 190, 2, 0.15);
        text-align: center;
        font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
        font-size: 260px;
        font-style: normal;
        font-weight: 900;
        line-height: 150%;
      }
    }

    .pc-br {
      display: inline;
    }
  }
}

.staff {
  padding: 30px 0;

  .title {
    display: flex;
    flex-direction: column;
    padding: 30px 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;

    p {
      color: var(--point-secondary);
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 24px;
      font-style: normal;
      font-weight: 900;
      line-height: 130%;
      letter-spacing: 2.4px;
      text-align: center;
    }

    .bgtext {
      font-size: 32px;
      letter-spacing: 3.2px;
    }

    .balloon {
      display: inline-block;
      width: fit-content;
      position: relative;
      top: 10px;
      left: 10px;
      padding: 10px;
      margin-bottom: 30px;
      line-height: 40px;
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 15px;
      font-weight: bold;
      text-align: center;
      color: white;
      background-color: var(--point-primary);
      border-radius: 50%;
    }

    .balloon:after {
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      left: calc(50% - 11px);
      top: 40px;
      border-right: 22px solid var(--point-primary);
      border-top: 22px solid transparent;
      border-bottom: 22px solid transparent;
      transform: rotate(-90deg);
    }

  }

  .stafflist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    .staffitem {
      position: relative;
      z-index: 0;

      img {
        width: 100%;
        margin-bottom: -5px;
        z-index: 1;
      }

      .stafflabel {
        position: relative;
        width: 90%;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 2px 3px 6.5px 0 rgba(42, 42, 39, 0.29);
        text-align: center;
        z-index: 10;

        .staffname {
          color: var(--base-white);
          font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 900;
          line-height: 130%;
          border-radius: 10px 10px 0 0;
          background: var(--point-primary);
          padding: 4px 0;
        }

        .staffinfo {
          padding: 10px 15px;
          border-radius: 0 0 10px 10px;
          color: var(--base-defult);
          background-color: var(--base-white);
          font-family: "Toppan Bunkyu Gothic", "Shin Go Regular", sans-serif;
          font-size: 13px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
        }
      }
    }

    .staffitem:after {
      position: absolute;
      display: inline-block;
      content: "";
      background-image: url(/img/staff-bg.svg);
      background-size: contain;
      width: 60%;
      aspect-ratio: 1/1;
      z-index: -1;
    }

    .staffitem:nth-of-type(1):after {
      top: 30px;
      right: 50px;
    }

    .staffitem:nth-of-type(2):after {
      top: 20px;
      left: 0;
    }

    .staffitem:nth-of-type(3):after {
      top: 0;
      right: 10px;
    }

    .staffitem:nth-of-type(4):after {
      bottom: 0;
      left: 10px;
    }
  }
}

@media (width > 768px) {
  .staff {
    padding: 60px 0;

    .title {
      display: flex;
      flex-direction: column;
      padding: 30px 0 20px;
      margin: 0 auto;
      width: 100%;
      max-width: 550px;

      p {
        font-size: 40px;
        line-height: 1.3;
      }

      .bgtext {
        font-size: 64px;
        letter-spacing: 3.2px;
      }

      .balloon {
        top: 10px;
        left: 10px;
        padding: 15px;
        margin-bottom: 30px;
        line-height: 40px;
        font-size: 28px;
      }

      .balloon:after {
        top: 50px;
      }

    }

    .stafflist {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1024px;
      margin: 0 auto;

      .staffitem {
        position: relative;
        width: 48%;
        z-index: 0;

        img {
          width: 100%;
          margin-bottom: -5px;
          z-index: 1;
        }

        .stafflabel {

          .staffname {
            font-size: 22px;
            padding: 6px 0;
          }

          .staffinfo {
            padding: 15px 10px;
          }
        }
      }

    }
  }
}

.pv {
  padding: 60px 0 140px;

  p {
    color: var(--base-defult);
    text-align: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
  }

  .video {
    margin: 30px auto 0;
    width: 98%;
    max-width: 560px;
  }

  iframe {
    width: 100%;
    aspect-ratio: 560 / 315;
  }
}

@media (width > 768px) {
  .pv {
    padding: 60px 0 140px;

    p {
      font-size: 42px;
    }

    .video {
      margin: 60px auto 0;
      width: 98%;
      max-width: 832px;
    }

  }
}

.copy {
  background-color: var(--point-primary);
  color: var(--base-white);
  padding: 10px 0 95px;

  div {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10 auto;
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 18px;
  }
}

@media (width > 768px) {
  .copy {
    padding: 10px 0;
  }
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: var(--sp-width);
  display: flex;

  a {
    text-decoration: none;
  }

  .tel {
    background-color: var(--point-primary);
    width: 85px;
    height: 85px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    span {
      display: block;
      color: var(--base-defult);
      font-family: "Noto Sans", sans-serif;
      ;
      font-size: 10px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
    }
  }

  .line {
    background-color: var(--line-green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 85px);
    color: var(--base-white);

    div {
      position: relative;
      font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 900;
      line-height: 130%;

      span {
        position: absolute;
        top: -14px;
        left: -16px;
        font-family: "Noto Sans", sans-serif;
        font-size: 10px;
        line-height: normal;
      }
    }

    .balloon {
      display: inline-block;
      width: fit-content;
      position: relative;
      font-family: "Noto Sans", sans-serif;
      width: 50px;
      height: 50px;
      text-align: center;
      font-size: 10px;
      font-style: normal;
      font-weight: 900;
      line-height: 50px;
      color: var(--base-white);
      background-color: var(--point-primary);
      border-radius: 50%;
      margin-left: 20px;
      margin-bottom: 10px;

      span {
        position: static;
        display: inline-block;
        font-size: 14px;
        padding: 0 2px;
      }
    }

    .balloon:after {
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      left: -10px;
      bottom: 16px;
      border-right: 12px solid var(--point-primary);
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      transform: rotate(-15deg);
    }
  }
}

@media (width > 768px) {
  footer {
    display: none;
  }
}

.pc_sideline {
  display: none;
}

@media (width > 768px) {
  .pc_sideline {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: var(--base-yellow);
    padding: 30px 20px;
    width: 400px;
    border-radius: 20px 0 0 20px;
    text-align: center;
    color: var(--base-defult);
    font-family: "Toppan Bunkyu Midashi Gothic", "Midashi Go MB31", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    opacity: 1;
    transition: all 0.3s;
    
    .text {
      margin-bottom: 30px;
    }
    
    .tablink {
      a {
        display: inline-block;
        text-decoration: none;
        padding: 5px 20px;
        background-color: var(--line-green);
        color: var(--base-white);
        border-radius: 20px;
        margin: 10px 0 30px;
        font-family: "Noto Sans", sans-serif;
        font-size: 16px;
        letter-spacing: 1.5px;
      }
    }
    
    .pcqr {
      p {
        span {
          font-family: "Noto Sans", sans-serif;
          font-size: 10px;
          line-height: 100%;
        }
      }
      img {
        width: 100px;
      }
    }

  }

  .pc_sideline:hover {
    opacity: 1.0;
  }
}