:root {
  --color1: #fd9300;
  --color2: #1b549d;

  /* グラデーション */
  --grad: linear-gradient(270deg, rgba(55, 184, 159, 1), rgba(27, 84, 157, 1));
  /* ボーダー */
  --border1: 1px solid #1b549d;
  /* トランジション */
  --trans: all 0.2s;
  /* シャドー */
  --shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  --filter_grad: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.05));
  /* 角丸 */
  --border-r: 40px;

  /* フォント */
  --en: "Rubik", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {
  :root {
    --border-r: 20px;
  }
}

/*------------------------------------------------------------------------------------------

共通項目

------------------------------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #242424;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.5;
  background-color: #fff;
}

.flex {
  display: flex;
}

a {
  width: fit-content;
}

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

/*------------------------------------------------------------------------------------------

レイアウト

------------------------------------------------------------------------------------------*/

section {
  padding: 120px 0;
  @media (max-width: 767px) {
    padding: 60px 0;
  }
}

.border_bottom {
  border-bottom: 1px solid #f2f0c4;
}

.inner1 {
  width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 1300px) {
    width: 90vw;
  }
}
.inner2 {
  width: min(calc(100% - 40px), 1436px);
  margin-left: auto;
  margin-right: auto;
}

/* ctaボタン */
.cta_box {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: var(--border-r);
  width: min(90vw, 1280px);
  .cta_title {
    font-size: min(36px, 3.5vw);
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    word-break: auto-phrase;
  }
  .grid_2c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px min(40px, 2vw);
    .cta_btn {
      background-color: #39a893;
      padding: 30px;
      border-radius: var(--border-r);
      display: grid;
      place-items: center;
      width: 100%;
      box-shadow: var(--shadow);
      transition: var(--trans);
      p {
        color: #fff;
        font-size: min(20px, 1.5vw);
        font-weight: 700;
      }
      .tel_num {
        font-size: min(53px, 3.5vw);
        font-weight: 700;
        display: flex;
        align-items: center;
        line-height: 1.25;
      }
      .tel_num::before {
        content: "";
        background-image: url(../img/tel-icon-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: 3px;
      }
      .cta_note {
        font-size: 16px;
        font-weight: 500;
      }
    }
    .cta_btn._o {
      background-color: var(--color1);
      span {
        word-break: auto-phrase;
        color: #fff;
        font-size: min(30px, 2.5vw);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
        text-wrap: wrap;
      }
      span::before {
        content: "";
        background-image: url(../img/mail-icon-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 1.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: 2px;
      }
    }
    .cta_btn:hover {
      opacity: 0.8;
    }
  }
}

@media (max-width: 767px) {
  .cta_box {
    padding: 20px;
    .cta_title {
      margin-bottom: 20px;
      font-size: 20px;
      text-wrap: nowrap;
    }
    .grid_2c {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
      .cta_btn {
        padding: 15px;
        p {
          font-size: 14px;
        }
        .tel_num {
          font-size: 28px;
        }
        .cta_note {
          font-size: 12px;
        }
      }
      .cta_btn._o {
        height: 100px;
        span {
          font-size: 16px;
          gap: 5px;
        }
      }
    }
  }
}
/* 2カラム */
.flex_2c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(100px, 5vw);
  margin-bottom: 60px;
  .text_area {
    width: min(600px, 50%);
    .num {
      font-size: 30px;
    }
    .title {
      font-size: min(36px, 4vw);
      font-weight: 900;
      margin-bottom: 30px;
    }
    .desc {
      font-weight: 700;
    }
  }
  .img_area {
    width: min(500px, 42%);
    height: auto;
    aspect-ratio: 500 / 314;
    img {
      border-radius: var(--border-r);
    }
  }
}
@media (max-width: 767px) {
  .flex_2c {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    .text_area {
      width: 100%;
      order: 1;
      .num {
        font-size: 20px;
      }
      .title {
        font-size: 24px;
        margin-bottom: 15px;
      }
    }
    .img_area {
      width: 100%;
      order: 2;
    }
  }
}

