@charset "utf-8";

:root {
  --main-color: #006E4F;
}

html {
  -webkit-text-size-adjust: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* --------------------------------------------------
 * responsive
 */

@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 750);
  }

  body {
    font-size: 16rem;
  }

  .pc:not(.sp) {
    display: none;
  }
}

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

  .sp:not(.pc) {
    display: none;
  }
}


/* --------------------------------------------------
 * common styles
 */

@media (min-width: 768px) {
  .all-wrapper {
    width: 100%;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 2;

    .inner {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;

      h1 {
        position: absolute;
        top: 27px;
        left: 33px;

        a {
          transition: opacity 200ms;

          &:hover {
            opacity: .7;
          }

          img {
            width: 155px;
          }
        }
      }

      .nav1 {
        display: flex;
        position: absolute;
        top: 58px;
        right: 315px;

        li {
          &:not(:last-child) {
            padding-right: 2px;
            background-repeat: no-repeat;
            background-size: auto 100%;
            background-position: right 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 28.5'%3E%3Cpath class='d' d='M.5,28.5c-.28,0-.5-.22-.5-.5v-.5c0-.28.22-.5.5-.5s.5.22.5.5v.5c0,.28-.22.5-.5.5ZM.5,26c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,23c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,20c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,17c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,14c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,11c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,8c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,5c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0,.28-.22.5-.5.5ZM.5,2c-.28,0-.5-.22-.5-.5V.5C0,.22.22,0,.5,0s.5.22.5.5v1c0,.28-.22.5-.5.5Z'/%3E%3C/svg%3E" );
          }

          a {
            display: block;
            font-size: 14px;
            line-height: 28px;
            padding: 0 28px;
            transition: color 200ms;

            &:hover {
              color: var(--main-color);
            }
          }
        }
      }

      .nav2 {
        display: flex;
        position: absolute;
        top: 0;
        right: 100px;

        li {
          a {
            display: block;
            width: 100px;
            height: 100px;
            padding-top: 70px;
            text-align: center;
            font-size: 12px;
            line-height: 1em;
            transition: color 200ms;

            &:hover {
              color: var(--main-color);
            }
          }

          &.access a {
            background: url(/assets/images/header/access-icon.svg) no-repeat center 32px / 16px auto;
          }

          &.inquiry a {
            background: url(/assets/images/header/inquiry-icon.svg) no-repeat center 35px / 24px auto;
          }
        }
      }

      .recruit {
        position: absolute;
        top: 14px;
        right: 340px;

        a {
          display: block;
          width: 143px;
          border-radius: 6px;
          text-align: center;
          color: var(--main-color);
          font-size: 13px;
          font-weight: bold;
          line-height: 28px;
          letter-spacing: 0.1em;
          background-color: #F0F2E9;
          transition: color 200ms, background-color 200ms;

          &:hover {
            color: #fff;
            background-color: var(--main-color);
          }
        }
      }

      .toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        border: none;
        outline: none;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        background: #fff url(/assets/images/header/menu-button.svg) no-repeat center 62% / 34px auto;
        transition: background-colo 200ms;

        body.megamenu-opened & {
          background: #FFF6E6 url(/assets/images/header/menu-close.svg) no-repeat center 62% / 34px auto;
        }
      }

      .megamenu {
        position: fixed;
        top: 100px;
        left: 0;
        width: 0;
        padding: 80px 40px 90px;
        overflow: hidden;
        opacity: 0;
        background-color: #FFF6E6;
        z-index: 2;
        transition: opacity 200ms, width 1ms 200ms;

        body.megamenu-opened & {
          width: 100%;
          opacity: 1;
          transition: opacity 200ms, width 1ms;
        }

        .sitemap {
          max-width: 1091px;
          margin: 0 auto;

          a {
            color: var(--main-color);

            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }
  }

  main {
    padding: 100px calc(50% - 720px) 0;
  }

  .site-footer {
    padding: 37px calc(50% - 610px) 30px;
    background-color: #FFFAF2;

    .summary {
      display: flex;
      justify-content: space-between;

      .info {
        .logo {
          img {
            width: 203px;
          }
        }

        .address {
          margin-top: 15px;
          font-size: 14px;
          line-height: 21px;
        }

        .hours {
          margin-top: 30px;
        }
      }

      .map {
        width: 392px;
        height: 338px;
        border-radius: 12px;
        overflow: hidden;
        background-color: #eee;

        iframe {
          width: 100%;
          height: 100%;
        }
      }

      .facebook {
        width: 392px;
        height: 338px;
        border-radius: 12px;
        overflow: hidden;
        background-color: #eee;
      }

      @media (max-width: 1280px) {
        width: 392px;
        margin: 0 auto;
        flex-direction: column;
        gap: 40px;
      }
    }

    .sitemap {
      margin-top: 90px;
    }

    .copyright {
      margin-top: 80px;
      text-align: center;
      font-size: 12px;
      line-height: 1em;
    }
  }
}

@media (max-width: 1380px) {
  .site-header {
    .inner {
      .nav1 {
        display: none;
      }

      .nav2 {
        display: none;
      }

      .recruit {
        display: none;
      }
    }
  }

  main {
    padding: 100px calc(50% - 720px) 0;
  }

  .site-footer {
    padding: 37px calc(50% - 590px) 30px;
    background-color: #FFFAF2;

    .summary {
      display: flex;
      justify-content: space-between;
      padding: 0 20px;

      .info {
        .logo {
          img {
            width: 203px;
          }
        }

        .address {
          margin-top: 15px;
          font-size: 14px;
          line-height: 21px;
        }

        .hours {
          margin-top: 30px;
        }
      }

      .map {

      }
    }

    .sitemap {
      margin-top: 90px;
    }

    .copyright {
      margin-top: 80px;
      text-align: center;
      font-size: 12px;
      line-height: 1em;
    }
  }
}

@media (max-width: 767px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110rem;
    background-color: #fff;
    z-index: 2;

    .inner {
      h1 {
        position: absolute;
        top: 30rem;
        left: 40rem;

        img {
          width: 204rem;
        }
      }

      .nav1 {
        display: none;;
      }

      .nav2 {
        display: none;
      }

      .recruit {
        display: none;
      }

      .toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 110rem;
        height: 110rem;
        border: none;
        outline: none;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        background: url(/assets/images/header/menu-button.svg) no-repeat center 62% / 47rem auto;

        body.megamenu-opened & {
          background: #FFF6E6 url(/assets/images/header/menu-close.svg) no-repeat center 62% / 47rem auto;
        }
      }

      .megamenu {
        position: fixed;
        top: 110rem;
        left: 0;
        width: 0;
        height: calc(100vh - 110rem);
        padding: 40rem 40rem 100rem;
        overflow: hidden;
        opacity: 0;
        background-color: #FFF6E6;
        z-index: 2;
        transition: opacity 200ms, width 1ms 200ms;

        body.megamenu-opened & {
          width: 100%;
          overflow: auto;
          opacity: 1;
          transition: opacity 200ms, width 1ms;
        }

        .sitemap {
          a {
            color: var(--main-color);

            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }
  }

  main {
    padding: 110rem 0 0;
  }

  .site-footer {
    padding: 100rem 40rem 35rem;

    .summary {
      display: flex;
      flex-direction: column;
      gap: 75rem;

      .info {
        .logo {
          img {
            width: 359rem;
          }
        }

        .address {
          margin-top: 30rem;
          font-size: 24rem;
          line-height: 42rem;
        }

        .hours {
          margin-top: 60rem;
        }
      }

      .map {
        height: 508rem;
        border-radius: 12px;
        overflow: hidden;
        background-color: #eee;

        iframe {
          width: 100%;
          height: 100%;
        }
      }

      .facebook {
        height: 508rem;
        border-radius: 12px;
        overflow: hidden;
        background-color: #eee;
      }
    }

    .sitemap {
      display: none;
    }

    .copyright {
      margin-top: 228rem;
      text-align: center;
      font-size: 18rem;
      line-height: 1em;
    }
  }
}

.common-hours-section {
  table {
    width: 379px;
    border-collapse: collapse;
    text-align: center;
    color: var(--main-color);
    font-size: 14px;
    line-height: 1em;

    thead {
      th {
        padding-bottom: 13px;
        border-bottom: 1px solid var(--main-color);
        letter-spacing: 0.2em;

        &:first-child {
          width: 120px;
        }
      }
    }

    tbody {
      th {
        font-size: 13px;
        letter-spacing: 0.1em;
      }

      th, td {
        padding-top: 14px;
      }
    }
  }

  dl {
    margin-top: 16px;
    padding-left: 15px;

    div {
      font-size: 0;
      line-height: 26px;
      letter-spacing: 0.1em;
      white-space: nowrap;

      dt {
        display: inline-block;
        font-size: 14px;

        &::after {
          content: "：";
        }
      }

      dd {
        display: inline-block;
        font-size: 14px;
      }
    }
  }
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 14px;
  width: 0;
  height: 50px;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 400ms, width 1ms 400ms;

  &.show {
    width: 50px;
    opacity: 1;
    transition: opacity 400ms, width 1ms;
  }

  button {
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    background: url(/assets/images/to-top-icon.svg) no-repeat center / contain;
    transition: opacity 200ms;

    &:hover {
      opacity: .7;
    }
  }
}

.common-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0 40px;
  font-size: 14px;
  line-height: 24px;

  a {
    transition: color 200ms;

    &:hover {
      color: var(--main-color);
    }
  }

  > ul {
    > li {
      &:not(:first-child) {
        margin-top: 24px;
      }

      > a {
        display: inline-block;

        &::before {
          content: "｜";
        }
      }

      > button {
        display: none;
      }

      > ul {
        padding-left: 1em;

        > li {
          > a {
            &::before {
              content: "・";
            }
          }
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .common-hours-section {
    table {
      width: 100%;
      font-size: 24rem;

      thead {
        th {
          padding-bottom: 25rem;

          &:first-child {
            width: 212rem;
          }
        }
      }

      tbody {
        th {
          font-size: 23rem;
        }

        th, td {
          padding-top: 32rem;
        }
      }
    }

    dl {
      margin-top: 30rem;
      padding-left: 25rem;

      div {
        line-height: 46rem;

        dt, dd {
          font-size: 24rem;
        }
      }
    }
  }

  .to-top {
    position: fixed;
    right: 30rem;
    bottom: 82rem;
    height: 100rem;

    &.show {
      width: 100rem;
    }

    button {
      width: 100rem;
      height: 100rem;
    }
  }

  .common-sitemap {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20rem;

    a {
      transition: color 200ms;

      &:hover {
        color: var(--main-color);
      }
    }

    > ul {
      > li {
        position: relative;
        margin-top: 20rem !important;

        > a {
          display: block;
          border-bottom: 1px solid #ccc;
          font-size: 28rem;
          line-height: 80rem;

          &::before {
            content: none;
          }
        }

        > button {
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          width: 80rem;
          height: 80rem;
          border: none;
          outline: none;
          cursor:  pointer;
          background-color: transparent;

          &::before,
          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20rem;
            height: 2rem;
            background-color: var(--main-color);
            transform: translate(-50%, -50%);
          }

          &:not(.show)::after {
            transform: translate(-50%, -50%) rotate(90deg);
          }
        }

        > ul {
          height: 0;
          overflow: hidden;
          opacity: 0;
          transition: opacity 200ms, height 200ms, margin 200ms;

          &.show {
            margin-top: 20rem;
            opacity: 1;
          }

          > li {
            > a {
              font-size: 24rem;
              line-height: 60rem;

              &::before {
                content: none;
              }
            }
          }
        }
      }
    }
  }
}


/* --------------------------------------------------
 * TOP
 */

#top {
  .main-visual {
    position: relative;
    height: 640px;
    background: url(/assets/images/top/main-image.webp) no-repeat center / cover;

    .lead-ja {
      position: absolute;
      top: 0;
      left: 0;
      width: 216px;
      height: 323px;
      padding: 27px 45px 0 0;
      border-radius: 0 0 24px 0;
      writing-mode: vertical-rl;
      font-feature-settings: initial;
      color: var(--main-color);
      font-size: 30px;
      font-weight: bold;
      line-height: 59px;
      letter-spacing: 0.1em;
      white-space: nowrap;
      background-color: #fff;
    }

    .lead-en {
      position: absolute;
      left: 5px;
      bottom: -16px;

      img {
        width: 505px;
      }
    }

    .hours {
      position: absolute;
      right: 17px;
      bottom: 16px;
      padding: 27px 43px 16px;
      border-radius: 6px;
      background-color: #fff;
    }

    @media (min-width: 768px) and (max-width: 980px) {
      margin-bottom: 180px;

      .hours {
        right: auto;
        left: 50%;
        bottom: -220px;
        transform: translate(-50%, 0);
      }
    }
  }

  section.lowers {
    max-width: 1284px;
    margin: 0 auto;
    padding: 80px 20px 140px;

    dl {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 50px 24px;

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

      div {
        position: relative;
        width: calc((100% - 48px) / 3);
        padding: 244px 29px 0;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 100% auto;

        @media (max-width: 1240px) {
          width: calc((100% - 40px) / 2);
          max-width: 392px;
        }

        &:nth-child(1) {background-image: url(/assets/images/top/lowers-image1.webp);}
        &:nth-child(2) {background-image: url(/assets/images/top/lowers-image2.webp);}
        &:nth-child(3) {background-image: url(/assets/images/top/lowers-image3.webp);}
        &:nth-child(4) {background-image: url(/assets/images/top/lowers-image4.webp);}
        &:nth-child(5) {background-image: url(/assets/images/top/lowers-image5.webp);}
        &:nth-child(6) {background-image: url(/assets/images/top/lowers-image6.webp);}

        dt {
          position: absolute;
          top: 0;
          left: 0;
          width: 61px;
          height: 223px;
          padding-top: 8px;
          border-radius: 0 0 30px 0;
          writing-mode: vertical-rl;
          font-feature-settings: initial;
          color: var(--main-color);
          font-size: 18px;
          font-weight: bold;
          line-height: 61px;
          background-color: #fff;
        }

        dd {
          height: 365px;
          padding: 112px 20px 0;
          border-radius: 18px;
          box-shadow: 0 0 8px rgba(0, 0, 0, .15);
          background-color: #fff;
          background-repeat: no-repeat;

          ul {
            max-width: 243px;
            margin: 0 auto;

            li {
              min-height: 41px;
              border-bottom: 1px dotted #999;

              a {
                display: block;
                position: relative;
                padding: 8px 0 8px .8em;
                font-size: 16px;
                line-height: 25px;
                background: url(/assets/images/arrow-icon01.svg) no-repeat right center / 5px auto;
                transition: color 200ms;

                &::before {
                  content: "・";
                  position: absolute;
                  top: 8px;
                  left: 0;
                }

                &:hover {
                  color: var(--main-color);
                }
              }
            }
          }
        }

        &:nth-child(1) dd {background: #fff url(/assets/images/top/lowers-icon1.svg) no-repeat center 22px / 65px auto;}
        &:nth-child(2) dd {background: #fff url(/assets/images/top/lowers-icon2.svg) no-repeat center 37px / 86px auto;}
        &:nth-child(3) dd {background: #fff url(/assets/images/top/lowers-icon3.svg) no-repeat center 22px / 51px auto;}
        &:nth-child(4) dd {background: #fff url(/assets/images/top/lowers-icon4.svg) no-repeat center 25px / 64px auto;}
        &:nth-child(5) dd {background: #fff url(/assets/images/top/lowers-icon5.svg) no-repeat center 31px / 76px auto;}
        &:nth-child(6) dd {background: #fff url(/assets/images/top/lowers-icon6.svg) no-repeat center 24px / 68px auto;}
      }
    }

    .recruit-banner {
      width: 790px;
      height: 250px;
      margin: 106px auto 0;
      padding: 60px 0 0 368px;
      text-align: center;
      background: url(/assets/images/top/lowers-recruit-banner-bg.webp) no-repeat center / contain;

      @media (max-width: 830px) {
        width: 670px;
        height: 670px;
        padding: 375px 0 0;
        background: url(/assets/images/top/lowers-recruit-banner-bg-sp.webp) no-repeat center /contain;
      }

      .text1 {
        img {
          width: 335px;
          margin: 0 auto;

          @media (max-width: 830px) {
            width: 480px;
          }
        }
      }

      .text2 {
        display: block;
        margin-top: 26px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1em;
        letter-spacing: .1em;

        @media (max-width: 830px) {
          margin-top: 30px;
          font-size: 30px;
        }
      }

      a {
        display: block;
        width: 290px;
        height: 41px;
        margin: 36px auto 0;
        border-radius: 20px;
        color: var(--main-color);
        font-size: 18px;
        font-weight: bold;
        line-height: 41px;
        letter-spacing: .2em;
        background-color: #FFF6E6;
        transition: background-color 200ms;

        @media (max-width: 830px) {
          width: 468px;
          height: 68px;
          margin-top: 45px;
          border-radius: 34px;
          font-size: 30px;
          line-height: 68px;;
        }

        &:hover {
          background-color: #fff;
        }
      }
    }
  }

  section.about {
    max-width: 1280px;
    margin: 0 auto;

    header {
      position: relative;
      height: 840px;
      background: url(/assets/images/top/about-image.webp) no-repeat center bottom / contain;

      @media (max-width: 1060px) {
        height: 967px;
        background: url(/assets/images/top/about-image-sp.webp) no-repeat center 215px / 100% auto;
      }

      h2 {
        position: absolute;
        width: 125px;
        height: 299px;
        padding: 43px 57px 0 0;
        border-radius: 0 0 37px 0;
        writing-mode: vertical-rl;
        color: var(--main-color);
        font-size: 30px;
        font-weight: bold;
        line-height: 1em;
        letter-spacing: .1em;
        background-color: #fff;

        @media (max-width: 1060px) {
          width: 104px;
          height: 288px;
          padding: 10px 0 0;
          font-size: 30px;
          line-height: 104px;
        }
      }

      p {
        position: absolute;
        top: 40px;
        left: 196px;
        font-size: 20px;
        line-height: 40px;
        letter-spacing: .1em;

        @media (max-width: 1060px) {
          top: 0;
          left: 152px;
          font-size: 24px;
          line-height: 44px;

          .sp {
            display: inline-block;
          }
        }
      }
    }

    .information {
      position: relative;
      max-width: 1150px;
      margin: -160px auto 0;
      padding: 50px 90px 55px;
      border-radius: 12px;
      background-color: #fff;

      @media (max-width: 1060px) {
        margin: -170px 40px 0;
        padding: 70px 40px 75px;
      }

      h3 {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        line-height: 1em;

        @media (max-width: 1060px) {
          font-size: 30px;
        }
      }

      .body {
        display: flex;
        justify-content: space-between;
        gap: 0 20px;
        margin-top: 52px;

        @media (max-width: 1060px) {
          flex-direction: column;
          gap: 50px 0;
          margin-top: 75px;
        }

        .news {
          width: calc(50% - 10px);
          max-width: 450px;

          @media (max-width: 1060px) {
            width: 100%;
            max-width: 100%;
          }

          ul {
            display: flex;
            flex-direction: column;
            gap: 28px;

            li {
              padding-bottom: 27px;
              border-bottom: 1px solid #808080;

              a {
                display: flex;
                gap: 32px;
                padding-right: 70px;
                font-size: 14px;
                line-height: 1em;
                background: url(/assets/images/arrow-icon02.svg) no-repeat right center / 26px auto;
                transition: color 200ms;

                &:hover {
                  color: var(--main-color);
                }

                time {
                }

                p {
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
                }
              }
            }
          }

          .list {
            margin-top: 26px;
            text-align: right;

            a {
              text-decoration: underline;
              color: var(--main-color);
              font-size: 12px;
              font-weight: bold;
              line-height: 1em;
            }
          }
        }

        .common-information {
          width: calc(50% - 10px);
          max-width: 450px;

          @media (max-width: 1060px) {
            width: 100%;
            max-width: 100%;
          }

          ul {
            display: flex;
            flex-direction: column;
            gap: 10px;

            li {
              width: 100%;

              a {
                display: block;
                border: 1px solid var(--main-color);
                border-radius: 6px;
                text-align: center;
                color: var(--main-color);
                font-size: 14px;
                font-weight: bold;
                line-height: 48px;
                background: url(/assets/images/arrow-icon01.svg) no-repeat right 16px center / 5px auto;
              }
            }
          }
        }
      }
    }

    .access {
      position: relative;
      margin-top: 47px;
      padding: 0 0 58px 56px;

      @media (max-width: 1060px) {
        margin-top: 0;
        padding: 0 80px;
      }

      h3 {
        @media (min-width: 1061px) {
          position: absolute;
          top: 0;
          left: 0;
          height: 310px;
          padding: 4px;
          writing-mode:vertical-rl;
          font-size: 20px;
          font-weight: bold;
          line-height: 1em;
          letter-spacing: .1em;
        }

        @media (max-width: 1060px) {
          margin-bottom: 40px;
          text-align: center;
          font-size: 30px;
          line-height: 1em;
        }
      }

      .map {
        height: 310px;
        border-radius: 12px;
        overflow: hidden;
        background-color: #eee;

        iframe {
          width: 100%;
          height: 100%;
        }
      }

      .texts {
        display: flex;
        justify-content: space-between;
        margin-top: 28px;
        font-size: 14px;
        line-height: 1em;

        .address {
        }

        .detail {
          font-weight: bold;

          a {
            text-decoration: underline;
            color: var(--main-color);
          }
        }
      }
    }
  }

  .business {
    max-width: 1306px;
    margin: 0 auto;
    padding: 40px 40px 100px;

    @media (max-width: 1060px) {
      padding-top: 100px;
    }

    hgroup {
      text-align: center;

      p {
        img {
          width: 662px;
          margin: 0 auto;
        }
      }

      h2 {
        margin-top: 60px;
        color: var(--main-color);
        font-size: 30px;
        font-weight: bold;
        line-height: 1em;
        letter-spacing: .1em;
      }
    }

    dl {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 54px 24px;
      margin-top: 88px;

      div {
        width: calc((100% - 48px) / 3);

        @media (max-width: 1060px) {
          width: calc((100% - 48px) / 2);
          max-width: 392px;
        }

        &::before {
          content: "";
          display: block;
          width: 100%;
          height: 264px;
          border-radius: 10px;
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }

        &:nth-child(1)::before {background-image: url(/assets/images/top/business-image01.webp);}
        &:nth-child(2)::before {background-image: url(/assets/images/top/business-image02.webp);}
        &:nth-child(3)::before {background-image: url(/assets/images/top/business-image03.webp);}
        &:nth-child(4)::before {background-image: url(/assets/images/top/business-image04.webp);}
        &:nth-child(5)::before {background-image: url(/assets/images/top/business-image05.webp);}
        &:nth-child(6)::before {background-image: url(/assets/images/top/business-image06.webp);}
        &:nth-child(7)::before {background-image: url(/assets/images/top/business-image07.webp);}
        &:nth-child(8)::before {background-image: url(/assets/images/top/business-image08.webp);}
        &:nth-child(9)::before {background-image: url(/assets/images/top/business-image09.webp);}

        dt {
          margin-top: 26px;
          font-size: 20px;
          font-weight: bold;
          line-height: 1em;
        }

        dd {
          margin-top: 13px;
          font-size: 14px;
          line-height: 26px;
        }
      }
    }

    .banners {
      display: flex;
      justify-content: center;
      gap: 35px;
      margin-top: 80px;

      li {
        width: calc((100% - 70px) / 3);
        max-width: 320px;

        a {
          transition: opacity 200ms;

          &:hover {
            opacity: .7;
          }
        }
      }
    }
  }
}

@media (max-width: 767px) {
  #top {
    .main-visual {
      height: 850rem;
      margin-bottom: 253rem;
      background: url(/assets/images/top/main-image-sp.webp) no-repeat center / contain;

      .lead-ja {
        width: 216rem;
        height: 323rem;
        padding: 27rem 45rem 0 0;
        border-radius: 0 0 24rem 0;
        font-size: 30rem;
        line-height: 59rem;
      }

      .lead-en {
        left: 8rem;
        bottom: 65rem;

        img {
          width: 506rem;
        }
      }

      .hours {
        left: 40rem;
        bottom: -253rem;
        width: 670rem;
        height: 298rem;
        padding: 40rem 55rem 0;
        border-radius: 6rem;
      }
    }

    section.lowers {
      padding: 80rem 40rem 200rem;

      dl {
        flex-direction: column;
        gap: 100rem;

        div {
          position: relative;
          width: 100%;
          max-width: none;
          padding: 417rem 50rem 0;

          dt {
            width: 104rem;
            height: 382rem;
            padding-top: 14rem;
            border-radius: 0 0 30rem 0;
            font-size: 30rem;
            line-height: 104rem;
          }

          dd {
            height: auto;
            padding: 193rem 80rem 74rem;
            border-radius: 11rem;
            box-shadow: 0 0 8rem rgba(0, 0, 0, .15);

            ul {
              max-width: none;

              li {
                min-height: 0;
                border-bottom: 1px dotted #999;

                a {
                  padding: 14rem 0 14rem .8em;
                  font-size: 27rem;
                  line-height: 43rem;
                  background: url(/assets/images/arrow-icon01.svg) no-repeat right center / 9rem auto;

                  &::before {
                    top: 14rem;
                  }
                }
              }

              .blank {
                display: none;
              }
            }
          }

          &:nth-child(1) dd {background: #fff url(/assets/images/top/lowers-icon1.svg) no-repeat center 37rem / 111rem auto;}
          &:nth-child(2) dd {background: #fff url(/assets/images/top/lowers-icon2.svg) no-repeat center 55rem / 146rem auto;}
          &:nth-child(3) dd {background: #fff url(/assets/images/top/lowers-icon3.svg) no-repeat center 37rem / 88rem auto;}
          &:nth-child(4) dd {background: #fff url(/assets/images/top/lowers-icon4.svg) no-repeat center 44rem / 109rem auto;}
          &:nth-child(5) dd {background: #fff url(/assets/images/top/lowers-icon5.svg) no-repeat center 53rem / 129rem auto;}
          &:nth-child(6) dd {background: #fff url(/assets/images/top/lowers-icon6.svg) no-repeat center 42rem / 115rem auto;}
        }
      }

      .recruit-banner {
        width: 670rem;
        height: 670rem;
        margin: 168rem auto 0;
        padding: 375rem 0 0;
        background: url(/assets/images/top/lowers-recruit-banner-bg-sp.webp) no-repeat center / contain;

        .text1 {
          img {
            width: 480rem;
          }
        }

        .text2 {
          margin-top: 30rem;
          font-size: 30rem;
        }

        a {
          width: 468rem;
          height: 68rem;
          margin: 45rem auto 0;
          border-radius: 34rem;
          font-size: 30rem;
          line-height: 68rem;
        }
      }
    }

    section.about {
      header {
        height: 967rem;
        background: url(/assets/images/top/about-image-sp.webp) no-repeat center 215rem / 100% auto;

        h2 {
          width: 104rem;
          height: 288rem;
          padding: 10rem 0 0;
          border-radius: 0 0 30rem 0;
          font-size: 30rem;
          line-height: 104rem;
        }

        p {
          top: 0;
          left: 152rem;
          font-size: 24rem;
          line-height: 44rem;
        }
      }

      .information {
        margin: -170rem 40rem 0;
        padding: 70rem 40rem 0;
        border-radius: 12rem;

        h3 {
          font-size: 30rem;
        }

        .body {
          flex-direction: column;
          gap: 100rem 0;
          margin-top: 75rem;

          .news {
            width: 100%;
            max-width: none;

            ul {
              gap: 36rem;

              li {
                padding-bottom: 35rem;

                a {
                  gap: 42rem;
                  padding-right: 62rem;
                  font-size: 20rem;
                  background: url(/assets/images/arrow-icon02.svg) no-repeat right center / 32rem auto;
                }
              }
            }

            .list {
              margin-top: 56rem;

              a {
                font-size: 24rem;
              }
            }
          }

          .common-information {
            width: 100%;
            max-width: none;

            ul {
              gap: 13rem;

              li {
                a {
                  border-radius: 6rem;
                  font-size: 22rem;
                  line-height: 64rem;
                  background: url(/assets/images/arrow-icon01.svg) no-repeat right 20rem center / 7rem auto;
                }
              }
            }
          }
        }
      }

      .access {
        margin-top: 124rem;
        padding: 0 80rem 74rem;

        h3 {
          text-align: center;
          font-size: 30rem;
          line-height: 1em;
        }

        .map {
          height: 590rem;
          margin-top: 62rem;
          border-radius: 12rem;
        }

        .texts {
          display: block;
          margin-top: 36rem;
          font-size: 18rem;
          line-height: 1em;

          .detail {
            margin-top: 50rem;
            text-align: right;
            font-size: 24rem;
            font-weight: bold;
          }
        }
      }
    }

    .business {
      padding: 147rem 80rem 156rem;

      hgroup {
        p {
          img {
            width: 663rem;
          }
        }

        h2 {
          margin-top: 50rem;
          font-size: 30rem;
        }
      }

      dl {
        gap: 90rem;
        margin-top: 80rem;

        div {
          width: 100%;
          max-width: none;

          &::before {
            height: 396rem;
            border-radius: 10rem;
          }

          dt {
            margin-top: 40rem;
            font-size: 30rem;
          }

          dd {
            margin-top: 28rem;
            font-size: 22rem;
            line-height: 44rem;
          }
        }
      }

      .banners {
        flex-direction: column;
        gap: 58rem;
        margin-top: 140rem;

        li {
          width: 100%;
          max-width: none;

          img {
            width: 100%;
          }
        }
      }
    }
  }
}


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