.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

.title {
  text-align: center;
}

.title-en {
  letter-spacing: 0.1em;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .title-en {
    font-size: clamp(0px, 2.1538461538vw, 28px);
  }
}

.title-ja {
  font-size: 8px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .title-ja {
    font-size: clamp(0px, 1.0769230769vw, 14px);
  }
}

.line {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .line {
    padding-top: 30px;
  }
}
.line img {
  height: 20px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .line img {
    height: 40px;
  }
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.fade-up.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.fv {
  position: relative;
  z-index: 1;
}

.fv__inner {
  position: relative;
}
.fv__inner::after {
  content: "";
  position: absolute;
  background-image: url(../img/fv-deco.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 180px;
  bottom: -110px;
  right: 20px;
  z-index: 50;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  -webkit-animation: fvDeco 4s ease infinite;
          animation: fvDeco 4s ease infinite;
}
@media screen and (min-width: 768px) {
  .fv__inner::after {
    width: 30px;
    height: 300px;
    bottom: -186px;
    right: 12%;
  }
}

@-webkit-keyframes fvDeco {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  45% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  71% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes fvDeco {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  45% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  71% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}
.fv__img {
  position: relative;
  height: 100%;
}
.fv__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(140, 80, 80, 0.12);
}
@media screen and (min-width: 768px) {
  .fv__img::before {
    background: rgba(80, 40, 40, 0.22);
  }
}

.fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fv__content .fv__content-title {
  -webkit-animation: fvFloat 5s ease-in-out infinite;
          animation: fvFloat 5s ease-in-out infinite;
}
.fv__content .fv__content-title img {
  width: clamp(0px, 76.9230769231vw, 461.54px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv__content .fv__content-title img {
    width: clamp(0px, 38.4615384615vw, 500px);
  }
}
@-webkit-keyframes fvFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fvFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv__content .fv__content-text {
  text-align: center;
  color: #fff;
  padding-top: 30px;
  font-size: clamp(12px, 3.0769230769vw, 16px);
}
@media screen and (min-width: 768px) {
  .fv__content .fv__content-text {
    padding-top: 70px;
    font-size: clamp(0px, 1.4615384615vw, 19px);
  }
}

.fv__intro {
  text-align: center;
}

.fv__intro-title {
  padding-top: 50px;
  padding-bottom: 20px;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .fv__intro-title {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 25px;
  }
}

.fv__intro-text {
  line-height: 2;
  font-size: 11px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .fv__intro-text {
    padding-bottom: 30px;
    font-size: clamp(0px, 1.1538461538vw, 15px);
    padding-bottom: clamp(0px, 2.3076923077vw, 30px);
  }
}

.recommended__inner {
  padding-bottom: clamp(0px, 24.6153846154vw, 147.69px);
  position: relative;
  padding-top: 80px;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .recommended__inner {
    padding-top: 80px;
    padding-bottom: 200px;
  }
}
.recommended__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(45deg, #e8c8cd 0%, #e8dfd2 70%, #d5e6ea 100%);
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.recommended__boxes {
  padding-top: 20px;
  width: clamp(0px, 89.7435897436vw, 461.54px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .recommended__boxes {
    padding-top: 30px;
    width: clamp(0px, 69.2307692308vw, 900px);
    gap: 70px;
  }
}

.recommended__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .recommended__box {
    gap: 30px;
  }
}
.recommended__box--type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .recommended__box--type2 {
    gap: 50px;
  }
}
.recommended__box--type3 {
  width: clamp(0px, 76.9230769231vw, 461.54px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recommended__box--type3 {
    width: clamp(0px, 57.6923076923vw, 750px);
  }
}

.recommended-top__number img {
  width: clamp(0px, 20.5128205128vw, 153.85px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .recommended-top__number img {
    width: clamp(0px, 13.0769230769vw, 170px);
  }
}

.recommended-top__title {
  padding-top: 10px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .recommended-top__title {
    padding-top: 50px;
    font-size: 30px;
    padding-top: clamp(0px, 3.8461538462vw, 50px);
    font-size: clamp(0px, 2.3076923077vw, 30px);
  }
}

.recommended-top__text {
  padding-top: 10px;
  font-size: 9px;
}
@media screen and (min-width: 768px) {
  .recommended-top__text {
    padding-top: 20px;
    padding-top: clamp(0px, 1.5384615385vw, 20px);
    font-size: clamp(0px, 1.1538461538vw, 15px);
  }
}

.recommended__box-img img {
  height: clamp(0px, 23.0769230769vw, 138.46px);
  width: auto;
}
@media screen and (min-width: 768px) {
  .recommended__box-img img {
    height: clamp(0px, 20vw, 260px);
  }
}
.recommended__box-img--type2 img {
  height: clamp(0px, 17.9487179487vw, 107.69px);
  width: auto;
}
@media screen and (min-width: 768px) {
  .recommended__box-img--type2 img {
    height: clamp(0px, 13.4615384615vw, 175px);
  }
}

.info__inner {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.info__list {
  padding-top: 20px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .info__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 80px;
    gap: clamp(40px, 6.9230769231vw, 90px);
  }
}

.info__item {
  width: clamp(0px, 76.9230769231vw, 400px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info__item {
    width: 390px;
  }
}

.info__logo {
  width: 90px;
  margin: 0 auto;
}
.info__logo img {
  width: 100%;
  height: auto;
}

.info__image {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .info__image {
    padding-top: 30px;
  }
}
.info__image img {
  width: 100%;
  height: auto;
}

.info__title {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info__title {
    padding-top: 30px;
    font-size: clamp(0px, 1.5384615385vw, 20px);
  }
}

.info__text {
  padding-top: 10px;
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .info__text {
    padding-top: 25px;
    font-size: clamp(0px, 1.1538461538vw, 15px);
  }
}

.menu__inner {
  position: relative;
  padding-top: 73px;
  padding-bottom: 161px;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .menu__inner {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
.menu__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #d7e3df 0%, #e8dfd2 50%, #e8c8cd 100%);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 92%);
}
.menu__inner--type2 {
  padding-top: 0;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .menu__inner--type2 {
    padding-bottom: 80px;
  }
}
.menu__inner--type2::before {
  display: none;
}

.menu__content {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .menu__content {
    width: clamp(0px, 73.8461538462vw, 960px);
  }
}
.menu__content img {
  width: 100%;
  height: auto;
  display: block;
}
.menu__content::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 78px;
  right: 6px;
  bottom: -145px;
  background-image: url(../img/menu-deco.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .menu__content::after {
    right: -60px;
    bottom: -136px;
    width: 172px;
    height: 135px;
  }
}
.menu__content.is-shake::after {
  -webkit-animation: decoShake 0.8s ease;
          animation: decoShake 0.8s ease;
}
.menu__content--type2::after {
  left: 18px;
  bottom: 16px;
  right: auto;
}
@media screen and (min-width: 768px) {
  .menu__content--type2::after {
    left: 82px;
    bottom: 33px;
  }
}

@-webkit-keyframes decoShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  80% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes decoShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  80% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.menu__button {
  position: relative;
  overflow: hidden;
  width: 60%;
  max-width: 280px;
  height: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #69b8b6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .menu__button {
    width: 100%;
    max-width: 375px;
    height: 45px;
    font-size: 14px;
  }
}
.menu__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}
.menu__button:hover::before {
  left: 140%;
}
.menu__button:hover {
  opacity: 0.8;
}
.menu__button--type2 {
  background-color: #94bae3;
}