@charset "UTF-8";
/*********************
/BASE
*********************/
html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .hidden-xl {
    display: none;
  }
}

.font-weight-bold {
  font-weight: bold;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 800px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/*********************
共通
*********************/
.l-inner {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 800px) {
  .l-inner {
    max-width: 990px;
  }
}

.l-section {
  padding-top: clamp(3.125rem, -7.2198275862rem + 21.5517241379vw, 6.25rem);
}

.section__title {
  padding-bottom: 36px;
  text-align: center;
}

.section__title-ja {
  display: inline-block;
  font-size: clamp(1.75rem, 0.0948275862rem + 3.4482758621vw, 2.25rem);
  font-weight: 700;
  position: relative;
}
.section__title-ja::before {
  display: block;
  position: absolute;
  content: "";
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  height: 24px;
  background: url(../images/common/title-deco.svg) no-repeat center center/contain;
}
@media screen and (min-width: 800px) {
  .section__title-ja::before {
    bottom: -32px;
    width: 188px;
    height: 30px;
  }
}

.main {
  padding-top: 80px;
}
@media screen and (min-width: 800px) {
  .main {
    padding-top: 90px;
  }
}

.text-s {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 400;
  line-height: 180%;
}

.text-m {
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  font-weight: 400;
  line-height: 180%;
}

.text-mm {
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  font-weight: 500;
  line-height: 180%;
}

section {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 800px) {
  section {
    scroll-margin-top: 90px;
  }
}

/*********************
BUTTON
*********************/
.button-main__wrapper {
  margin-top: clamp(2rem, -2.9655172414rem + 10.3448275862vw, 3.5rem);
}

.button-main {
  display: inline-block;
  position: relative;
  width: 335px;
  height: 80px;
  border-radius: 7px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .button-main {
    width: 400px;
    height: 90px;
    border-radius: 10px;
  }
}

.button-main__text {
  font-size: clamp(1.125rem, 0.2974137931rem + 1.724137931vw, 1.375rem);
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button-main__subtext {
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.button-main.color-green,
.button-main.color-orange {
  background-color: #379761;
}
.button-main.color-green::before,
.button-main.color-orange::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  width: clamp(1.3125rem, -0.5495689655rem + 3.8793103448vw, 1.875rem);
  height: clamp(1.3125rem, -0.5495689655rem + 3.8793103448vw, 1.875rem);
  background: url("../images/common/icon-link.svg") no-repeat center center/cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-main.color-green .button-main__text,
.button-main.color-orange .button-main__text {
  color: #ffffff;
}

.button-main.color-orange {
  background-color: #ffa000;
  width: 288px;
}
@media screen and (min-width: 800px) {
  .button-main.color-orange {
    width: 400px;
  }
}

@media screen and (min-width: 800px) {
  .button-main.color-green:hover,
  .button-main.color-orange:hover {
    opacity: 0.7;
  }
}

.button-main.color-white-green {
  background-color: #ffffff;
  border: 1px solid #379761;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-main.color-white-green .button-main__text {
  color: #379761;
}
.button-main.color-white-green .button-main__icon-arrow {
  position: absolute;
  color: #379761;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  width: clamp(1.125rem, -3.0129310345rem + 8.6206896552vw, 2.375rem);
  height: clamp(1.125rem, -0.9439655172rem + 4.3103448276vw, 1.75rem);
}

@media screen and (min-width: 800px) {
  .button-main.color-white-green:hover {
    background-color: #379761;
  }
  .button-main.color-white-green:hover .button-main__text {
    color: #ffffff;
  }
  .button-main.color-white-green:hover .button-main__icon-arrow {
    color: #ffffff;
  }
}

.button-main.color-white-blue1 {
  background-color: #ffffff;
  border: 1px solid #28b1c9;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-main.color-white-blue1 .button-main__text {
  color: #28b1c9;
}
.button-main.color-white-blue1::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  width: clamp(1.3125rem, -0.5495689655rem + 3.8793103448vw, 1.875rem);
  height: clamp(1.3125rem, -0.5495689655rem + 3.8793103448vw, 1.875rem);
  background: url("../images/common/icon-link-blue.svg") no-repeat center center/cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (min-width: 800px) {
  .button-main.color-white-blue1:hover {
    background-color: #28b1c9;
  }
  .button-main.color-white-blue1:hover:before {
    background: url("../images/common/icon-link.svg") no-repeat center center/cover;
  }
  .button-main.color-white-blue1:hover .button-main__text {
    color: #ffffff;
  }
  .button-main.color-white-blue1:hover .button-main__icon-arrow {
    color: #ffffff;
  }
}

.button-main.color-white-blue2 {
  background-color: #ffffff;
  border: 1px solid #28b1c9;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-main.color-white-blue2 .button-main__text {
  color: #28b1c9;
}
.button-main.color-white-blue2 .button-main__icon-arrow {
  position: absolute;
  color: #28b1c9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  width: clamp(1.125rem, -3.0129310345rem + 8.6206896552vw, 2.375rem);
  height: clamp(1.125rem, -0.9439655172rem + 4.3103448276vw, 1.75rem);
}

@media screen and (min-width: 800px) {
  .button-main.color-white-blue2:hover {
    background-color: #28b1c9;
  }
  .button-main.color-white-blue2:hover .button-main__text {
    color: #ffffff;
  }
  .button-main.color-white-blue2:hover .button-main__icon-arrow {
    color: #ffffff;
  }
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-fadein-appear {
  opacity: 0;
  -webkit-transition: opacity 2.6s ease;
  transition: opacity 2.6s ease;
}
.c-fadein-appear.is-active {
  opacity: 1;
}

/*********************
header
*********************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 1000;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 800px) {
  .header {
    height: 90px;
  }
}

.header__inner {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}
@media screen and (min-width: 800px) {
  .header__inner {
    height: 90px;
  }
}

.header__logo img {
  width: 187px;
}
@media screen and (min-width: 800px) {
  .header__logo img {
    width: 240px;
  }
}

@media screen and (min-width: 800px) {
  .header-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
}

.header-nav__link {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 800px) {
  .header-nav__link:hover {
    color: #379761;
  }
}

.header-nav__list--shiryou,
.header-nav__list--contact {
  display: grid;
  place-items: center;
  width: 182px;
  height: 50px;
  border-radius: 10px;
}

.header-nav__list--shiryou {
  background: #379761;
}
@media screen and (min-width: 800px) {
  .header-nav__list--shiryou {
    margin-left: 8px;
  }
}

.header-nav__list--contact {
  background: #ffa000;
  margin-top: -8px;
  margin-left: 0;
}
@media screen and (min-width: 800px) {
  .header-nav__list--contact {
    margin-top: 0;
    margin-left: -16px;
  }
}

.header-nav__link--shiryou,
.header-nav__link--contact {
  color: #ffffff;
}

/*********************
drawer
*********************/
.body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* PC表示 */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background-color: #ffffff;
}
@media (max-width: 999px) {
  .header-nav {
    display: none;
  }
}

/* SP表示（ドロワー開いたら表示） */
.header-nav.is-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  padding: 10px 32px;
  color: #333;
  background-color: #ffffff;
}
@media (min-width: 1000px) {
  .header-nav.is-open {
    display: none !important;
  }
}

.header-nav.is-open .header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
}

.header-nav__logo {
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .header-nav__logo {
    display: none;
  }
}

.header-nav__logo img {
  width: 187px;
  display: block;
  margin-inline: auto;
}

.button {
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  min-width: 150px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #379761;
}

.header-nav__button {
  margin-top: 8px;
  background: #a582b9;
  padding: 8px 18px 8px 33px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header-nav__button svg {
  width: 14px;
}
@media screen and (min-width: 1000px) {
  .header-nav__button {
    margin-top: 0;
    padding: 8px 17px 8px 23px;
    gap: 14px;
    background: rgb(165, 130, 185);
  }
}

.header-nav__button-text {
  color: #ffffff;
}

.header-nav__button-arrow {
  display: block;
  fill: #ffffff;
  margin-left: 10px;
  width: 14px;
}

.drawer-icon {
  padding: 10px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1000px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-checked.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bars {
  width: 30px;
  height: 16px;
  position: relative;
  z-index: 51;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 6px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 12px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #379761;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}

/*********************
mv
*********************/
.mv {
  padding-bottom: 220px;
}
@media screen and (min-width: 800px) {
  .mv {
    padding-bottom: 0;
  }
}

.mv__inner {
  max-width: 1200px;
}

.mv__image {
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  z-index: -1;
}
.mv__image::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 375/182;
  background: url(../images/lp/mv-bottom-sp.svg) no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 800px) {
  .mv__image::before {
    bottom: 0;
    width: min(100%, 779px);
    aspect-ratio: 779/203;
    background: url(../images/lp/mv-bottom-pc.svg) no-repeat center/contain;
  }
}

/*********************
intro
*********************/
.intro__circle {
  position: relative;
  height: 160px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c3e400), color-stop(90%, #c3e400), to(transparent));
  background: linear-gradient(to bottom, #c3e400 0%, #c3e400 90%, transparent 100%);
  overflow: hidden;
  z-index: 0;
}
.intro__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f1ffe3;
  clip-path: ellipse(56% 72% at 50% 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.intro__circle::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 238px;
  height: 72px;
  aspect-ratio: 375/182;
  background: url(../images/lp/deco-bird.svg) no-repeat center/contain;
  z-index: 0;
}
@media screen and (min-width: 800px) {
  .intro__circle {
    height: 240px;
  }
  .intro__circle::after {
    width: 360px;
    height: 110px;
  }
}

.intro-content {
  background: #f1ffe3;
}
@media screen and (min-width: 800px) {
  .intro-content {
    position: relative;
  }
  .intro-content::before {
    position: absolute;
    content: "";
    top: -200px;
    right: -20px;
    width: 400px;
    height: 400px;
    background: url(../images/lp/intro-staff.png) no-repeat center/contain;
  }
}
@media screen and (min-width: 1220px) {
  .intro-content::before {
    width: 516px;
    height: 516px;
  }
}

.intro__title {
  font-size: clamp(1.375rem, -1.9353448276rem + 6.8965517241vw, 2.375rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(2rem, -1.3103448276rem + 6.8965517241vw, 3rem);
}

.intro__text + .intro__text {
  margin-top: 24px;
}

.intro__image--sp {
  display: block;
}
@media screen and (min-width: 800px) {
  .intro__image--sp {
    display: none;
  }
}

.intro__image--sp img {
  display: block;
  margin-left: auto;
  margin-right: calc((100vw - 100%) / -2 - 8px);
}

.intro__image {
  margin-top: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 712px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .intro__image {
    margin-top: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 712px;
    margin-inline: auto;
  }
}

.intro-img1 {
  width: 149px;
  margin-right: auto;
}
@media screen and (min-width: 800px) {
  .intro-img1 {
    width: 195px;
  }
}

.intro-img2 {
  margin-top: -40px;
  width: 182px;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  .intro-img2 {
    margin-top: 0;
    width: 262px;
  }
}

.intro__deco {
  position: relative;
}

.intro__deco:before {
  position: absolute;
  content: "";
  bottom: -80px;
  left: 10%;
  width: 70px;
  height: 67px;
  background: url(../images/lp/deco-onion.svg) no-repeat center center/contain;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .intro__deco:before {
    bottom: -130px;
    width: 125px;
    height: 119px;
  }
}

.intro__deco:after {
  position: absolute;
  content: "";
  bottom: -100px;
  right: 35%;
  width: 57px;
  height: 58px;
  background: url(../images/lp/deco-rice.svg) no-repeat center center/contain;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .intro__deco:after {
    bottom: -160px;
    width: 102px;
    height: 104px;
  }
}

.intro__deco-item:after {
  position: absolute;
  content: "";
  bottom: -88px;
  right: 4%;
  width: 87px;
  height: 60px;
  background: url(../images/lp/deco-star.svg) no-repeat center center/contain;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .intro__deco-item:after {
    bottom: -100px;
    right: 13%;
    width: 155px;
    height: 108px;
  }
}

.intro__wave {
  position: relative;
  width: 100%;
  height: 75px;
  pointer-events: none;
  z-index: -1;
}

.intro__wave::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 1366/275;
  background: url(../images/common/wave.svg) no-repeat center center/cover;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 800px) {
  .intro__wave::after {
    top: -100px;
  }
}

.intro-bottom {
  position: relative;
  z-index: 2;
  margin-top: clamp(6.25rem, -10.3017241379rem + 34.4827586207vw, 11.25rem);
}

.delivery__lead {
  padding-top: 64px;
  border-bottom: 4px dotted #b1b1b1;
  padding-bottom: clamp(2.5rem, -4.1206896552rem + 13.7931034483vw, 4.5rem);
}

.intro-bottom__title {
  font-size: clamp(1.375rem, -0.2801724138rem + 3.4482758621vw, 1.875rem);
  font-weight: 700;
}

.intro-bottom__description {
  margin-top: clamp(1rem, -0.6551724138rem + 3.4482758621vw, 1.5rem);
  padding-bottom: clamp(2rem, -4.6206896552rem + 13.7931034483vw, 4rem);
}

.intro-bottom__description.flex {
  gap: 9.0909090909%;
}

@media screen and (min-width: 800px) {
  .intro-bottom__text {
    width: 50.5050505051%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.intro-bottom__image {
  padding-right: 0;
}
@media screen and (min-width: 800px) {
  .intro-bottom__image {
    padding-right: 90px;
    width: 40.404040404%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
  .intro-bottom__image::before {
    display: block;
    position: absolute;
    content: "";
    top: -78px;
    right: -18%;
    width: 71px;
    height: 66px;
    background: url(../images/lp/deco-tomato.svg) no-repeat center center/contain;
  }
  .intro-bottom__image::after {
    display: block;
    position: absolute;
    content: "";
    bottom: 0;
    right: -40%;
    width: 113px;
    height: 67px;
    background: url(../images/lp/deco-fish.svg) no-repeat center center/contain;
  }
}

.intro-bottom__image {
  margin-top: 24px;
}
@media screen and (min-width: 800px) {
  .intro-bottom__image {
    margin-top: 0;
  }
}

/*********************
delivery
*********************/
.delivery {
  padding-top: 56px;
  padding-bottom: clamp(2.5rem, -4.1206896552rem + 13.7931034483vw, 4.5rem);
}

.delivery__content {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 56px;
}
@media screen and (min-width: 800px) {
  .delivery__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px 10%;
  }
}

.delivery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
}

.delivery-item__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.25rem, -0.9913793103rem + 2.5862068966vw, 0.625rem);
}

.delivery-item__title {
  font-size: clamp(1.5rem, 1.0862068966rem + 0.8620689655vw, 1.625rem);
  font-weight: 700;
}

.delivery-item__title img {
  width: clamp(4.375rem, 2.7198275862rem + 3.4482758621vw, 4.875rem);
  display: inline-block;
  margin-right: 4px;
}

.delivery-item__image {
  text-align: center;
}
@media screen and (min-width: 800px) {
  .delivery-item__image {
    margin-top: auto;
  }
}

.delivery__bottom.flex {
  margin-top: 48px;
  gap: 24px;
}
@media screen and (min-width: 800px) {
  .delivery__bottom.flex {
    margin-top: 16px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4.2424242424%;
  }
}

@media screen and (min-width: 800px) {
  .delivery__bottom img:first-child {
    width: 22.2222222222%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.delivery__bottom__image {
  width: 335px;
}
@media screen and (min-width: 800px) {
  .delivery__bottom__image {
    width: 73.5353535354%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.delivery__bottom__image img {
  width: 335px;
}
@media screen and (min-width: 800px) {
  .delivery__bottom__image img {
    width: 100%;
  }
}

.delivery-button__wrapper {
  margin-top: clamp(3rem, -5.275862069rem + 17.2413793103vw, 5.5rem);
  max-width: 835px;
  width: 100%;
  margin-inline: auto;
  gap: clamp(1.25rem, -2.8879310345rem + 8.6206896552vw, 2.5rem);
}

/*********************
order
*********************/
.order__title {
  background: #ffa000;
  color: #ffffff;
  font-size: clamp(1.625rem, 0.3836206897rem + 2.5862068966vw, 2rem);
  font-weight: 700;
  padding: 16px;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (min-width: 800px) {
  .order__title {
    padding: 12px;
  }
}

.order-box__content {
  margin-top: -1px;
  border: 2px solid #ffa000;
  padding-block: 32px;
}

.order-box__title {
  text-align: center;
}
@media screen and (min-width: 800px) {
  .order-box__title {
    position: relative;
    z-index: 0;
  }
  .order-box__title::before {
    display: block;
    position: absolute;
    content: "";
    bottom: -12px;
    right: 0;
    width: 29%;
    aspect-ratio: 282/165;
    background: url(../images/lp/order-person.png) no-repeat center center/contain;
    z-index: 0;
  }
}

.order-box__title img {
  width: 214px;
}
@media screen and (min-width: 800px) {
  .order-box__title img {
    width: 285px;
  }
}

.order-points {
  margin-top: 64px;
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .order-points {
    width: 92%;
  }
}

.order-points.flex {
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .order-points.flex {
    gap: 2%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.order-point-box {
  position: relative;
  z-index: 0;
}

.order-point-box__head {
  background-color: #ffa000;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  position: absolute;
  top: -21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.order-point-box__text--en {
  font-family: "Fira Sans", sans-serif;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.order-point-box__number {
  font-family: "Fira Sans", sans-serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 0;
}

.order-point-box__text {
  font-size: 18px;
  background-color: #fff3e1;
  padding: 36px 16px;
}

.order-point-box__text.point3 {
  position: relative;
  z-index: 0;
}
.order-point-box__text.point3::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  height: 103px;
  background: url(../images/lp/order-form.png) no-repeat center center/contain;
  z-index: 1;
}

.order-point-box__image {
  margin-top: 100px;
  display: block;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .order-point-box__image {
    display: none;
  }
}

.order-items {
  margin-top: 40px;
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .order-items {
    margin-top: 64px;
    width: 92%;
  }
}

.order-items__title {
  font-size: clamp(1.25rem, 0.8362068966rem + 0.8620689655vw, 1.375rem);
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px dashed #333;
}

.order-item__wrapper.flex {
  margin-top: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .order-item__wrapper.flex {
    gap: 7%;
  }
}

@media screen and (min-width: 800px) {
  .order-item.select {
    width: 42%;
  }
}

@media screen and (min-width: 800px) {
  .order-item.mobile {
    width: 51%;
  }
}

.order-item.flex {
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .order-item.flex {
    gap: 2%;
  }
}

@media screen and (min-width: 800px) {
  .order-item__description.select {
    width: 68%;
  }
}

@media screen and (min-width: 800px) {
  .order-item__description.mobile {
    width: 58%;
  }
}

.order-item__title {
  position: relative;
  font-size: clamp(1.125rem, 0.7112068966rem + 0.8620689655vw, 1.25rem);
  font-weight: 700;
}

.order-item__title span {
  color: #ffa000;
}

.order-item__text {
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
}

.order-item__image {
  margin-inline: auto;
}

.order-item__image.select {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .order-item__image.select {
    width: 30%;
  }
}

.order-item__image.select img {
  width: 117px;
}

@media screen and (min-width: 800px) {
  .order-item__image.mobile {
    width: 45%;
  }
}

/*********************
event
*********************/
.event__circle {
  position: relative;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.event__circle::before {
  content: "";
  position: absolute;
  background: #f1ffe3;
  clip-path: ellipse(72% 72% at 50% 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 800px) {
  .event__circle {
    height: 240px;
  }
  .event__circle::before {
    clip-path: ellipse(56% 72% at 50% 100%);
  }
}

.event__title {
  margin: 0;
  padding-bottom: clamp(2.25rem, -0.6465517241rem + 6.0344827586vw, 3.125rem);
  position: relative;
  z-index: 2;
}

.event__wrapper {
  background: #f1ffe3;
  padding-bottom: clamp(1.25rem, -7.8534482759rem + 18.9655172414vw, 4rem);
}

.event__content {
  padding-top: 64px;
}

.event__content.flex {
  gap: 48px;
}
@media screen and (min-width: 800px) {
  .event__content.flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8%;
  }
}

.event-item__lead.deco {
  position: relative;
}
.event-item__lead.deco::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: clamp(4rem, -1.7931034483rem + 12.0689655172vw, 5.75rem);
  height: clamp(1.625rem, -0.650862069rem + 4.7413793103vw, 2.3125rem);
  background: url(../images/lp/deco-music.svg) no-repeat center center/contain;
}

.event-item__title {
  font-size: clamp(1.5rem, 0.6724137931rem + 1.724137931vw, 1.75rem);
  font-weight: 700;
}

.event-item__text {
  margin-top: clamp(0.5rem, -1.1551724138rem + 3.4482758621vw, 1rem);
}

.event-item__image {
  margin-top: clamp(0.75rem, -1.7327586207rem + 5.1724137931vw, 1.5rem);
  text-align: center;
}

/*********************
voice
*********************/
.voice {
  padding-top: clamp(6.25rem, -6.1637931034rem + 25.8620689655vw, 10rem);
}

.voice-title__bg {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  z-index: 1;
}
.voice-title__bg::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: clamp(17.5625rem, 11.1487068966rem + 13.3620689655vw, 19.5rem);
  height: clamp(3.3125rem, 2.0711206897rem + 2.5862068966vw, 3.6875rem);
  background: url(../images/lp/voice-title.svg) no-repeat center center/contain;
  z-index: 1;
}

.voice-title__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(1.625rem, 0.7974137931rem + 1.724137931vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

.voice__wrapper {
  background: url(../images/lp/bg-pink.png) no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.voice__wrapper::before {
  display: block;
  position: absolute;
  content: "";
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: url(../images/lp/deco-line.svg) no-repeat center center/cover;
  z-index: 1;
}
.voice__wrapper::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: url(../images/lp/deco-line.svg) no-repeat center center/cover;
  z-index: 1;
}

.voice__content {
  margin-inline: auto;
  padding-block: 64px 24px;
}
@media screen and (min-width: 800px) {
  .voice__content {
    padding-block: 32px 24px;
  }
}

.voice-item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1000px) {
  .voice-item.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-inline: 24px;
    padding-block: 24px;
  }
}

.voice-item:first-child {
  padding-bottom: 24px;
}
@media screen and (min-width: 1000px) {
  .voice-item.flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 800px) {
  .voice-item:first-child {
    border-bottom: 4px dotted #ffffff;
  }
}

.voice-item:nth-child(2) .voice-item__description--sp {
  padding-top: 24px;
  border-top: 4px dotted #ffffff;
}

.voice-item__description--pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .voice-item__description--pc {
    display: block;
    width: 53%;
  }
}

.voice-item__title {
  font-size: clamp(1.125rem, 0.2974137931rem + 1.724137931vw, 1.375rem);
  font-weight: 700;
}

.voice-item__text {
  margin-top: 12px;
}

.voice-item__image {
  max-width: 340px;
}
@media screen and (min-width: 1000px) {
  .voice-item__image {
    width: 46%;
    max-width: 100%;
  }
}

.voice-item__image img {
  width: 306px;
}
@media screen and (min-width: 800px) {
  .voice-item__image img {
    width: 387px;
  }
}

.voice-item__bottom.flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.voice-item-box.flex {
  margin-top: 16px;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 8px 16px;
  position: relative;
  z-index: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 300px;
  margin-inline: auto;
}
.voice-item-box.flex::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #ffffff;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .voice-item-box.flex {
    margin-top: -100px;
  }
}

.voice-item-box.gyoza {
  margin-top: 46px;
}
.voice-item-box.gyoza:before {
  height: 130px;
}
.voice-item-box.gyoza .voice-item-box__label {
  top: -43px;
}
@media screen and (min-width: 1000px) {
  .voice-item-box.gyoza {
    margin-top: 0;
  }
}

.voice-item-box__image {
  position: relative;
  z-index: 2;
}

.voice-item-box__label {
  color: #ffffff;
  text-align: center;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 148px;
  height: 31px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-top: 4px;
  background: #eb758a;
  z-index: 1;
}

.voice-item-box__description {
  position: relative;
  z-index: 2;
  width: 65%;
}

.voice-item-box__title.flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
}

.voice-item-box__title span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.voice-item-box__title img {
  width: 60px;
}

.voice-item-box__text {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.4;
}
@media screen and (min-width: 1000px) {
  .voice-item-box__text {
    font-size: 16px;
  }
}

.voice-item__description--sp {
  display: block;
  max-width: 340px;
  margin-inline: 24px;
}
.voice-item__description--sp .voice-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.voice-item__description--sp .voice-item__text {
  width: 52.6690391459%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.voice-item__description--sp .voice-item__bottom__image {
  width: 42.7046263345%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 8px;
}
@media screen and (min-width: 1000px) {
  .voice-item__description--sp {
    display: none;
  }
}

/*********************
store
*********************/
.store {
  padding-top: clamp(4rem, -7.5862068966rem + 24.1379310345vw, 7.5rem);
}

.store__inner {
  padding-bottom: clamp(2.5rem, -2.4655172414rem + 10.3448275862vw, 4rem);
  border-bottom: 4px dotted #b1b1b1;
}

.store__content {
  margin-top: 40px;
}

.store-item {
  gap: 48px;
}
@media screen and (min-width: 800px) {
  .store-item {
    gap: 8%;
  }
}

.store-item__description {
  margin-top: clamp(1.875rem, -5.1594827586rem + 14.6551724138vw, 4rem);
}
@media screen and (min-width: 800px) {
  .store-item__description {
    width: 45%;
  }
}

.store-item__title {
  font-size: clamp(1.375rem, -0.2801724138rem + 3.4482758621vw, 1.875rem);
  font-weight: 700;
}

.store-item__text {
  margin-top: 16px;
}

.store-item__image {
  margin-left: auto;
  margin-right: calc((100vw - 100%) / -2);
}
.store__lists.flex {
  margin-top: clamp(2rem, -4.6206896552rem + 13.7931034483vw, 4rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .store__lists.flex {
    gap: 8%;
  }
}

.store__list.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 800px) {
  .store__list.flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
}

.store__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.store__name {
  font-size: 24px;
  font-weight: 700;
}

.store__image img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .store__image img {
    width: 240px;
  }
}

.store__label {
  color: #379761;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #379761;
  padding: 2px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*********************
kazoku
*********************/
.kazoku {
  padding-top: clamp(4rem, -7.5862068966rem + 24.1379310345vw, 7.5rem);
}

.kazoku__wrapper {
  padding-top: clamp(4.5rem, -1.2931034483rem + 12.0689655172vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 6.849137931rem - 7.7586206897vw, 2rem);
  background: url(../images/lp/bg-green-sp.png) no-repeat center center/cover;
  max-width: 990px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .kazoku__wrapper {
    background: url(../images/lp/bg-green-pc.png) no-repeat center center/cover;
  }
}

.kazoku-kurashi__title {
  position: absolute;
  content: "";
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 310px;
  height: 53px;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi__title {
    top: -40px;
    width: 470px;
    height: 80px;
  }
}

@media screen and (min-width: 800px) {
  .kazoku-kurashi__content {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.kazoku-kurashi-item {
  padding-inline: clamp(1rem, -3.9655172414rem + 10.3448275862vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi-item {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.kazoku-item:first-child {
  padding-bottom: 24px;
}
@media screen and (min-width: 800px) {
  .kazoku-item:first-child {
    border-right: 4px dotted #379761;
    padding-bottom: 0;
  }
}

.kazoku-kurashi-item__top .green {
  color: #379761;
}

.kazoku-kurashi-item__top.fukushi {
  padding-top: 24px;
  border-top: 4px dotted #379761;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi-item__top.fukushi {
    padding-top: 0;
    border-top: 0;
  }
}

.kazoku-kurashi-item__title {
  font-size: clamp(1.5rem, 0.6724137931rem + 1.724137931vw, 1.75rem);
  font-weight: 700;
}

.kazoku-kurashi-item__text {
  margin-top: 12px;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi-item__text {
    min-height: 144px;
  }
}

.kazoku-kurashi-item__image {
  margin-top: clamp(0.5rem, -2.8103448276rem + 6.8965517241vw, 1.5rem);
  text-align: center;
}

.kazoku-place__lists {
  margin-top: 4px;
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  .kazoku-place__lists {
    margin-bottom: 24px;
  }
}

.kazoku-item__deco {
  background: url(../images/lp/deco-cup.svg) no-repeat center center/contain;
  width: 64px;
  height: 74px;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  .kazoku-item__deco {
    margin-top: clamp(1rem, -3.9655172414rem + 10.3448275862vw, 2.5rem);
    width: 80px;
    height: 87px;
  }
}

.kazoku-place {
  margin-top: 16px;
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  font-weight: 700;
}

@media screen and (min-width: 800px) {
  .kazoku-kurashi-item__button-wrapper {
    margin-top: auto;
  }
}

.kazoku-kurashi-item__button {
  width: 288px;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi-item__button {
    max-width: 400px;
    width: 90%;
  }
}

/*********************
kurashi
*********************/
.kurashi {
  padding-top: clamp(4rem, -7.5862068966rem + 24.1379310345vw, 7.5rem);
  padding-bottom: clamp(1.5rem, -6.775862069rem + 17.2413793103vw, 4rem);
}

.kurashi__wrapper {
  padding-top: clamp(4.5rem, -1.2931034483rem + 12.0689655172vw, 6.25rem);
  padding-bottom: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  background: url(../images/lp/bg-blue-pc.png) no-repeat center center/cover;
  max-width: 990px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .kurashi__wrapper {
    background: url(../images/lp/bg-blue-pc.png) no-repeat center center/cover;
  }
}

.kurashi-item__deco {
  margin-top: clamp(1rem, -7.275862069rem + 17.2413793103vw, 3.5rem);
  display: block;
  background: url(../images/lp/deco-bird2.svg) no-repeat center center/contain;
  width: 100px;
  height: 49px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .kurashi-item__deco {
    width: 126px;
    height: 62px;
  }
}

.kurashi-item__image {
  margin-top: clamp(0.5rem, -2.8103448276rem + 6.8965517241vw, 1.5rem);
  text-align: center;
}
@media screen and (min-width: 800px) {
  .kurashi-item__image {
    text-align: left;
  }
}

.kazoku-kurashi-item__top.service {
  padding-top: 24px;
  border-top: 4px dotted #28b1c9;
}
@media screen and (min-width: 800px) {
  .kazoku-kurashi-item__top.service {
    padding-top: 0;
    border-top: 0;
  }
}

.kurashi__service {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.9751243781%;
}

.kurashi__service__text {
  width: 55.7213930348%;
}

.kurashi__service__image {
  width: 39.3034825871%;
}

.kurashi-item:first-child {
  padding-bottom: 24px;
}
@media screen and (min-width: 800px) {
  .kurashi-item:first-child {
    border-bottom: none;
    border-right: 4px dotted #28b1c9;
    padding-bottom: 0;
  }
}

.kurashi-place {
  margin-top: 32px;
  margin-bottom: 24px;
  background-color: #fff;
  position: relative;
  padding: 24px 16px 16px;
}

.kurashi-place__title {
  color: #ffffff;
  font-weight: 500;
  background-color: #28b1c9;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  content: "";
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*********************
cta
*********************/
.cta {
  background-color: #c3e400;
  padding-block: 32px;
}

.cta__inner {
  max-width: 840px;
}

.cta-contact {
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 10px;
}

.cta-contact__title {
  font-size: clamp(1.0625rem, -0.3857758621rem + 3.0172413793vw, 1.5rem);
  color: #ffffff;
  font-weight: 500;
  background-color: #379761;
  text-align: center;
  border-radius: 10px;
  padding: 2px;
}

.cta-contact__name {
  margin-top: clamp(0.5rem, -1.1551724138rem + 3.4482758621vw, 1rem);
  font-size: clamp(0.875rem, -0.3663793103rem + 2.5862068966vw, 1.25rem);
  font-weight: 500;
}

.cta-contact__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-contact__number img {
  display: block;
  width: 10px;
}
@media screen and (min-width: 800px) {
  .cta-contact__number img {
    width: 12px;
  }
}

.cta-contact__number span {
  font-size: clamp(1.875rem, -0.1939655172rem + 4.3103448276vw, 2.5rem);
  font-weight: 700;
}
.cta-contact-button__wrapper {
  gap: 12px;
}
@media screen and (min-width: 800px) {
  .cta-contact-button__wrapper {
    gap: 40px;
  }
}

/*********************
footer
*********************/
.footer {
  padding-top: 16px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer {
    padding-top: 60px;
  }
}

.footer__deco {
  background: url(../images/lp/footer-top.svg) no-repeat center center;
  background-size: auto 100%;
  width: 100%;
  height: 56px;
}
@media screen and (min-width: 800px) {
  .footer__deco {
    background-size: cover;
    height: 88px;
  }
}

.footer__inner {
  margin-top: clamp(0rem, -3.3103448276rem + 6.8965517241vw, 1rem);
}

.footer__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 800px) {
  .footer__image {
    display: inline-block;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.footer__logo {
  padding-bottom: 16px;
}
@media screen and (min-width: 800px) {
  .footer__logo {
    padding-bottom: 0;
  }
}

.footer__logo img {
  width: 187px;
}
@media screen and (min-width: 800px) {
  .footer__logo img {
    width: 300px;
  }
}

@media screen and (min-width: 800px) {
  .footer__icon {
    position: absolute;
    content: "";
    top: 0;
    right: -200px;
    width: 125px;
    height: 125px;
  }
}

.footer__icon img {
  width: 88px;
}
@media screen and (min-width: 800px) {
  .footer__icon img {
    width: 125px;
  }
}

.copyright {
  padding-block: 16px;
}
.copyright small {
  font-size: clamp(0.75rem, 0.3362068966rem + 0.8620689655vw, 0.875rem);
}