@charset "UTF-8";

div.intro {
  position: relative;

  div.inner {
    width: min(1120px, 100%);
    margin-inline: auto;

    div.heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding-bottom: 48px;

      p {
        font-family: 'LINE Seed JP_OTF Bold';

        font-size: 69px;
        line-height: 1;
      }

      p.fillcolor {
        color: var(--tc);

        &::first-letter {
          color: orange;
        }
      }

      p.transparent {
        -webkit-text-stroke: 1px var(--tc);
        color: transparent;
      }

      .cross {
        --cross-width: 180px;
        position: relative;

        display: inline-block;
        width: var(--cross-width);
        height: var(--cross-width);
      }

      .cross::before,
      .cross::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        display: inline-block;
        width: 100%;
        height: 2px;

        background: var(--tc);
      }

      .cross::before {
        transform: translate(-50%, -50%) rotate(45deg);
      }

      .cross::after {
        transform: translate(-50%, -50%) rotate(-45deg);
      }
    }
  }

  div.textContent {
    padding-bottom: 64px;

    .title {
      margin-bottom: 16px;

      font-size: 24px;
      font-weight: 700;
      color: var(--tc);
      text-align: center;
    }

    .text {
      line-height: 2;
    }
  }

  .float {
    position: absolute;
    z-index: 0;
    top: -14dvw;
    left: -3.4dvw;
  }
}

div.eyecatch-blueback {
  position: relative;
  
  width: 100%;
  background-color: var(--tc);

  div.inner {
    display: grid;
    grid-template-columns: 1fr 720px;
    column-gap: 24px;
    width: min(1120px, 100%);
    padding-top: 112px;
    padding-bottom: 120px;
    margin-inline: auto;

    color: #fff;

    div.textContent {
      padding-top: 8px;

      p.title {
        margin-bottom: 24px;

        font-size: 30px;
        font-weight: 700;
      }

      p.text {
        line-height: 1.6;
      }
    }
  }
  .float-left {
    position: absolute;
    z-index: 0;
    top: -4dvw;
    left: 3.4dvw;
  }

  .float-right {
    position: absolute;
    z-index: 0;
    bottom: -6dvw;
    right: 3.4dvw;
  }
}

section#service {
  padding-top: 120px;
  padding-bottom: 120px;

  ul.serviceCON {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 80px;
    width: min(1120px, 100%);
    margin-inline: auto;

    li.item {
      position: relative;
      padding: 64px;
      background: #fff;

      p.numbering {
        position: absolute;
        top: -42px;
        left: 50%;
        transform: translateX(-50%);

        font-family: 'LINE Seed JP_OTF Bold';

        font-size: 84px;
        line-height: 1;
        -webkit-text-stroke: 1px var(--tc);
        color: transparent;
      }

      .h4-wrap {
        margin-bottom: 32px;
      }

      h4 {
        margin-bottom: 24px;

        font-size: 34px;
        color: var(--tc);
        text-align: center;
      }

      div.block {
        padding: 40px 24px;
        background: #EAF0FF;

        .block-title-wrap {
          margin-bottom: 24px;
          text-align: center;
        }

        p.block-title {
          font-size: 20px;
          font-weight: 700;
          text-align: center;
        }

        p.block-text {
          margin-bottom: 32px;
          line-height: 1.8;
        }

        span.block-tag {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 8px 1em;
          margin-top: 16px;

          color: #fff;
          background: var(--tc);
          border-radius: 16px;
        }
      }

      div.blockCON {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
      }

      div.imgCON {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 32px;
      }
    }
  }

  .carrier-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
  }
}

div#introduceBase {
  position: relative;
  margin-bottom: 120px;

  background: #E2EBFF;

  >p.heading {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 3em;

    font-size: 32px;
    font-weight: 700;
    color: var(--tc);
    background: #E2EBFF;
    border-radius: 32px;
    border: solid 1px var(--tc);
    box-shadow: 0 6px 0 #1e5cff;
  }

  .base-name {
    margin-bottom: 24px;

    font-size: 30px;
    font-weight: 700;
    text-align: center;

    span {
      font-size: 20px;
    }
  }

  div.inner {
    width: min(1120px, 100%);
    margin-inline: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .float-left {
    position: absolute;
    z-index: 0;
    top: -4dvw;
    left: 3.4dvw;
  }

  .float-right {
    position: absolute;
    z-index: 0;
    bottom: -6dvw;
    right: 3.4dvw;
  }

  div.baseGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }

  div.address-wrap {
    width: 100%;

    >p {
      margin-bottom: 24px;

      line-height: 1.6;
    }

    address {
      width: 100%;
      padding: 24px;

      line-height: 1.6;
      background: #fff;

      ul.address-list {
        >*+* {
          margin-block-start: 8px;
        }

        >li {
          display: flex;
          align-items: center;
          gap: .3em;

          picture {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
          }
        }

        .google-link {
          a {
            display: inline-flex;
            align-items: center;
            gap: 0.6em;

            color: #1359E8;
          }
        }
      }
    }
  }
}

