@charset "UTF-8";
:root {
  --primary-color: #529abc;
  --yellow-color: #d5b42d;
  --green-color: #197b28;
  --light-blue-color: #edf9ff;
}

/* concept */
.concept {
  .concept_inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    width: 1537px;
    max-width: 95%;
    margin: 0 auto;
    padding-top: 80px;

    .concept_text {
      margin-top: 20px;

      .concept_tags {
        display: flex;
        gap: 11px;

        span {
          display: inline-block;
          width: 95px;
          padding: 3px 0 2px;
          line-height: 1.7;
          font-size: 14px;
          font-weight: bold;
          text-align: center;
          background: var(--primary-color);
          border-radius: 5px;
          color: #fff;
        }
      }
      .concept_title {
        margin-top: 5px;
        color: var(--primary-color);
        h2 {
          font-size: 80px;
          font-weight: normal;
          line-height: 1.6;
        }
      }

      .concept_lead {
        margin: 65px 0 50px;
        p {
          margin-bottom: 25px;
          font-size: 14px;
          line-height: 1.7;
          color: #444;
        }
      }

      .concept_brands {
        .concept_brands_img {
          display: flex;
          flex-direction: column;
          align-items: baseline;
          gap: 40px;
          margin-top: 30px;

          img {
            max-width: 404px;
            height: 33px;
          }
        }
      }
    }

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

/* hero */
.hero {
  margin: 100px 0 130px;
  font-family: 'Inter', sans-serif;

  .title_main {
    h2 {
      font-size: 80px;
    }

    p {
      margin-top: 30px;
      line-height: 1.5;
      font-size: 16px;
      font-weight: bold;
    }
  }

  .hero_inner {
    max-width: 100%;
    padding-top: 176px;
    text-align: center;

    .hero_catchphrase {
      margin: 47px auto 65px;
      font-size: 40px;
      font-weight: normal;
    }

    .hero_description {
      margin-bottom: 64px;
      font-size: 20px;
      font-weight: bold;
    }

    .hero_awards {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      img {
        height: auto;
        display: block;
      }
    }
  }
}

/* lineup */
.lineup {
  position: relative;
  padding: 270px 0 95px;

  .lineup_bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;

    &::before {
      content: '';
      top: 26vw;
      left: 0;
      width: 100%;
      height: 64vw;
      position: absolute;
      background: var(--light-blue-color);
      transform: skewY(-15deg);
      transform-origin: top left;
      z-index: 0;
    }
  }

  .lineup_inner {
    position: relative;
    margin-top: 100px;
    z-index: 1;

    .lineup_grid {
      width: 1280px;
      margin: 77px auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;

      .lineup_card {
        text-align: center;
        .lineup_label {
          font-weight: bold;
          margin-bottom: 5px;
        }

        .lineup_grid_image {
          width: 100%;
          object-fit: contain;
        }

        .lineup_grid_logo {
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 28px auto 15px;

          img {
            max-width: 100%;
          }
        }

        .lineup_grid_desc {
          font-size: 18px;
          line-height: 1.7;
        }
      }

      &.col-2 {
        gap: 77px;

        .lineup_card {
          width: 46.9%;
        }

        .lineup_grid_logo {
          width: 300px;
          max-height: 60px;
          margin: 28px auto 15px;
        }
      }
      &.col-3 {
        gap: 35px;

        .lineup_card {
          width: 31.5%;
        }

        .lineup_grid_logo {
          width: 223px;
          max-height: 50px;
          margin: 25px auto 15px;
        }
      }
    }

    .brand {
      margin: 0 auto;
      padding: 56px 0 70px;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;

      .brand_inner {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
        flex-wrap: nowrap;
        width: 1280px;
        margin: 0 auto;
      }

      .brand_image-main {
        img {
          width: 100%;
          border-radius: 12px;
          display: block;
          object-fit: cover;
        }
      }

      .brand_content {
        display: flex;
        flex-direction: column;
        justify-content: center;

        .brand_logo {
          width: 224px;
          margin-bottom: 12px;
        }

        .brand_desc {
          font-size: 18px;
          line-height: 2;
          margin-bottom: 60px;
        }

        .brand_image-sub {
          display: flex;
          gap: 16px;
          img {
            display: block;
          }
        }
      }
    }
  }
}

