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

/* 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(--yellow-color);
          border-radius: 5px;
          color: #fff;
        }
      }
      .concept_title {
        margin-top: 5px;
        color: var(--yellow-color);
        h2 {
          font-size: 80px;
          font-weight: normal;
          line-height: 1.6;
        }
      }

      .concept_lead {
        margin: 65px 0 75px;
        max-width: 404px;

        p {
          margin-bottom: 25px;
          font-size: 14px;
          line-height: 1.7;
          color: #444;
        }
      }

      .concept_brands {
        .concept_brands_img {
          display: flex;
          gap: 30px 26px;
          margin-top: 30px;

          img {
            max-width: 286px;
            height: clamp(32px, 2.8vw, 44px);
          }
        }
      }
    }

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

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

  .title_main {
    margin: 0 auto;

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

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

    .hero_catchphrase {
      margin: 13px auto 15px;
      font-size: 30px;
      font-weight: bold;
      color: var(--yellow-color);
    }

    .hero_description {
      margin-bottom: 50px;
      font-size: 16px;
      font-weight: bold;
    }

    .hero_image {
      display: flex;
      gap: 15px;
      flex-direction: column;
      max-width: 660px;
      margin: 0 auto;

      img {
        height: auto;
        display: block;
      }

      p {
        font-size: 10px;
        text-align: left;
        padding-left: 20px;
      }
    }
  }
}

/* variation */
.variation {
  width: 1226px;
  margin: 0 auto;
  max-width: 95%;

  .variation_inner {
    display: flex;
    justify-self: center;
    gap: 117px;
    align-items: center;

    .variation_detail {
      display: flex;
      flex-direction: column;
      gap: 42px;

      .variation_detail_title {
        font-size: 20px;
        color: var(--yellow-color);
      }

      .variation_detail_subtitle {
        padding: 10px 0;
        font-size: 24px;
        font-weight: bold;
      }

      .variation_detail_desc {
        font-size: 16px;
      }
    }
  }
}

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

  .service_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-yellow-color);
      transform: skewY(-15deg);
      transform-origin: top left;
      z-index: 0;
    }
  }

  .service_inner {
    position: relative;
    margin-top: 75px;
    z-index: 1;

    .service_list {
      width: 1355px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;

      .service_item {
        display: flex;
        gap: 80px;
        border-top: 1px solid #ccc;
        padding: 56px 37px;

        .service_item_text {
          padding-top: 20px;

          .service_title {
            line-height: 2;
            font-size: 45px;
            font-weight: bold;
            color: var(--yellow-color);
          }

          .service_subtitle {
            margin: 0 0 24px;
            line-height: 2;
            font-size: 30px;
            font-weight: bold;
          }

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

/* feature */
.feature {
  margin-top: 30px;
  padding: 95px 0 105px;
  background-color: var(--light-yellow-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 40px;
      line-height: 2;
      font-size: 40px;
      color: var(--yellow-color);
    }

	.feature_title_souzokumadoimg{
		width: 60%;
		max-width: 300px;
	}

    .feature_catch {
      margin: 20px 0 50px;
      line-height: 2;
      font-size: 26px;
    }

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

    .feature_info {
      margin-top: 25px;
      font-size: 20px;
      font-weight: bold;
    }

    .feature_image {
      .feature_image_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        margin-top: 27px;
      }

      img {
        width: 100%;
      }
    }
  }
}

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

  .contact_bg {
    img {
      width: 100%;
      height: auto;
            min-height: 550px;
            object-fit: cover;
      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(--yellow-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(--yellow-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(--yellow-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: 100px;
  padding-bottom: 76px;

  .store_inner {
    .store_list {
      width: 1280px;
      margin: 0 auto;

      .store_item {
        display: flex;
        gap: 90px;
        border-bottom: 1px solid #ccc;
        padding: 65px 0 40px;

        .store_info {
          width: 560px;

          img {
            display: block;
            width: 414px;
            max-height: 67px;
            margin: 0 auto;
          }

          .store_services {
            margin: 30px auto;
            padding: 20px;
            line-height: 2;
            font-size: 16px;
            background-color: #f5f5f5;

            strong {
              color: var(--yellow-color);
            }
          }
        }

        .atore_address_grid {
          display: grid;
          gap: 30px;
        }

        .store_address {
          display: flex;
          gap: 34px;

          .store_item_text {
            width: 350px;

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

            h3 {
              margin-bottom: 20px;
              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;
              }
            }
          }
        }
      }
    }
  }
}

/* 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(--yellow-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;

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

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

    &.caveat_title_yellow {
      color: var(--yellow-color);
    }

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

      &::before {
        content: '';
        width: 40px;
        height: 5px;
        background: var(--yellow-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(--yellow-color);
    background-color: var(--yellow-color);
    border-radius: 50px;
    transition: background 0.3s;

    &:hover {
      background-color: #fff;
      color: var(--yellow-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(--yellow-color);
    background-color: var(--yellow-color);
    border-radius: 50px;
    transition: background 0.3s;

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

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

.store_btn {
  display: flex;
  justify-content: center;
  align-items: center;

  a {
    position: relative;
    display: block;
    min-width: 180px;
    height: 48px;
    line-height: 48px;
    padding: 0 35px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--yellow-color);
    background-color: var(--yellow-color);
    border-radius: 50px;
    transition: background 0.3s;

    &:hover {
      background-color: #fff;
      color: var(--yellow-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: 36%;
		max-height: 25px;
            }
          }
        }
      }
    }
  }

  /* hero */
  .hero {
    .hero_inner {
      padding-top: 100px;

      .hero_catchphrase {
        margin: 40px auto 45px;
        font-size: clamp(24px, 5vw, 28px);
      }

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

      .hero_image {
        p {
          font-size: clamp(8px, 2.7vw, 11px);
          padding-left: 0;
        }
      }
    }
  }

  /* variation */
  .variation {
    .variation_inner {
      flex-direction: column;
      gap: 60px;

      .variation_circle {
        img {
          display: block;
          width: 90%;
          margin: 0 auto;
        }
      }

      .variation_detail {
        gap: 40px;

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

        .variation_detail_subtitle {
          font-size: clamp(20px, 5.8vw, 24px);
        }

        .variation_detail_desc {
          font-size: clamp(14px, 4vw, 16px);
        }
      }
    }
  }

  /* service */
  .service {
    padding: 120px 0 30px;

    .service_bg {
      &::before {
        top: 50vw;
        height: 1300px;
      }
    }

    .service_inner {
      margin-top: 0;

      .service_list {
        width: 100%;

        .service_item {
          flex-direction: column;
          gap: 0px;
          padding: 20px;

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

          .service_item_text {
            padding-top: 10px;

            .service_title {
              font-size: clamp(30px, 8vw, 40px);
            }

            .service_subtitle {
              margin: 0 0 10px;
              font-size: clamp(18px, 5vw, 27px);
              line-height: 1.5;
            }

            .service_desc {
              font-size: clamp(14px, 3.8vw, 16px);
            }
          }
        }
      }
    }
  }

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

    .feature_inner {

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

      .feature_text {
        width: 100%;
	>img{width:60%;}
      }

      .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_info {
        font-size: clamp(17px, 4.7vw, 20px);
      }

      .feature_image {
        .feature_image_grid {
          gap: 15px;
          margin-top: 20px;
        }
      }
    }
  }

  /* 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_list {
        width: 100%;
	width: 80%;
	margin: auto;

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

          .store_info {
            width: 100%;

            img {
              width: 90%;
              max-height: 40px;
            }

            .store_services {
              font-size: clamp(14px, 4vw, 16px);

              p {
                line-height: 1.6;
                margin-bottom: 10px;
              }
            }
          }

          .store_address {
            flex-direction: column;
            gap: 10px;
            margin-top: 30px;

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

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

              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);
    }
  }

  .store_btn {
    a {
      width: 70%;
    }
  }
}