:root {
  --swiper-navigation-size: 18px !important;
}

div#base-hasuda {
  margin-bottom: 80px;

  .base-text {
    line-height: 1.6;
    margin-bottom: 40px;
  }

  >.content {
    display: grid;
    grid-template-columns: 1fr 360px;
    column-gap: 24px;
  }

  .swiperAlt {
    display: inline-block;
    width: 800px;
    overflow: hidden;

    position: relative;

    img {
      width: 100%;
      max-width: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);

      display: inline-flex;
      align-items: center;
      justify-content: center;

      width: 40px;
      height: 40px;
      color: #fff;
      background: var(--tc);
      border-radius: 50%;
    }

    .swiper-button-prev {
      left: 10px;
    }

    .swiper-button-next {
      right: 10px;
    }
  }
}

@media (min-width : 1200px) {}

@media (max-width : 1200px) {
  div.intro {
    div.inner {
      padding: 0 24px;

      div.heading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1dvw;
        padding-bottom: 6dvh;

        p {
          font-size: 6dvw;
        }

        .cross {
          --cross-width: 15dvw;
        }
      }

      div.textContent {
        padding-bottom: 8dvh;

        .title {
          margin-bottom: 16px;

          font-size: 5.5dvw;
        }

        .text {
          font-size: 3.5dvw;
        }
      }
    }
  }

  div.eyecatch-blueback {
    position: relative;

    div.inner {
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 40px;

      width: min(1120px, 100%);
      padding: 80px 24px 96px;

      div.textContent {
        position: relative;
        padding-top: 8px;

        p.title {
          position: absolute;
          top: -48px;
          left: 0;

          margin-bottom: 24px;

          font-size: clamp(18px, 5dvw, 30px);
          text-wrap: wrap;
        }

        p.text {
          padding-top: 0;
          line-height: 1.6;
        }
      }
    }

    .float-left,
    .float-right {
      display: none;
    }
  }

  section#service {
    padding-top: 8dvh;
    padding-bottom: 8dvh;

    ul.serviceCON {
      row-gap: 8dvh;

      li.item {
        padding: 6dvh 4dvw;

        p.numbering {
          top: clamp(-42px, -5dvw, -24px);

          font-size: clamp(48px, 10dvw, 84px);
        }

        .h4-wrap {
          margin-bottom: 4dvh;
        }

        h4 {
          margin-bottom: 2dvh;

          font-size: clamp(24px, 6dvw, 34px);
          line-height: 1.4;
        }

        div.block {
          padding: 4dvh 4dvw;

          .block-title-wrap {
            margin-bottom: 2dvh;
          }

          p.block-title {
            font-size: clamp(18px, 5dvw, 20px);
          }

          p.block-text {
            margin-bottom: 3dvh;
          }

          span.block-tag {
            padding: 8px 1em;
            margin-top: 2dvh;
            border-radius: 2dvh;
          }
        }

        div.blockCON {
          display: grid;
          grid-template-columns: 1fr;
          row-gap: 4dvh;
        }

        div.imgCON {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          column-gap: 24px;
          row-gap: 32px;
        }
      }
    }

    .carrier-img-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 24px;
    }
  }

  div#introduceBase {
    margin-bottom: 120px;

    >p.heading {
      position: absolute;
      top: -28px;

      padding: 8px 2em;

      font-size: 4dvw;
      text-wrap: nowrap;
      border-radius: 5dvw;
    }

    .base-name {
      margin-bottom: 24px;

      font-size: 30px;
      font-weight: 700;
      text-align: center;

      span {
        font-size: 20px;
      }
    }

    div.inner {
      width: min(1120px, 100%);
      margin-inline: auto;
      padding: 80px 24px 96px;
    }

    .float-left,
    .float-right {
      display: none;
    }
  }

  div#base-hasuda {
    margin-bottom: 0;

    .base-text {
      line-height: 1.6;
      margin-bottom: 40px;
    }

    >.content {
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 16px;
    }

    .swiperAlt {
      width: 100%;
    }
  }
}

@media (max-width : 599px) {
  section#service {

    ul.serviceCON {

      li.item {

        div.block {

          div.imgCON {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            row-gap: 4dvh;
          }
        }
      }
    }
  }
}