/* reason */
.reason {
  .reason_inner {
    .reason_content {
      display: flex;
      gap: 110px;
      align-items: flex-start;
    }

    .reason_image {
      position: sticky;
      top: 50px;
      align-self: flex-start;

      img {
        width: 100%;
        max-width: 600px;
      }
    }
    .reason_list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 40px;
      max-width: 630px;
    }

    .reason_item {
      border-bottom: 1px solid #ccc;
      padding-bottom: 50px;
    }

    .reason_num {
      display: flex;
      align-items: center;
      font-size: 50px;
      color: var(--primary-color);

      &::before {
        content: 'Reason';
        margin: 20px 7px 0 0;
        line-height: 1;
        font-family: 'Caveat', cursive;
        font-size: 20px;
      }
    }
    h3 {
      margin: 13px 0 40px;
      font-size: 20px;
    }

    .reason_desc {
      line-height: 2;
      font-size: 16px;
    }
  }
}

/* feature */
.feature {
  margin-top: 86px;
  padding: 130px 0;
  background-color: var(--light-blue-color);

  .feature_inner {
    display: flex;
    flex-direction: column;
    gap: 76px;

    .feature_block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: nowrap;
    }

    .feature_text {
      width: 600px;
    }

    .feature_title {
      margin: 30px 0 37px;
      line-height: 2;
      font-size: 40px;
      color: var(--primary-color);
    }

    .feature_catch {
      margin-bottom: 10px;
      line-height: 1.5;
      font-size: 26px;
    }

    .feature_desc {
      line-height: 2;
      font-size: 16px;
    }

    .feature_image img {
      width: 100%;
      border-radius: 12px;
      display: block;
      object-fit: cover;
    }
  }
}

/* contact */
.contact {
  position: relative;
  margin-top: 140px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;

  .contact_bg {
    img {
      width: 100%;
      height: auto;
      border-radius: 15px;
      display: block;
    }
  }

  .contact_box {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 48px 100px 45px;
    text-align: center;
    max-width: 880px;
    width: 90%;
  }

  .contact_title_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 36px;

    .contact_label {
      background: var(--primary-color);
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      border-radius: 50px;
      padding: 11px 42px 10px;
      margin-right: 35px;
    }

    .contact_title {
      font-size: 30px;
      color: var(--primary-color);
      line-height: 2;
    }
  }

  .contact_text {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 1.7;
  }

  .contact_tel_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-color);

    .contact_tel_text {
      line-height: 1.6;
      font-size: 16px;
      font-weight: bold;
    }

    .contact_tel_num {
      margin-left: 12px;
      padding-bottom: 7px;
      line-height: 1.7;
      font-size: 40px;
      font-weight: normal;
      font-family: 'Noto Sans JP', sans-serif;
    }
  }
}

/* store */
.store {
  margin-top: 140px;
  padding-bottom: 110px;

  .store_inner {
    .store_content {
      display: flex;
      gap: 110px;
      align-items: flex-start;
    }

    .store_image {
      position: sticky;
      top: 50px;
      align-self: flex-start;

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

    .store_list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 630px;
    }

    .store_item {
      display: flex;
      align-items: center;
      gap: 34px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 37px;

      .store_item_text {
        .store_header {
          font-family: 'Caveat', cursive;
          font-size: 20px;
          color: var(--primary-color);
        }

        h3 {
          margin: 19px 0;
          line-height: 1.5;
          font-size: 20px;
        }

        .store_desc {
          line-height: 1.7;
          font-family: 'Noto Sans JP', sans-serif;
          font-size: 16px;
        }

        .store_link {
          line-height: 1.7;
          font-size: 16px;
          color: var(--primary-color);

          &:hover {
            opacity: 0.8;
          }
        }
      }
    }

    /* レスポンシブ */
    @media (max-width: 768px) {
      .store_content {
        flex-direction: column;
      }
      .store_image {
        position: unset;

        img {
          max-width: 100%;
          margin-bottom: 20px;
        }
      }
    }
  }
}

/* btn */
.btn_primary {
  background: #529abc;
  color: #fff;
}

.btn_primary:hover {
  background: #417f99;
}

.btn_secondary {
  background: #fff;
  color: #529abc;
  border: 2px solid #529abc;
}

