@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  background: #ffffff;
  color: #333;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  position: relative;
}
.heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #f7c6bd;
  position: absolute;
  top: 58px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
  }
}

/* header */
.header {
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 21px 21px 15px;
}

.header__logo a {
  font-size: 30px;
  letter-spacing: 7px;
}
.header__logo a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    width: 135px;
    padding-top: 6px;
  }
}

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

.header__nav {
  background: #f7c6bd;
  width: 130px;
  height: calc(40% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__lists {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -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: 46px;
  }
}

.header__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #111111;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #f7c6bd;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1), .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #f7c6bd;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

/* fv */
.fv__inner {
  position: relative;
}

.fv__image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 990px;
    margin-left: auto;
    /* 右に寄せる */
    display: block;
  }
}

.fv__message {
  margin-top: 30px;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    top: 0;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.fv__title {
  font-size: 26px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 68px;
  }
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: inline;
  }
}

.fv__text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 30px;
  }
}

.fv__text2 {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .fv__text2 {
    font-size: 40px;
  }
}

/* products */
.products {
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .products {
    margin-top: 100px;
    max-width: 1020px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.products__inner {
  padding-left: 56px;
  padding-right: 56px;
}

.products__cards {
  margin-top: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .products__cards {
    margin-top: 88px;
    gap: 100px;
  }
}

.products__card {
  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;
}

.products__card-title {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__card-title {
    font-size: 30px;
  }
}
.products__card-title.is-type {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .products__card-title.is-type {
    font-size: 25px;
  }
  .products__card-title.is-type br {
    display: none;
  }
}

.products__image {
  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;
}
.products__image .products__image1 {
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .products__image .products__image1 {
    width: 50%;
    height: auto;
  }
}
.products__image .products__image2 {
  width: 80%;
  margin-left: auto;
}
.products__image .products__image3 {
  width: 60%;
  margin-left: auto;
}

.products__text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .products__text {
    font-size: 20px;
  }
}

.button {
  color: #f7c6bd;
  font-size: 14px;
  letter-spacing: 0.02px;
  min-width: 158px;
  display: inline-block;
  border: 1px solid #f7c6bd;
  padding: 11px 3px;
  padding-left: 52px;
  padding-right: 52px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.button:hover {
  background: #f7c6bd;
  color: #ffffff;
}

.footer {
  padding-block: 60px 7px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__inner {
  padding-left: 52.5px;
  padding-right: 52.5px;
}

.footer__logo a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 7px;
  display: grid;
  place-items: center;
}
.footer__logo a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    width: 135px;
    padding-top: 6px;
    margin: 0 auto;
    font-size: 30px;
  }
}

.footer__message {
  margin-top: 16px;
}

.footer__text {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 20px;
  }
}

.footer__sns-items {
  margin-top: 18px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .footer__sns-items {
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 65px;
  }
}

.footer__sns-item {
  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: 4px;
}
@media screen and (min-width: 768px) {
  .footer__sns-item a img:hover {
    opacity: 0.6;
  }
}

.footer__sns-link {
  display: block;
  text-align: center;
}
.footer__sns-link a img {
  width: 100px;
  height: 100px;
}

.footer__sns-item-text {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__sns-item-text {
    font-size: 16px;
  }
}

.footer__copyright {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
}
.footer__copyright small {
  color: #888;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}