.price_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  span {
    background-color: #242424;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 100px;
  }
  p {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--en);
    color: #bf3d35;
    line-height: 1.25;
    span {
      color: #bf3d35;
      font-size: 20px;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      background-color: transparent;
      padding: 0;
    }
  }
}
@media (max-width: 767px) {
  .price_area {
    span {
      font-size: 12px;
    }
    p {
      font-size: 30px;
      span {
        font-size: 16px;
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

margin

------------------------------------------------------------------------------------------*/

.pb160 {
  padding-bottom: 160px;
}
.pb120 {
  padding-bottom: 120px;
}
.pb0 {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .pb160 {
    padding-bottom: 100px;
  }
  .pb120 {
    padding-bottom: 60px;
  }
}
.pt120 {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .pt120 {
    padding-top: 60px;
  }
}
.mb160 {
  margin-bottom: 160px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .mb160 {
    margin-bottom: 80px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .mb20 {
    margin-bottom: 10px;
  }
  .mb10 {
    margin-bottom: 5px;
  }
}

.sec_title_area {
  display: flex;
}
.sub_title {
  background-image: var(--grad);
  border-radius: 100px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 767px) {
    font-size: 16px;
    padding: 8px 15px;
  }
}

.sec_title {
  font-weight: 900;
  font-size: min(3.5vw, 42px);
  @media (max-width: 767px) {
    font-size: 30px;
  }
}

.desc {
  font-size: 16px;
  line-height: 2;
  @media (max-width: 960px) {
    font-size: 14px;
  }
}

.t_center {
  text-align: center;
}
.t_right {
  text-align: right;
}

.num {
  font-family: var(--en);
  font-weight: 700;
}

.tc_b {
  color: var(--color2);
}

.tc_o {
  color: var(--color1);
}

.tc_r {
  color: #bf3d35;
}

.marker_o {
  background-color: var(--color1);
}
.marker_y {
  background-color: #ffe97a;
}

.bg_img_g {
  background-image: url(../img/bg-img-g.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.bg_img_g2 {
  background-image: url(../img/bg-img-g2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg_img_g3 {
  background-image: url(../img/bg-img-g3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.cta_bg_img {
  background-image: url(../img/cta-bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.under_top_img {
  background-image: url(../img/under-top-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg_img_kujo {
  background-image: url(../img/bg-img-kujo1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*------------------------------------------------------------------------------------------

ボタン

------------------------------------------------------------------------------------------*/

.btn {
  background-color: #fff;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: min(40px, 4vw);
  font-size: 16px;
  font-weight: 700;
  transition: var(--trans);
  box-shadow: var(--shadow);
  @media (max-width: 767px) {
    padding: 10px 15px;
    font-size: 14px;
  }
  svg {
    circle,
    path {
      transition: var(--trans);
    }
  }
}
.btn:hover {
  background-color: #e6efef;
  svg {
    circle {
      fill: #fff;
    }
    path {
      stroke: #37b89f;
    }
  }
}
.btn._blue {
  background-color: var(--color2);
  border: 2px solid var(--color2);
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  transition: var(--trans);
  svg {
    @media (max-width: 767px) {
      width: 28px;
      height: 28px;
    }
  }
}
.btn._blue:hover {
  background-color: #fff;
  color: var(--color2);
  svg {
    circle {
      fill: var(--color2);
    }
    path {
      stroke: #fff;
    }
  }
}

.under_line {
  text-decoration: underline;
  transition: var(--trans);
}
.under_line:hover {
  opacity: 0.7;
}

.to_top_btn {
  display: block;
  position: fixed;
  z-index: 800;
  bottom: 30px;
  right: 2.5vw;
  width: 47px;
  height: 47px;
  filter: var(--filter_grad);
  @media (max-width: 767px) {
    font-size: 12px;
  }
}

.to_archive_btn {
  display: block;
  margin-left: auto;
  font-size: 14px;
  color: #8b8b8b;
  @media (max-width: 767px) {
    width: 35px;
    height: 35px;
  }
}

/* モバイル改行 */

.sp {
  display: none;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

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

/*------------------------------------------------------------------------------------------

ヘッダー

------------------------------------------------------------------------------------------*/

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 800;
  background-color: #fff;

  .header {
    /* ヘッダー上段 */
    .header_top_area {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 2.5vw;
      @media (max-width: 900px) {
        height: 60px;
      }
      h1 {
        width: min(138px, 10vw);
        height: auto;
        aspect-ratio: 138 / 54;
        margin-right: 18px;
        @media (max-width: 767px) {
          width: 103px;
        }
        span {
          position: absolute;
          top: 0;
          left: 0;
          font-size: 1px;
          opacity: 0;
          z-index: -999;
        }
      }
      .header_sub_title {
        background-color: #e7f5f3;
        border-radius: 1000px;
        padding: 9px 20px;
        @media (max-width: 900px) {
          display: none;
        }
        p:nth-child(1) {
          font-size: 12px;
          font-weight: 700;
          margin-bottom: 2px;
        }
        p:nth-child(2) {
          font-size: 15px;
          font-weight: 900;
          color: var(--color2);
          span {
            display: inline-block;
            margin-left: 5px;
            font-size: 10px;
            font-weight: 700;
            color: #84b1a8;
          }
        }
        @media (max-width: 960px) {
          p:nth-child(1) {
            font-size: 10px;
            margin-bottom: 1px;
          }
          p:nth-child(2) {
            font-size: 13px;
            span {
              font-size: 8px;
              margin-left: 3px;
            }
          }
        }
      }
      .spacer {
        flex: 1;
      }
      .contact_area {
        display: flex;
        align-items: center;
        gap: min(30px, 2vw);
        @media (max-width: 900px) {
          display: none;
        }
        .h_tel_btn {
          display: flex;
          flex-direction: column;
          gap: 1px;
          transition: var(--trans);
          span {
            font-size: 14px;
          }
          .tel_num {
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: var(--en);
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
          }
          .tel_num::before {
            content: "";
            background-image: url(../img/tel-icon-b.svg);
            background-repeat: no-repeat;
            background-size: contain;
            width: 0.8em;
            height: auto;
            aspect-ratio: 1 / 1;
          }
        }
        .h_tel_btn:hover {
          opacity: 0.7;
        }
        .h_btn {
          background-color: var(--color1);
          height: 57px;
          width: 170px;
          display: grid;
          place-items: center;
          border-radius: 1000px;
          transition: var(--trans);
          span {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
          }
          span::before {
            content: "";
            background-image: url(../img/mail-icon-w.svg);
            background-repeat: no-repeat;
            background-size: contain;
            width: 1.4em;
            height: auto;
            aspect-ratio: 1 / 1;
            margin-top: 2px;
          }
        }
        .h_btn:hover {
          opacity: 0.7;
        }

        @media (max-width: 960px) {
          .h_tel_btn {
            span {
              font-size: 12px;
            }
            .tel_num {
              gap: 3px;
              font-size: 26px;
            }
          }
          .h_btn {
            height: 50px;
            width: 150px;
            span {
              gap: 3px;
              font-size: 14px;
            }
            span::before {
              margin-top: 1px;
            }
          }
        }
      }
    }
    /* ヘッダー下段 */
    .header_nav_area {
      background-color: #f3f7f7;
      @media (max-width: 900px) {
        display: none;
      }
      nav {
        margin-left: auto;
        margin-right: auto;
        width: 95vw;
        display: flex;
        .nav_menu {
          height: 58px;
          flex: 1;
          display: grid;
          place-items: center;
          border-left: 1px solid #e6e6e6;
          transition: var(--trans);
          span.nav_title {
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            @media (max-width: 960px) {
              font-size: 13px;
            }
          }
          span.nav_title::before {
            content: "";
            background-image: url(../img/h-icon-menu.svg);
            background-repeat: no-repeat;
            background-size: contain;
            width: 1.5em;
            height: auto;
            aspect-ratio: 1 / 1;
          }
        }
        .nav_menu:hover {
          background-color: #e6efef;
        }
        .nav_menu:nth-child(2) span.nav_title::before {
          background-image: url(../img/h-icon-faq.svg);
        }
        .nav_menu:nth-child(3) span.nav_title::before {
          background-image: url(../img/h-icon-company.svg);
        }
        .nav_menu:nth-child(4) span.nav_title::before {
          background-image: url(../img/h-icon-works.svg);
        }
        .nav_menu:nth-child(5) span.nav_title::before {
          background-image: url(../img/h-icon-voice.svg);
        }

        .nav_menu:last-child {
          border-right: 1px solid #e6e6e6;
        }
        .nav_open {
          position: relative;
          cursor: pointer;
          .under_nav_menu {
            transition: var(--trans);
            width: 100%;
            position: absolute;
            top: 58px;
            left: 0;
            opacity: 0;
            visibility: hidden;
            .nav_menu {
              width: 100%;
              border-left: 0;
              border-right: 0;
              border-bottom: 1px solid #e6e6e6;
              background-color: #f3f7f7;
              padding: 18px 20px 18px 30px;
              height: 58px;
              span {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 15px;
                font-weight: 700;
                svg {
                  width: 1.4em;
                  height: auto;
                  aspect-ratio: 1 / 1;
                }
              }
            }
            .nav_menu:hover {
              background-color: #e6efef;
              span {
                svg {
                  circle {
                    fill: #fff;
                  }
                  path {
                    stroke: #37b89f;
                  }
                }
              }
            }
            .nav_menu:first-child {
              border-top: 1px solid #e6e6e6;
            }
          }
        }
        .nav_open:hover {
          .under_nav_menu {
            position: absolute;
            top: 58px;
            left: 0;
            opacity: 1;
            visibility: visible;
          }
        }
      }
    }
  }
}

#hamburger-menu-btn {
  display: none;
  cursor: pointer;
  z-index: 900;
  @media (max-width: 900px) {
    display: block;
  }

  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 42px;
    width: 42px;
    border-radius: 1000px;
    position: relative;
    z-index: 999;
    background-color: var(--color1);
    margin-right: 10px;

    @media (max-width: 767px) {
      margin-right: 0;
      gap: 3px;
      height: 42px;
      width: 42px;
      margin-left: 0;
    }
    span {
      display: block;
      height: 2px;
      width: 12px;
      background: #fff;
      transition: 0.2s all ease-in-out;
      border-radius: 100px;
    }
  }
}

#hamburger-menu-btn.active {
  z-index: 999;
  .box {
  }
  span:nth-child(1) {
    transform: rotate(45deg);
    translate: 0 2.5px;
  }
  span:nth-child(2) {
    display: none;
  }
  span:nth-child(3) {
    transform: rotate(-45deg);
    translate: 0 -2.5px;
  }
}

/* spメニュー */

#sp_header {
  width: min(100%, 500px);
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 60px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  z-index: 888;

  .wrapper {
    background-color: #f3f7f7;
    padding: 17px 20px 100px;
    min-height: 100vh;

    .grid_2c {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 20px;
    }
    .sp_nav_box {
      padding: 15px 20px;
      background-color: #fff;
      box-shadow: 0 2px 2px 0 (0, 0, 0, 0.02);
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      .sp_menu_icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 700;
      }
      .sp_menu_icon::before {
        content: "";
        width: 25px;
        height: 25px;
        background-image: url(../img/h-icon-menu.svg);
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
    .sp_nav_box:nth-child(1) {
      .sp_menu_icon::before {
        background-image: url(../img/h-icon-faq.svg);
      }
    }
    .sp_nav_box:nth-child(2) {
      .sp_menu_icon::before {
        background-image: url(../img/h-icon-company.svg);
      }
    }
    .sp_nav_box:nth-child(3) {
      .sp_menu_icon::before {
        background-image: url(../img/h-icon-works.svg);
      }
    }
    .sp_nav_box:nth-child(4) {
      .sp_menu_icon::before {
        background-image: url(../img/h-icon-voice.svg);
      }
    }
    .sp_nav_box.il {
      padding: 0;
      margin-bottom: 10px;
      .nav_box_header {
        background-color: #e6efef;
        padding: 10px;
        .sp_menu_icon {
          font-size: 14px;
          font-weight: 700;
          display: flex;
          gap: 10px;
          align-items: center;
          justify-content: center;
          flex-direction: row;
        }
      }
      .grid_2c {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 27px;
        padding: 15px 20px;
        margin-bottom: 0;

        a {
          display: block;
          width: 100%;
          border-bottom: 1px solid #e6e6e6;
          padding: 10px 0;
          span {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
          }
          span::after {
            content: "";
            width: 20px;
            height: 20px;
            background-image: url(../img/arrow-r.svg);
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }
    }
    .cta_btn._sp {
      background-color: #39a893;
      padding: 15px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      width: 100%;
      box-shadow: var(--shadow);
      transition: var(--trans);
      margin-bottom: 10px;
      p {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
      }
      .tel_num {
        font-size: 28px;
        font-weight: 700;
        display: flex;
        align-items: center;
        line-height: 1.25;
      }
      .tel_num::before {
        content: "";
        background-image: url(../img/tel-icon-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: 3px;
      }
      .cta_note {
        font-size: 12px;
        font-weight: 500;
      }
    }
    .cta_btn._o._sp {
      background-color: var(--color1);
      height: 100px;
      span {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
        text-wrap: wrap;
      }
      span::before {
        content: "";
        background-image: url(../img/mail-icon-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 1.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: 2px;
      }
    }
  }
}
.hamburger-menu-link.il {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 21px 0;
  border-bottom: 1px solid #e1deb0;
}

#sp_header.active {
  opacity: 1;
  z-index: +2;
  visibility: visible;
}

/*------------------------------------------------------------------------------------------

mv

------------------------------------------------------------------------------------------*/

.mv {
  margin-top: 135px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  @media (max-width: 900px) {
    margin-top: 60px;
  }
  @media (max-width: 767px) {
    margin-top: 0px;
  }
  .swiper-slide {
    width: 100%;
    height: auto;
    aspect-ratio: 1536 / 726;
    @media (max-width: 767px) {
      aspect-ratio: 390 / 636;
    }
    .mv_pc_img {
      @media (max-width: 767px) {
        display: none;
      }
    }
    .mv_sp_img {
      display: none;
      @media (max-width: 767px) {
        display: block;
      }
    }
  }
  .under_mv_area {
    position: absolute;
    z-index: 2;
    bottom: -45px;
    left: 50%;
    translate: -50%;
    width: min(1200px, 90vw);
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-image: var(--grad);
    padding: 15px;

    @media (max-width: 1150px) {
      bottom: -85px;
    }
    @media (max-width: 767px) {
      flex-direction: column;
      bottom: calc(-130px + 5vw);
      padding: 10px 30px;
    }
    div {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 0 20px;
      @media (max-width: 767px) {
        width: 100%;
        padding: 8px 0;
      }
      p {
        color: #fff;
        text-align: center;
        @media (max-width: 1280px) {
          font-size: 14px;
        }
        @media (max-width: 767px) {
          font-size: 10px;
        }
      }
      .title {
        font-size: min(30px, 2vw);
        font-weight: 900;
        @media (max-width: 767px) {
          font-size: 16px;
        }
      }
    }
    div:nth-child(2) {
      border-right: 1px solid #9bcdd2;
      border-left: 1px solid #9bcdd2;
      @media (max-width: 767px) {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #9bcdd2;
        border-bottom: 1px solid #9bcdd2;
      }
    }
  }
}

.cta_area {
  padding: 165px 0 120px;
  .title {
    font-size: min(28px, 3vw);
    font-weight: 900;
  }
  .desc {
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .cta_area {
    padding: 180px 0 60px;
    .title {
      font-size: 16px;
      text-align: start;
    }
    .desc {
      text-align: start;
    }
  }
}

.service {
  .grid_3c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
    gap: 115px 30px;
    .item {
      background-color: #fff;
      border-radius: var(--border-r);
      box-shadow: var(--shadow);
      padding: 55px 40px 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: relative;
      transition: var(--trans);
      .service_icon {
        position: absolute;
        top: -63px;
        left: 40px;
        width: 106px;
        height: 106px;
        aspect-ratio: 1 / 1;
        background-image: url(../img/icon-hachi.svg);
        background-size: contain;
        background-repeat: no-repeat;
        transition: var(--trans);
      }
      .title {
        font-size: 36px;
        font-weight: 900;
      }

      .desc {
        font-weight: 700;
        flex: 1;
      }
      svg {
        margin-right: 0;
        margin-left: auto;
        circle,
        path {
          transition: var(--trans);
        }
      }
    }
    .item:nth-child(2) .service_icon {
      background-image: url(../img/icon-goki.svg);
    }
    .item:nth-child(3) .service_icon {
      background-image: url(../img/icon-nezumi.svg);
    }
    .item:nth-child(4) .service_icon {
      background-image: url(../img/icon-tokozirami.svg);
    }
    .item:nth-child(5) .service_icon {
      background-image: url(../img/icon-hato.svg);
    }
    .item:nth-child(6) .service_icon {
      background-image: url(../img/icon-other.svg);
    }
    .item:hover {
      scale: 1.01;
      .service_icon {
        scale: 1.05;
      }
      svg {
        circle {
          fill: #37b89f;
        }
        path {
          stroke: #fff;
        }
      }
    }
  }
}
@media (max-width: 767px) {
  .service {
    .grid_3c {
      gap: 67px 20px;
      .item {
        padding: 42px 25px 30px;
        gap: 10px;
        .service_icon {
          top: -47px;
          left: 25px;
          width: 90px;
          height: 90px;
        }
        .title {
          font-size: 24px;
        }
        svg {
          width: 28px;
          height: 28px;
          aspect-ratio: 1 / 1;
        }
      }
      .item:nth-child(2) .service_icon {
        background-image: url(../img/icon-goki.svg);
      }
      .item:nth-child(3) .service_icon {
        background-image: url(../img/icon-nezumi.svg);
      }
      .item:nth-child(4) .service_icon {
        background-image: url(../img/icon-tokozirami.svg);
      }
      .item:nth-child(5) .service_icon {
        background-image: url(../img/icon-hato.svg);
      }
      .item:nth-child(6) .service_icon {
        background-image: url(../img/icon-other.svg);
      }
      .item:hover {
        scale: 1.01;
        .service_icon {
          scale: 1.05;
        }
        svg {
          circle {
            fill: #37b89f;
          }
          path {
            stroke: #fff;
          }
        }
      }
    }
  }
}
.reason {
  .flex_2c:last-child {
    margin-bottom: 0;
  }
}

.works {
  .works_archive {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    .card {
      border-radius: var(--border-r);
      background-color: #fff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      transition: var(--trans);
      height: 100%;
      .img {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 220;
        margin-bottom: 30px;
        overflow: hidden;
        img {
          border-radius: 30px;
        }
      }
      .date {
        font-size: 18px;
        line-height: 1.25;
      }
      .title {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 500;
      }
      svg {
        margin-left: auto;
        margin-right: 0;
        transition: var(--trans);
      }
    }
    .card:hover {
      scale: 1.02;
      svg {
        circle {
          fill: #37b89f;
        }
        path {
          stroke: #fff;
        }
      }
    }
  }
  .works_archive::after {
    content: "";
    position: absolute;
    right: 3%;
    top: -12.5vw;
    width: min(456px, 29vw);
    height: auto;
    aspect-ratio: 456 / 207;
    z-index: -1;
    background-image: url(../img/works_deco.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .works {
    .works_archive {
      margin-left: auto;
      margin-right: auto;
      grid-template-columns: repeat(1, 1fr);
      place-items: center;
      gap: 15px;
      .card {
        padding: 20px;
        .img {
          margin-bottom: 15px;
          img {
            border-radius: 20px;
          }
        }
        .date {
          font-size: 16px;
          line-height: 1.25;
        }
        .title {
          font-size: 14px;
          margin-bottom: 5px;
        }
        svg {
          width: 28px;
          height: 28px;
        }
      }
    }
    .works_archive::after {
      display: none;
    }
  }
}

/* イベント情報 */
.event {
  background-color: #faf8dd;
  border-radius: 30px 30px 0 0;

  .grid_2c {
    @media (max-width: 767px) {
      grid-template-columns: repeat(1, 1fr);
      row-gap: min(60px, 4vw);
    }
    .item {
      align-items: start;
      background-color: #fff;
      box-shadow: var(--shadow);
      padding: min(40px, 3vw);
      @media (max-width: 767px) {
        padding: 20px;
      }
      .flex {
        gap: min(30px, 3vw);
        align-items: center;
        margin-bottom: 30px;
        @media (max-width: 767px) {
          margin-bottom: 20px;
        }
        p {
          font-size: min(30px, 2.6vw);
          font-weight: 700;
          @media (max-width: 767px) {
            font-size: 20px;
          }
        }
        span {
          line-height: 1;
          margin-bottom: 0;
        }
      }
      .note {
        font-size: 12px;
        margin-bottom: 10px;
        @media (max-width: 767px) {
          margin-bottom: 5px;
        }
      }
      .event_list {
        width: 100%;
        li {
          width: 100%;
          border-bottom: 1px #e0e0e0 solid;
          a {
            padding: 15px 0;
            width: 100%;
            display: block;
            @media (max-width: 767px) {
              padding: 10px 0;
            }
            .event_title {
              text-align: start;
              width: 100%;
              font-size: 16px;
              font-weight: 500;
              transition: var(--trans);
              @media (max-width: 767px) {
                font-size: 14px;
              }
            }
          }
        }
        li:first-child {
          a {
            padding-top: 0;
          }
        }
        li:last-child {
          border-bottom: 0;
          a {
            padding-bottom: 0;
          }
        }
        li:hover {
          .event_title {
            color: var(--color2);
          }
        }
      }
    }
  }
}

/* お知らせ */
.news {
  background-color: #faf8dd;
  border-radius: 0 0 30px 30px;
  padding-top: 0;
  .flex {
    justify-content: start;
    align-items: end;
    gap: min(120px, 30vw);
    @media (max-width: 767px) {
      justify-content: space-between;
      gap: 0;
    }
    .sec_title {
      text-wrap: nowrap;
    }
    .tag_area {
      display: flex;
      gap: 15px;
      @media (max-width: 767px) {
        gap: 10px;
      }
      a {
        text-wrap: nowrap;
        border: 1px var(--color1) solid;
        border-radius: 100px;
        padding: 6px 14px;
        color: var(--color1);
        transition: var(--trans);
        @media (max-width: 768px) {
          font-size: 14px;
        }
      }
    }
    a:hover {
      background-color: var(--color1);
      color: #fff;
    }
    a.active {
      background-color: var(--color1);
      color: #fff;
    }
  }
  .contents_box {
    background-color: #fff;
    padding: min(40px, 5vw);
    border-radius: 30px;
    box-shadow: var(--shadow);
  }
  .news_list {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
    li {
      padding: 40px 0;
      border-bottom: 1px solid #e0e0e0;
      @media (max-width: 767px) {
        padding: 20px 0;
      }
      .wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        @media (max-width: 767px) {
          gap: 5px;
        }
        .tag {
          padding: 3px 12px;
          border-radius: 10px;
          background-color: #d7e9ed;
          font-size: 14px;
          @media (max-width: 767px) {
            font-size: 12px;
            border-radius: 5px;
            padding: 1px 10px;
          }
        }
        .tag.ikeda {
          background-color: #ffe2e3;
        }
        time {
          font-size: 14px;
          color: #8b8b8b;
          @media (max-width: 767px) {
            font-size: 12px;
          }
        }
      }
      h3 {
        font-size: min(24px, 2vw);
        @media (max-width: 767px) {
          font-size: 18px;
        }
      }
      .desc {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }
    }
    li:first-child {
      padding-top: 0;
    }
    li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
  }
  .news_list.active {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .btn {
    margin-left: auto;
    @media (max-width: 767px) {
      margin-right: auto;
    }
  }
}

/*------------------------------------------------------------------------------------------

フッター

------------------------------------------------------------------------------------------*/

footer {
  .footer {
    padding: 80px 0 40px;
    background-color: #f3f7f7;
    @media (max-width: 767px) {
      padding: 40px 0 20px;
    }
    .f_logo {
      display: block;
      width: 138px;
      height: auto;
      aspect-ratio: 138 / 54;
      margin-left: auto;
      margin-right: auto;
      @media (max-width: 767px) {
        width: 103px;
      }
    }
    .under_footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: min(20px, 2vw);
      margin-top: 80px;
      @media (max-width: 767px) {
        margin-top: 40px;
      }
      a {
        font-size: 12px;
      }
      small {
        font-size: 12px;
        @media (max-width: 500px) {
          font-size: 10px;
        }
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

下層ページ

------------------------------------------------------------------------------------------*/
.under_page {
  .under_mv {
    margin-top: 135px;
    display: grid;
    place-items: center;
    width: 100%;
    height: 300px;
    @media (max-width: 900px) {
      margin-top: 60px;
      height: 225px;
    }
    @media (max-width: 767px) {
      height: 150px;
    }

    .under_header {
      font-size: min(42px, 4vw);
      font-weight: 700;
      color: #fff;
      @media (max-width: 767px) {
        font-size: 24px;
      }
    }
  }
}
.under_page {
  .message {
    .flex_2c {
      align-items: start;
    }
    .owner {
      margin-bottom: 5px;
      font-size: 14px;
      color: #626262;
      font-weight: 700;
    }
    .owner_name {
      font-weight: 700;
      font-size: 18px;
    }
    .company {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: min(80px, 5vw);
      dl {
        flex: 1;
        display: grid;
        grid-template-columns: min(180px, 30%) 1fr;
        dt,
        dd {
          padding: 30px 0;
          border-bottom: 1px solid #cbcbcb;
          line-height: 2;
          font-size: 16px;
        }
        dt {
          font-weight: 900;
        }
        .d_top {
          padding-top: 0;
        }
        .d_last {
          padding-bottom: 0;
          border-bottom: 0;
        }
      }
    }
  }
  @media (max-width: 767px) {
    .message {
      .owner {
        font-size: 12px;
        margin-bottom: 2px;
      }
      .owner_name {
        font-size: 16px;
      }
      .company {
        flex-direction: column;
        gap: 0;
        dl {
          width: 100%;
          dt,
          dd {
            padding: 15px 0;
            font-size: 14px;
          }
          .d_top.il {
            padding-top: 15px;
          }
        }
      }
    }
  }
}

/* 駆除ページ 共通 */
.kujo_page {
  .flex_3c {
    display: flex;
    gap: 10px;
    .card {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: rgba(80, 80, 80, 0.6);
      border-radius: var(--border-r);
      padding: 40px 30px;
      @media (max-width: 1000px) {
        padding: 20px 15px;
      }
      gap: 20px;
      .img {
        width: min(180px, 60%);
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;
      }
      .title {
        font-size: min(36px, 2.5vw);
        color: #fff;
      }
      .price_area {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        span {
          background-color: #fff;
          color: #242424;
          font-size: 14px;
          padding: 5px 10px;
          border-radius: 100px;
          @media (max-width: 1000px) {
            font-size: 12px;
            padding: 2px 8px;
          }
        }
        p {
          font-size: min(40px, 3vw);
          font-weight: 700;
          font-family: var(--en);
          color: var(--color1);
          line-height: 1.25;
          span {
            color: var(--color1);
            font-size: min(20px, 1.5vw);
            font-weight: 700;
            font-family: "Noto Sans JP", sans-serif;
            background-color: transparent;
            padding: 0;
          }
        }
      }
      .desc {
        font-weight: 700;
      }
    }
  }

  .flex_2c {
    align-items: start;
    margin-bottom: 0;
  }
  .note {
    color: #fff;
    font-size: 12px;
  }

  .kujo_sub_title {
    font-weight: 900;
    font-size: min(24px, 2vw);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: min(20px, 1.5vw);
  }
  .kujo_sub_title::before {
    content: "";
    background-image: url(../img/icon-hachi.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.9em;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .sec_title {
    line-height: 1.5;
  }
  .btn_area {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 0;
    .sec_title,
    .desc {
      color: #fff;
    }
    .desc {
      font-weight: 700;
    }
    .marker_o {
      color: #242424;
    }
    .flex_3c {
      ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        li {
          color: #fff;
          display: flex;
          align-items: center;
          gap: 20px;
          font-size: 16px;
          font-weight: 700;
        }
        li::before {
          content: "";
          background-image: url(../img/check-icon-o.svg);
          background-repeat: no-repeat;
          background-size: contain;
          width: 1.2em;
          height: auto;
          aspect-ratio: 1 / 1;
        }
      }
    }
    .box_gray {
      background-color: rgba(80, 80, 80, 0.6);
      padding: 40px 60px;
      border-radius: var(--border-r);
      display: flex;
      align-items: center;
      gap: 60px;
      .img {
        border-radius: 50%;
        width: min(137px, 20%);
        height: auto;
        aspect-ratio: 1 / 1;
        overflow: hidden;
      }
      .wrap {
        flex: 1;
      }
      .title {
        color: #fff;
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 20px;
      }
    }
    .footer_area {
      background-color: #bf3d35;
      padding: 20px;
      margin-top: 80px;
      p {
        color: #fff;
        text-align: center;
        font-weight: 700;
        font-size: 18px;
      }
    }
  }
  .price {
    background-color: #2e2e2e;
    .sec_title,
    .title,
    .desc {
      color: #fff;
    }

    .note {
      font-size: 12px;
      color: #fff;
      margin-top: 10px;
    }
    .box_gray {
      background-color: rgba(80, 80, 80, 0.6);
      padding: min(60px, 4vw);
      border-radius: var(--border-r);
      .flex {
        gap: min(80px, 5vw);
        align-items: center;
        .l-cont {
          width: 50%;
          .desc {
            max-width: 386px;
          }
          .price_area {
            justify-content: start;
            flex-wrap: wrap;
            row-gap: 10px;
            span {
              background-color: #fff;
              color: #242424;
              @media (max-width: 1000px) {
                font-size: 12px;
                padding: 2px 8px;
              }
            }
            p {
              color: var(--color1);
              font-size: min(40px, 4vw);
              span {
                color: var(--color1);
                font-size: min(20px, 1.5vw);
                font-weight: 700;
                font-family: "Noto Sans JP", sans-serif;
                background-color: transparent;
                padding: 0;
              }
            }
          }
        }
        .r-cont {
          width: 50%;
          ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            li {
              color: #fff;
              display: flex;
              align-items: center;
              gap: 20px;
              font-size: 16px;
            }
            li::before {
              content: "";
              background-image: url(../img/check-icon-o.svg);
              background-repeat: no-repeat;
              background-size: contain;
              width: 1.2em;
              height: auto;
              aspect-ratio: 1 / 1;
            }
          }
        }
      }
    }
    /* その他駆除 */

    .title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
    }
  }
  .flow {
    .sub_title {
      margin-left: 0;
      margin-bottom: 10px;
    }
    .flex_2c {
      display: flex;
      align-items: start;
      gap: min(60px, 3vw);
      margin-bottom: 80px;
      .item {
        flex: 1;
        border-radius: var(--border-r);
        overflow: hidden;
        background-color: #fff;
        .flow_header {
          background-color: var(--color2);
          color: #fff;
          padding: 20px;
          text-align: center;
          font-size: 20px;
          font-weight: 900;
        }
        ul {
          padding: 40px;
          position: relative;

          li {
            padding-bottom: 40px;
            padding-left: 104px;
            position: relative;
            z-index: 2;
            .title {
              font-size: 20px;
              font-weight: 900;
              margin-bottom: 10px;
            }
            .desc {
              margin-bottom: 10px;
            }
            .note {
              background-color: #ffe97a;
              border-radius: 100px;
              padding: 5px 10px;
              font-size: 14px;
              color: #242424;
              font-weight: 500;
            }
          }
          li::before {
            width: 46px;
            height: 46px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            background-color: var(--color2);
            color: #fff;
            content: "01";
            font-size: 20px;
            font-family: var(--en);
            position: absolute;
            left: 0;
            top: 0;
            display: grid;
            place-items: center;
          }
          li:nth-child(2)::before {
            content: "02";
          }
          li:nth-child(3)::before {
            content: "03";
          }
          li:nth-child(4)::before {
            content: "04";
          }
          li:nth-child(5)::before {
            content: "05";
          }
          li:nth-child(6)::before {
            content: "06";
          }
          li:last-child {
            padding-bottom: 0;
          }
          li::after {
            content: "";
            height: 110%;
            width: 2px;
            background-color: #e6efef;
            position: absolute;
            top: 5%;
            left: 22px;
            display: block;
            z-index: -1;
          }
          li:last-child::after {
            display: none;
          }
        }
        @media (max-width: 1200px) {
          ul {
            padding: 30px;

            li {
              padding-bottom: 30px;
              padding-left: 60px;
              .title {
                font-size: 18px;
              }
            }
            li::before {
              width: 40px;
              height: 40px;
              font-size: 18px;
            }
            li::after {
              left: 22px;
            }
          }
        }
      }
      .item:nth-child(2) {
        .flow_header {
          background-color: #37b89f;
        }
        li::before {
          background-color: #37b89f;
        }
      }
    }
    .nav_btn_area {
      display: flex;
      gap: min(40px, 5vw);
      a {
        width: 100%;
        border-radius: var(--border-r);
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
        height: 200px;
        span {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 40px;
          font-size: min(36px, 3.5vw);
          color: #fff;
          font-weight: 900;
          position: relative;
          z-index: 4;
          svg {
            width: 0.9em;
            height: auto;
            aspect-ratio: 1 / 1;
          }
        }
      }
      a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/to_works.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
        transition: var(--trans);
      }
      a::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        background-image: linear-gradient(
          180deg,
          rgba(55, 184, 159, 1),
          rgba(27, 84, 157, 1)
        );
        opacity: 0.5;
        transition: var(--trans);
      }
      a:nth-child(2)::before {
        background-image: url(../img/to_voice.jpg);
      }
      a:hover::before {
        scale: 1.03;
      }
      a:hover::after {
        opacity: 0.3;
      }
    }
  }
}

@media (max-width: 767px) {
  .kujo_page {
    .flex_3c {
      flex-direction: column;
      place-items: center;
      .card {
        width: 100%;
        gap: 10px;
        padding: 20px;
        .title {
          font-size: 20px;
          margin-bottom: 0;
        }
        .price_area {
          p {
            font-size: 30px;
            span {
              font-size: 15px;
            }
          }
        }
      }
    }

    .flex_2c {
      gap: 30px;
    }
    .note {
      font-size: 12px;
    }

    .kujo_sub_title {
      font-size: 16px;
      margin-bottom: 5px;
      gap: 10px;
    }

    .about {
      padding-top: 40px;
      .desc {
        text-align: start;
      }
      /* その他駆除 */
      .flex_3c {
        ul {
          li {
            gap: 10px;
            font-size: 14px;
          }
        }
      }
      /* ハト・その他 */
      .box_gray {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        .img {
          width: 137px;
        }
        .title {
          font-size: 16px;
          margin-bottom: 10px;
        }
      }
      .footer_area {
        padding: 15px;
        margin-top: 40px;
        p {
          text-align: start;
          font-size: 14px;
        }
      }
    }
    .price {
      .note {
        font-size: 10px;
        color: #fff;
      }
      .box_gray {
        padding: 20px;
        .flex {
          flex-direction: column;
          gap: 40px;
          .l-cont {
            width: 100%;
            .desc {
              max-width: 100%;
            }
            .price_area {
              p {
                font-size: 30px;
                span {
                  font-size: 15px;
                }
              }
            }
          }
          .r-cont {
            width: 100%;
            ul {
              gap: 15px;
              li {
                gap: 10px;
                font-size: 14px;
              }
              li::before {
                width: 1em;
              }
            }
          }
        }
      }
      /* その他駆除 */

      .title {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
      }
    }
    .flow {
      .sub_title {
        margin-bottom: 5px;
      }
      .flex_2c {
        gap: 30px;
        margin-bottom: 60px;
        .item {
          .flow_header {
            padding: 15px;
            font-size: 16px;
          }
          ul {
            padding: 20px;
            li {
              padding-bottom: 20px;
              padding-left: 50px;
              .title {
                font-size: 16px;
                margin-bottom: 5px;
              }
              .desc {
                margin-bottom: 5px;
              }
              .note {
                padding: 2px 8px;
                font-size: 12px;
              }
            }
            li::before {
              width: 30px;
              height: 30px;
              font-size: 16px;
            }
            li::after {
              left: 15px;
            }
          }
        }
      }
      .nav_btn_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        a {
          height: 150px;
          width: 100%;
          span {
            font-size: 26px;
          }
        }
      }
    }
  }
}
/* ハチ駆除 */
.kujo_page#hachi {
  .about {
    .gird_3c_pic.il {
      margin-left: auto;
      margin-right: auto;
      width: min(600px, 100%);
      margin-top: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: min(30px, 3vw);
      img {
        width: 30%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
      }
    }
  }
  .faq {
    .gird_3c {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: min(30px, 2vw);
      .item {
        background-color: #d5e8e4;
        border-radius: var(--border-r);
        padding: min(30px, 2vw) min(40px, 3vw);
        .title {
          font-size: min(20px, 2vw);
          font-weight: 900;
          margin-bottom: 10px;
          .num {
            display: inline-block;
            margin-right: min(10px, 1vw);
          }
        }
      }
    }
  }
  @media (max-width: 767px) {
    .about {
      .gird_3c_pic.il {
        margin-top: 30px;
        gap: 10px;
      }
    }
    .faq {
      .gird_3c {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        place-items: center;

        .item {
          padding: 20px;
          width: min(500px, 100%);
          .title {
            font-size: 16px;
            margin-bottom: 5px;
            .num {
              display: inline-block;
              margin-right: 5px;
            }
          }
        }
      }
    }
  }
}

/* ゴキブリ駆除 */
.kujo_page#gokiburi {
  .kujo_sub_title::before {
    background-image: url(../img/icon-goki.svg);
  }
}
/* ネズミ駆除 */
.kujo_page#nezumi {
  .kujo_sub_title::before {
    background-image: url(../img/icon-nezumi.svg);
  }
}
/* トコジラミ駆除 */
.kujo_page#tokozirami {
  .kujo_sub_title::before {
    background-image: url(../img/icon-tokozirami.svg);
  }
}
/* ハト駆除 */
.kujo_page#hato {
  .kujo_sub_title::before {
    background-image: url(../img/icon-hato.svg);
  }
  .flex_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(60px, 5vw);
    padding: 40px 0;
    border-bottom: #707070 1px solid;
    .l-cont {
      .title {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
      }
      .desc {
        font-weight: 500;
      }
    }
    .r-cont {
      .price_area {
        justify-content: start;
        span {
          background-color: #fff;
          color: #242424;
        }
        p {
          color: var(--color1);
          text-wrap: nowrap;
          span {
            color: var(--color1);
            font-size: 20px;
            font-weight: 700;
            font-family: "Noto Sans JP", sans-serif;
            background-color: transparent;
            padding: 0;
          }
        }
      }
    }
  }
  .flex_list:first-child {
    padding-top: 0;
  }
  .flex_list:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .kujo_page#hato {
    .flex_list {
      flex-direction: column;
      align-items: start;
      gap: 30px;
      
    }
  }

}
/* その他駆除 */
.kujo_page#other {
  .kujo_sub_title::before {
    background-image: url(../img/icon-other.svg);
  }
}

/* よくある質問 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;

  .faq-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--border-r);
    padding: 20px 30px 20px 40px;
    transition: var(--trans);
    cursor: pointer;
    .q,
    .a {
      display: flex;
      gap: 40px;
      span {
        font-family: var(--en);
        color: #37b89f;
        font-weight: 700;
        font-size: 30px;
        line-height: 1;
        margin-top: 2px;
      }
      span.tc_b {
        color: var(--color2);
      }
      p {
        font-size: 16px;
        font-weight: 700;
        line-height: 2;
      }
    }
    .q {
      justify-content: space-between;
      align-items: center;
      .spacer {
        flex: 1;
      }
    }

    .a {
      align-items: top;

      span,
      p {
        transition: var(--trans);
        visibility: hidden;
        translate: 0 -100%;
        opacity: 0;
        display: none;
      }
      p {
        max-width: 85%;
        font-weight: 500;
        span {
          font-size: 16px;
        }
      }
    }

    .faq-btn {
      width: 46px;
      height: 46px;
      aspect-ratio: 1 / 1;
      background-color: #e7f5f3;
      border-radius: 100px;
      position: relative;
      span {
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        display: block;
        width: 20px;
        height: 2px;
        background-color: #37b89f;
        border-radius: 100px;
        margin: 0;
      }
      span:nth-child(1) {
        transition: var(--trans);
        rotate: 90deg;
      }
      span:nth-child(2) {
        transition: var(--trans);
      }
    }
  }
  .faq-item.active {
    gap: 20px;

    .faq-btn {
      span:nth-child(1) {
        rotate: 180deg;
        display: none;
      }
      span:nth-child(2) {
        rotate: 180deg;
      }
    }
    .a {
      span,
      p {
        visibility: visible;
        translate: 0 0;
        opacity: 1;
        display: inline-block;
      }
    }
  }
}
@media (max-width: 767px) {
  .faq-list {
    gap: 20px;

    .faq-item {
      padding: 15px 20px;
      .q,
      .a {
        gap: 10px;
        span {
          font-size: 20px;
        }
        .num {
          margin-top: 4px;
        }
        p {
          font-size: 14px;
        }
      }
      .q {
        justify-content: space-between;
        align-items: start;

        .spacer {
          flex: 1;
        }
      }

      .a {
        align-items: top;

        span,
        p {
          transition: var(--trans);
          visibility: hidden;
          translate: 0 -100%;
          opacity: 0;
          display: none;
        }
        p {
          max-width: 85%;
          font-weight: 500;
          span {
            font-size: 16px;
          }
        }
      }

      .faq-btn {
        margin-top: 4px;
        width: 28px;
        height: 28px;
        span {
          width: 12px;
        }
      }
    }
    .faq-item.active {
      gap: 20px;

      .faq-btn {
        span:nth-child(1) {
          rotate: 180deg;
          display: none;
        }
        span:nth-child(2) {
          rotate: 180deg;
        }
      }
    }
  }
}

/* プライバシーポリシー */
.policy {
  h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
  }
  h4 {
    margin-top: 20px;
  }
  h4,
  p,
  li {
    line-height: 2;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .policy {
    h3 {
      font-size: 20px;
      margin-bottom: 40px;
    }
    h4 {
      margin-top: 10px;
      font-size: 14px;
    }

    p,
    li {
      font-size: 12px;
    }
  }
}

/* お問い合わせ */

.under.contact {
  .contents {
    .info {
      .tel {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        transition: var(--trans);
        .img {
          width: 42px;
          img {
            width: 100%;
          }
        }
        .num {
          font-size: min(58px, 10vw);
          color: var(--color2);
          display: flex;
          align-items: center;
          gap: 10px;
        }
        .num::before {
          content: "";
          background-image: url(../img/tel-icon-blue.svg);
          background-repeat: no-repeat;
          background-size: contain;
          width: 0.8em;
          height: auto;
          aspect-ratio: 1 / 1;
        }
      }
      a:hover {
        opacity: 0.7;
      }
    }

    /* フォーム */
    .contact-area {
      background-color: #fff;
      border-radius: 40px;
      padding: 80px 20px;

      table {
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 100%;

        tr {
          padding: 10px 0;
          display: flex;
          align-items: start;
          flex-direction: column;
          width: fit-content;
          width: 100%;

          th {
            padding-right: 10px;
            font-size: 16px;
            margin: 10px 0;
          }

          th.il::after {
            content: "必須";
            padding: 2px 10px;
            background-color: var(--color2);
            color: #fff;
            font-size: 12px;
            border-radius: 100px;
            margin-left: 20px;
            font-weight: 500;
          }
        }
        tr.notes {
          margin-top: 20px;
          padding: 5px 10px;
          background-color: var(--color1);
          width: fit-content;
          border-radius: 2px;
          th {
            margin: 0;
            font-size: 14px;
            color: var(--color2);
            font-weight: 500;
          }
        }
        tr.select_area {
          td {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 30px;
            span {
              margin-left: 0;
              input {
                margin-right: 2px;
              }
            }
          }
        }
        td {
          width: 100%;
        }
        td.half {
          width: 50%;
        }
        td.flex-area {
          display: flex;
          justify-content: space-between;
          gap: 20px;
          width: 70%;
          @media screen and (max-width: 768px) {
            gap: 5px;
            width: 100%;
          }
          .wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
            width: 100%;
            text-wrap: nowrap;
          }
        }

        p {
          font-size: 14px;
          margin-bottom: 20px;
        }
      }

      .policy-desc {
        margin-bottom: 20px;
        text-align: center;
        font-size: 14px;
      }
      .check-area {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
      }
      .thanks-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 60px 0;
        text-align: center;
        .thanks-title {
          font-size: 38px;
          color: var(--color2);
          font-weight: 700;
          margin-bottom: 10px;
        }
      }
    }
    .send-btn-area {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .send-btn {
      background-color: var(--color1);
      border-radius: 30px;
      padding: 0px 30px;
      cursor: pointer;
      color: #fff;
      width: fit-content;
      border: 0;
      transition: var(--trans);
    }
    .send-btn:hover {
      scale: 1.02;
    }
    .back-btn {
      background-color: #eee;
      border-radius: 30px;
      padding: 0px 30px;
      border: 1px #eee solid;
      cursor: pointer;
      color: #999;
      width: fit-content;
      transition: var(--trans);
    }

    .back-btn:hover {
      scale: 1.02;
    }
  }
  .recha-info {
    font-size: 14px;
    padding-top: 40px;
    text-align: center;
    line-height: 2;
  }
  input,
  select,
  textarea {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: #999 0.5px solid;
    background-color: rgb(255, 255, 255, 0.6);
    padding: 10px;
    font-size: 16px;
  }
  textarea {
    height: 300px;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    translate: 0 3px;
    margin-right: 10px;
    border: 1px #3f3f3f solid;
    font-size: 16px;
    color-scheme: light; /* 強制的にライトテーマで描画 */
  }

  input,
  select,
  textarea:focus {
    outline: none;
    box-shadow: none;
  }

  input::placeholder,
  textarea::placeholder {
    color: #ccc;
  }
}

@media (max-width: 767px) {
  .under.contact {
    .contents {
      .info {
        .desc {
          font-size: 14px;
          text-align: start;
        }
        .tel {
          .num {
            gap: 0px;
          }
        }
      }
      /* フォーム */
      .contact-area {
        padding: 40px 20px;
        border-radius: 20px;
        table {
          tr {
            padding: 10px 0;
            th {
              font-size: 14px;
              margin: 10px 0;
            }

            th.il::after {
              padding: 2px 8px;
              font-size: 10px;
              margin-left: 10px;
            }
          }
          tr.select_area {
            td {
              gap: 10px 20px;
              span {
                font-size: 14px;
              }
            }
          }
          td {
            width: 100%;
          }
        }
        .policy-desc {
          margin-bottom: 10px;
          text-align: start;
          font-size: 12px;
        }

        .check-area {
          font-size: 14px;
        }
        .thanks-message {
          gap: 10px;
          margin: 40px 0;
          .thanks-title {
            font-size: 20px;
          }
        }
      }
      .flex {
        .btn-privacy-policy {
          padding-left: 20px;
          margin-bottom: 60px;
        }
      }
      .recha-info {
        font-size: 12px;
        text-align: start;
      }
    }
    input[type="checkbox"] {
      width: 14px;
      height: 14px;
      font-size: 14px;
      translate: 0 1.5px;
    }
    input,
    select,
    textarea {
      height: 40px;
      font-size: 14px;
    }
    textarea {
      height: 200px;
    }
  }
}

/*------------------------------------------------------------------------------------------

新着情報ページ

------------------------------------------------------------------------------------------*/
.archive_page {
  .inner1 {
    .blog-list {
      display: flex;
      column-gap: min(30px, 5vw);
      row-gap: min(40px, 6.5vw);
      flex-wrap: wrap;
      li {
        width: calc((100% - (min(30px, 5vw) * 2)) / 3);
        transition: var(--trans);

        .card {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 100%;
          .img {
            width: 100%;
            margin-bottom: 20px;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: var(--border-r);
            filter: var(--filter_grad);
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          h3.title {
            background-color: transparent;
            padding: 0;
            font-size: 18px;
            margin-bottom: 5px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
          }
          .date {
            font-size: 14px;
          }

          .category {
            display: flex;
            gap: 0.5em;
            flex-wrap: wrap;
            align-items: center;
          }
          .cat-item {
            border: var(--border1);
            border-radius: 100px;
            padding: 2px 5px;
            font-size: 10px;
            color: var(--color1);
            text-wrap: nowrap;
          }
          .tag {
            padding: 3px 12px;
            border-radius: 10px;
            background-color: #d7e9ed;
            font-size: 12px;
            @media (max-width: 767px) {
              font-size: 10px;
              border-radius: 2px;
              padding: 1px 10px;
            }
          }
          .tag.ikeda {
            background-color: #ffe2e3;
          }
        }
      }
      li:hover {
        scale: 1.02;
      }
    }
  }
}
@media (max-width: 960px) {
  .archive_page {
    .inner1 {
      .blog-list {
        li {
          width: calc(50% - (min(30px, 5vw) / 2));
          transition: var(--trans);

          .card {
            .img {
              margin-bottom: 10px;
              img {
                border-radius: 10px;
              }
            }
            h3.title {
              font-size: 14px;
              margin-bottom: 0;
            }
            .date {
              font-size: 12px;
              line-height: 1;
            }
            .category {
              font-size: 10px;
            }
          }
        }
      }
    }
  }
}

/* ----------------------------

フェードインアニメーション

------------------------------*/

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1.5s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* ----------------------------

固定フェードインアニメーション

------------------------------*/
.fadeIn-fixed {
  animation-name: fadeIn;
  animation-duration: 1.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ----------------------------

ページネーション

------------------------------*/

.page-nation {
  width: 100%;
  display: flex;
  justify-content: center;

  .wp-pagenavi {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    @media (max-width: 767px) {
      gap: 8px;
    }
  }

  .wp-pagenavi a,
  .current {
    transition: all 0.3s;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: var(--border1);
    transition: var(--trans);
    color: var(--color2);
  }
  .wp-pagenavi a:hover {
    scale: 1.02;
  }

  .current {
    border: var(--border1);
    background-color: var(--color2);
    color: #fff;
  }
  .wp-pagenavi a:hover {
    background-color: var(--color2);
    color: #fff;
  }
}

/* ----------------------------

リキャプチャ非表示

------------------------------*/

.grecaptcha-badge {
  visibility: hidden;
}

#front_news_area {
  .js-meo-template_card_format {
    border: 0 !important;
  }
  .js-meo-column-template-container {
    .js-meo-change-column-template {
      padding: 10px;
      div:nth-child(1) {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        border-radius: var(--border-r) !important;
        overflow: hidden;
        margin-bottom: 20px !important;
      }
      .js-meo-template-body-text {
        font-family: var(--en) !important;
        font-size: 18px !important;
      }
      .js-meo-template-categories {
        border-radius: 100px;
        color: var(--color2) !important;
        background-color: #fff !important;
        border: 1px solid var(--color2);
        padding: 4px 10px !important;
      }
    }
  }
}