.btn_secondary:hover {
  background: #529abc;
  color: #fff;
}

/* title */
.title_main {
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  max-width: 95%;

  h2 {
    font-family: 'Caveat', cursive;
    font-size: 60px;
    font-weight: normal;
    color: var(--primary-color);
  }
}

.title_wrap {
  h3 {
    font-size: 24px;
    font-weight: bold;

    span {
      position: relative;
      display: block;
      margin-top: 10px;
      font-size: 16px;
      font-family: 'Caveat', cursive;

      &::after {
        content: '';
        display: block;
        width: 63px;
        height: 5px;
        margin-top: 18px;
      }
    }
  }
}

.caveat_title_wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;

  p {
    padding-left: 5px;
    font-size: 20px;
    font-family: 'Caveat', cursive;

    &.caveat_title_blue {
      color: var(--primary-color);
    }

    &.caveat_title_border {
      display: flex;
      align-items: center;

      &::before {
        content: '';
        width: 40px;
        height: 5px;
        background: var(--primary-color);
        margin-right: 11px;
      }
    }
  }

  h2 {
    line-height: 2;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 55px;
    font-weight: normal;
  }
}

/* btn */
.btn {
  a {
    display: block;
    min-width: 240px;
    height: 50px;
    line-height: 48px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    transition: background 0.3s;

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

.contact_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  a {
    position: relative;
    display: block;
    width: 313px;
    height: 67px;
    line-height: 67px;
    padding: 0 35px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    transition: background 0.3s;

    &::after {
      content: '→';
      position: absolute;
      right: 35px;
    }

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

/* common */
.section_container {
  width: 1360px;
  margin: 0 auto;
  max-width: 95%;
}

/* --------------------
  SP
-------------------- */
@media screen and (max-width: 768px) {
  /* .concept */
  .concept {
    .concept_inner {
      flex-direction: column-reverse;
      gap: 30px;
      padding-top: 30px;

      .concept_text {
        .concept_tags {
          gap: 2vw;

          span {
            width: auto;
            padding: 3px 12px;
            font-size: clamp(11px, 3.2vw, 13px);
          }
        }
        .concept_title {
          h2 {
            font-size: clamp(32px, 10vw, 40px);
          }

          .caveat_title_wrap {
            p {
              padding-left: 0;
            }
          }
        }

        .concept_lead {
          margin: 40px 0 50px;

          p {
            font-size: clamp(13px, 3.8vw, 15px);
          }
        }

        .concept_brands {
          .concept_brands_img {
            gap: 25px;
            margin-top: 25px;

            img {
              max-width: 55%;
            }
          }
        }
      }
    }
  }

  /* hero */
  .hero {
    .hero_inner {
      padding-top: 100px;
      .hero_catchphrase {
        margin: 40px auto 45px;
        font-size: clamp(28px, 8vw, 35px);
      }

      .hero_description {
        margin-bottom: 45px;
        font-size: clamp(15px, 4.5vw, 17px);
      }

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

  /* lineup */
  .lineup {
    padding: 120px 0 95px;

    .lineup_bg {
      &::before {
        top: 50vw;
        height: 1300px;
      }
    }
    .lineup_inner {
      padding: 0;
      margin: 0 auto;

      .lineup_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 35px auto;

        .lineup_card {
          .lineup_grid_image {
            object-fit: cover;
            border-radius: 15px;
          }

          .lineup_grid_logo {
            height: 60px;
            max-width: 130px;
            margin: 0 auto;

            img {
              width: 100%;
            }
          }

          .lineup_grid_desc {
            font-size: clamp(11px, 3.5vw, 14px);
            line-height: 1.6;
          }
        }

        &.col-2 {
          gap: 35px 15px;

          .lineup_card {
            width: 100%;
          }
        }
        &.col-3 {
          gap: 35px 15px;

          .lineup_card {
            width: 100%;
          }
        }
      }

      .brand {
        max-width: 100%;
        padding: 36px 0;

        .brand_inner {
          flex-direction: column;
          gap: 50px;
          width: 100%;
        }

        .brand_image-main {
          max-width: 100%;
        }

        .brand_content {
          .brand_logo {
            margin: 0 auto;
          }

          .brand_desc {
            line-height: 1.7;
            margin-top: 10px;
            margin-bottom: 30px;
            font-size: clamp(14px, 4.2vw, 16px);
          }

          .brand_image-sub {
            display: grid;
            grid-template-columns: repeat(2, 1fr);

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

  /* reason */
  .reason {
    .reason_inner {
      .reason_content {
        flex-direction: column;
        gap: 40px;
      }

      .reason_image {
        position: unset;

        img {
          max-width: 100%;
        }
      }
      .reason_list {
        gap: 30px;
      }

      .reason_item {
        padding-bottom: 30px;
      }

      .reason_num {
        font-size: clamp(40px, 13vw, 50px);

        &::before {
          font-size: clamp(21px, 6vw, 25px);
        }
      }
      h3 {
        margin: 10px 0 20px;
        font-size: clamp(18px, 5.3vw, 20px);
      }

      .reason_desc {
        line-height: 1.8;
        font-size: clamp(13px, 3.8vw, 15px);
      }
    }
  }

  /* feature */
  .feature {
    margin-top: 56px;
    padding: 70px 0;

    .feature_inner {
      .feature_block {
        flex-direction: column;
        gap: 30px;
      }

      .feature_text {
        width: 100%;
      }

      .feature_title {
        margin: 15px 0 12px;
        font-size: clamp(22px, 6.5vw, 28px);
      }

      .feature_catch {
        margin: 10px 0 20px;
        font-size: clamp(15px, 4.7vw, 18px);
      }

      .feature_desc {
        line-height: 1.8;
        font-size: clamp(13px, 3.8vw, 15px);
      }

      .feature_image img {
      }
    }
  }

  /* contact */
  .contact {
    margin-top: 0px;
    padding: 0;

    .contact_bg {
      img {
        border-radius: 0;
        object-fit: cover;
        height: 650px;
      }
    }

    .contact_box {
      padding: 40px 20px;
    }

    .contact_title_wrap {
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      margin-bottom: 20px;

      .contact_label {
        margin-right: 0;
        padding: 8px 40px 7px;
        font-size: clamp(15px, 4.5vw, 17px);
      }

      .contact_title {
        font-size: clamp(21px, 6vw, 25px);
      }
    }

    .contact_text {
      margin-bottom: 25px;
      font-size: clamp(13px, 3.8vw, 15px);
    }

    .contact_tel_wrap {
      flex-direction: column;
      margin-bottom: 20px;

      .contact_tel_text {
        font-size: clamp(15px, 4.5vw, 17px);
      }

      .contact_tel_num {
        margin-left: 0;
        padding-bottom: 0;
        line-height: 1.5;
        font-size: clamp(32px, 10vw, 40px);
      }
    }
  }

  /* store */
  .store {
    margin-top: 70px;
    padding-bottom: 80px;

    .store_inner {
      .store_content {
        flex-direction: column;
        gap: 40px;
      }

      .store_image img {
        max-width: 100%;
      }

      .store_list {
        gap: 30px;
	width: 80%;
	margin: auto;
      }

      .store_item {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 30px;

        .store_item_image {
          display: flex;
          justify-content: center;
        }

        .store_item_text {
          text-align: left;
          width: 100%;

          .store_header {
            font-size: clamp(18px, 5.3vw, 20px);
          }

          h3 {
            margin: 10px 0;
            font-size: clamp(18px, 5.3vw, 20px);
          }

          .store_desc {
            line-height: 1.8;
            font-size: clamp(13px, 3.8vw, 15px);
          }

          .store_link {
            font-size: clamp(15px, 4.5vw, 17px);
          }
        }
      }
    }
  }

  /* title */
  .title_main {
    h2 {
      font-size: clamp(42px, 15vw, 50px);
    }

    img {
      width: 100%;
    }
  }

  .caveat_title_wrap {
    margin-bottom: 0;

    p {
      font-size: clamp(18px, 5.3vw, 20px);
    }

    h2 {
      margin: 8px 0 30px;
      font-size: clamp(28px, 8vw, 35px);
    }
  }

  /* btn */
  .btn {
    a {
      width: max-content;
      margin: 0 auto;
    }
  }

  .contact_btn {
    flex-direction: column;
    gap: 15px;

    a {
      width: 100%;
      height: 60px;
      line-height: 60px;
      font-size: clamp(15px, 4.7vw, 18px);
    }
  }
}
