@charset "UTF-8";
:root {
  --color-black: #333;
  --color-white: #FFF;
  --color-base-beige: #FBF9F6;
  --color-gray01: #D9D9D9;
  --color-dark-gray: #666;
  --color-orange01: #EC7C3F;
  --color-orange02: #E17564;
  --color-orange03: #E37D6D;
  --color-orange04: #F8664F;
  --color-green: #00AD4B;
  --color-yellow: #E3CF1A;
  --color-brown: #9B8979;
  --color-line-brand: #06C755;
  --color-airoven: #BDA435;
  --color-combo: #83B9A7;
  --font-snas: "Noto Sans JP", sans-serif;
  --font-avenir: "Avenir","Arial",sans-serif;
  --gutter-sp: 24px;
  --gutter-pc: 48px;
}

/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-snas);
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}

a {
  color: currentColor;
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

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

video {
  vertical-align: bottom;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
	layout
----------------------------------------*/
.wrapper {
  position: relative;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 var(--gutter-sp);
  box-sizing: content-box;
}
.container._narrow {
  max-width: 800px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 var(--gutter-pc);
  }
}

/*----------------------------------------
	Component
----------------------------------------*/
.button {
  display: inline-block;
  border-radius: 100vmax;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  background: #8A6ED7;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.7;
  }
}

/* fixed header
------------------------------------------------------ */
.fixed-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  padding: 20px 0 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  visibility: hidden;
  transition-property: transform, visibility;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.fixed-header.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.fixed-header.is-hidden {
  visibility: hidden;
}

.fixed-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.fixed-header__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fixed-header__logo {
  line-height: 0;
}
.fixed-header__logo img {
  width: auto;
  height: 14px;
}

.fixed-header__title {
  color: var(--color-dark-gray);
}

.fixed-header__button {
  padding: 4px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.fixed-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .fixed-header {
    padding: 24px 0 16px;
  }
  .fixed-header__inner {
    gap: 40px;
    padding: 0 40px;
  }
  .fixed-header__meta {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .fixed-header__logo img {
    height: 18px;
  }
  .fixed-header__button {
    padding: 8px 40px;
    font-size: 16px;
  }
  .fixed-header__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fixed-header__nav {
    display: block;
    line-height: 0;
  }
  .fixed-header__nav ul {
    display: flex;
    gap: 32px;
  }
  .fixed-header__nav a {
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    color: var(--color-dark-gray);
  }
}
@media (min-width: 992px) {
  .fixed-header__inner {
    gap: 80px;
    padding: 0 80px;
  }
}
/* header
------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 16px var(--gutter-sp) 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: auto;
  height: 14px;
}

.header__button {
  margin-right: calc(-1 * var(--gutter-sp) + 16px);
  padding: 8px 42px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .header {
    padding: 24px 32px 0;
  }
  .header__inner {
    align-items: flex-start;
  }
  .header__logo img {
    height: 20px;
  }
  .header__button {
    margin-right: 0;
    padding: 16px 58px;
  }
}
@media (min-width: 992px) {
  .header {
    padding: 32px 64px 0;
  }
}
/* kv
------------------------------------------------------ */
.kv {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 640px;
  color: #fff;
}

.kv__video {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.kv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kv__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.kv__copy {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}

.kv__title {
  margin: 8px calc(50% - 50vw);
  font-family: var(--font-avenir);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .kv {
    height: 800px;
  }
  .kv__copy {
    font-size: min(2.5vw, 35px);
    line-height: 1.7;
  }
  .kv__title {
    letter-spacing: 0;
    margin: 0 calc(50% - 50vw);
    font-size: min(7.1428571429vw, 100px);
    line-height: 1.37;
  }
}
@media (min-width: 1400px) {
  .kv {
    height: 57.1428571429vw;
    max-height: 100vh;
  }
  .kv__copy {
    font-size: 2.5vw;
    margin: 0 calc(50% - 50vw);
  }
  .kv__title {
    font-size: 7.1428571429vw;
  }
}
/* tvcm
------------------------------------------------------ */
.tvcm {
  padding: 56px 0 24px;
  background: #BCD3D9 url("../images/tvcm-bg_sp.webp") center/cover;
}

.tvcm__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
}

.tvcm__title {
  color: #FFF;
  margin-inline: calc(50% - 50vw);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.tvcm__content {
  max-width: 400px;
  margin: 0 auto;
}

.tvcm__movie-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.tvcm__movie {
  aspect-ratio: 16/9;
}
.tvcm__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .tvcm__title {
    margin-inline: initial;
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .tvcm {
    padding: 24px 0 40px;
    background-image: url("../images/tvcm-bg_pc.webp");
  }
  .tvcm__inner {
    flex-direction: row-reverse;
    gap: 60px;
    padding: 0;
  }
  .tvcm__title {
    flex-grow: 1;
  }
  .tvcm__content {
    width: 364px;
    margin: 0;
  }
  .tvcm__movie-title {
    font-size: 24px;
  }
  .tvcm__movie {
    aspect-ratio: 16/9;
  }
  .tvcm__movie video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
/* achievement
------------------------------------------------------ */
.achievement {
  padding: 16px 0 0;
}

.achievement__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 calc(var(--gutter-sp) * -1);
}
.achievement__list img {
  width: auto;
  height: 60px;
}

@media (min-width: 768px) {
  .achievement {
    padding: 32px 0 0;
  }
  .achievement__list {
    gap: 35px;
  }
  .achievement__list img {
    height: 96px;
  }
}
/* cta
------------------------------------------------------ */
.cta {
  padding: 28px 0 48px;
}

.cta__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 20px;
}

.cta__banner {
  margin: 24px auto 0;
}

@media (min-width: 768px) {
  .cta {
    padding: 64px 0;
  }
  .cta__inner {
    gap: 80px;
  }
  .cta__banner {
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .cta__inner {
    flex-direction: row-reverse;
    align-items: center;
  }
}
/* product
------------------------------------------------------ */
.product__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.product__img-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.product__img-wrap .product__img img {
  width: auto;
  height: 177px;
}

.product__name:has(wbr) {
  word-break: keep-all;
}

.product__en-name {
  margin-top: 36px;
  font-family: var(--font-avenir);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.product__tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.product__tag span {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 7px 1px;
  border-radius: 4px;
  border: 1px solid;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}

.product__color {
  margin-top: 4px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
}
.product__color:has(wbr) {
  word-break: keep-all;
}

.product__price {
  margin: 8px auto;
  font-family: var(--font-avenir);
  font-size: 21px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
}
.product__price em {
  font-size: 28px;
  font-style: normal;
}
.product__price span {
  font-family: var(--font-snas);
  font-size: 9px;
}

.product__button-wrap {
  display: flex;
  justify-content: center;
}

.product__button {
  padding: 12px 64px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.product__note {
  width: 100%;
  max-width: 311px;
  margin: 16px auto 0;
  padding: 1px 7px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  color: var(--color-orange01);
  border: 1px solid;
}

@media (min-width: 768px) {
  .product__heading {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .product__en-name {
    font-size: 18px;
    margin-top: 40px;
  }
  .product__img-wrap {
    min-width: 283px;
    gap: 40px;
  }
  .product__img-wrap .product__img img {
    height: 177px;
  }
  .product__note {
    width: 311px;
  }
}
/* message
------------------------------------------------------ */
.message {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

.message__video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
}

.message__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__inner {
  min-height: 680px;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  position: relative;
}

.message__content {
  padding: 64px 0;
  color: #fff;
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
}

.message__text {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .message__inner {
    justify-content: flex-start;
    align-items: center;
    margin-inline: initial;
    margin: 0 auto;
  }
}
/* about
------------------------------------------------------ */
.about {
  margin-top: -1px;
  padding-top: 50px;
  padding-bottom: 72px;
  background: url("../images/about_bg_sp.webp") top/cover;
}

.about__logo {
  text-align: center;
  max-width: 215px;
  margin: 0 auto 24px;
}

.about__title {
  color: #fff;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 37px;
}

.about__icon {
  max-width: 280px;
  margin: 0 auto 60px;
}

.about__video {
  width: 87.786259542vw;
  height: 87.786259542vw;
  overflow: hidden;
  margin-bottom: 16px;
}
.about__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_exp__wrapper {
  color: #fff;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about_exp__tag {
  color: var(--color-orange04);
  border: 2px solid var(--color-orange04);
  border-radius: 4.8px;
  display: inline-block;
  padding: 5px 10px;
}

.about_exp__img {
  max-width: 187px;
}

.about_exp__img_text {
  text-align: left;
  margin: -10px 0 20px 30px;
}

.about_exp__text {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about {
    padding-top: 70px;
    background: url("../images/about_bg_pc.webp") top/cover;
    padding-bottom: 90px;
  }
  .about__logo {
    margin-bottom: 37px;
    max-width: 343px;
  }
  .about__icon {
    max-width: 431px;
    margin-bottom: 53px;
  }
  .about__video {
    width: 77.5%;
    height: 0;
    padding-top: 43.6%;
    position: relative;
    margin: 0 auto 64px;
  }
  .about__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about_exp__wrapper {
    text-align: left;
    gap: 42px;
  }
  .about_exp__title {
    margin-bottom: 10px;
  }
  .about_exp__text {
    font-size: 20px !important;
    margin-bottom: 30px;
  }
  .about_exp__img {
    max-width: 274px;
  }
  .about_exp__img_text {
    margin: -18px 0 0 50px;
  }
}
/* chef
------------------------------------------------------ */
.chef {
  padding-top: 64px;
}

.chef__title {
  margin-bottom: 16px;
}

.chef__text {
  margin-bottom: 46px;
}

.chef__icon_wrapper {
  --g:22px;
  display: flex;
  gap: var(--g);
  flex-wrap: wrap;
  max-width: 263px;
  margin: 0 auto 45px;
  justify-content: center;
}

.chef__icon {
  text-align: center;
}

.chef__icon:nth-child(-n+3) {
  flex: 0 0 calc((100% - 2 * var(--g)) / 3);
}

.chef__icon:nth-child(n+4) {
  flex: 0 0 calc((100% - 1 * var(--g)) / 2 - 38px);
}

.chef__icon_img {
  height: 61px;
  margin-bottom: 5px;
}

.chef__bg {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

@media (min-width: 768px) {
  .chef {
    padding-top: 54px;
  }
  .chef__title {
    margin-bottom: 35px;
  }
  .chef__text {
    margin-bottom: 35px;
  }
  .chef__icon_wrapper {
    max-width: 473px;
    margin-bottom: 54px;
  }
  .chef__icon:nth-child(-n+3) {
    flex: 0 0 calc((100% - 88px) / 5); /* gap が 12px の場合 */
  }
  .chef__icon:nth-child(n+4) {
    flex: 0 0 calc((100% - 88px) / 5); /* gap が 12px の場合 */
  }
  .chef__icon_img {
    margin-bottom: 20px;
  }
  .chef__bg img {
    width: 100%;
  }
}
/* mode
------------------------------------------------------ */
.mode__title {
  color: var(--color-brown);
  margin-bottom: 16px;
}

.mode__text {
  margin-bottom: 56px;
  margin-inline: calc(50% - 50vw);
}

.mode__icon_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 64px;
}
.mode__icon_wrapper :after {
  content: "";
  height: 1px;
  width: 250px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #000;
}

.mode__icon {
  width: 100%;
  text-align: center;
}

.mode__icon_img {
  width: 119px;
  margin: 0 auto 13px;
}

.mode__icon_title {
  margin-bottom: 6px;
}

.mode__subtitle_wrapper {
  display: flex;
  gap: 19px;
  justify-content: center;
  align-items: center;
  margin-bottom: 38px;
}
.mode__subtitle_wrapper .mode__icon_img {
  width: 76px;
  margin: 0;
}

.mode__subtitle_contents {
  max-width: 240px;
}

.mode__subtitle {
  font-size: 20px;
}

.mode__container {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 95px;
  padding-top: 36px;
  padding-bottom: 38px;
}
.mode__container:before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 87.0229007634vw;
  height: 100%;
  border-radius: 0 15px 15px 0;
  background-color: var(--color-base-beige);
  z-index: -1;
  margin-inline: calc(50% - 50vw);
}

.mode__container:nth-of-type(odd):before {
  content: "";
  top: 0;
  left: inherit;
  right: 0;
  position: absolute;
  width: 87.0229007634vw;
  height: 100%;
  border-radius: 15px 0 0 15px;
  background-color: var(--color-base-beige);
  z-index: -1;
  margin-inline: calc(50% - 50vw);
}
.mode__container:nth-of-type(odd) .mode__text_wrapper {
  padding-left: 48px;
}

.mode__exp_wrapper {
  margin-bottom: 128px;
}

.mode__text_title {
  color: var(--color-orange02);
  margin-bottom: 26px;
}

.mode__text_subtitle {
  margin-bottom: 5px;
}

.mode__text_text {
  margin-bottom: 20px;
  max-width: 290px;
}

.mode__text_img {
  max-width: 294px;
}

.mode__exp_title {
  margin-bottom: 16px;
}

.mode__exp_text {
  margin-bottom: 56px;
}

.mode__image {
  width: 88.2951653944vw;
  margin-bottom: 25px;
}

.mode__img._has {
  position: relative;
}

.mode__img_add {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 142px;
  margin-bottom: -31px;
  margin-right: -7px;
}

.mode__info_type {
  font-family: var(--font-avenir);
  font-size: 21px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mode__info_type.airoven {
  color: var(--color-airoven);
}
.mode__info_type.combo {
  color: var(--color-combo);
}

.mode__info_title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 13px;
}

.mode__info_tag {
  font-size: 18px;
  font-family: var(--font-avenir);
  margin-top: 10px;
  margin-bottom: 12px;
  border: 1px solid CurrentColor;
  padding: 5px 7px 2px;
  line-height: 1;
  border-radius: 5px;
  display: inline-block;
}
.mode__info_tag.airoven {
  color: var(--color-airoven);
}
.mode__info_tag.combo {
  color: var(--color-combo);
}

.mode__airoven_wrapper {
  display: block;
}

.mode__airoven_wrapper.combo {
  margin-bottom: 0;
}

.mode__airoven {
  margin-bottom: 60px;
}
.mode__airoven.last {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .mode__text {
    margin-bottom: 53px;
  }
  .mode__icon_wrapper {
    gap: 63px;
    justify-content: center;
    max-width: 866px;
    margin: 0 auto 172px;
  }
  .mode__icon_wrapper :after {
    width: 100%;
  }
  .mode__icon {
    width: auto;
  }
  .mode__container {
    flex-wrap: nowrap;
    flex-direction: initial;
    gap: 40px;
    padding: 48px 0 80px;
    margin-bottom: 108px;
    position: relative;
  }
  .mode__container:before {
    width: 50vw;
    border-radius: 0;
  }
  .mode__container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 50%;
    width: 274px;
    height: 100%;
    border-radius: 0 15px 15px 0;
    background-color: var(--color-base-beige);
    z-index: -1;
  }
  .mode__container:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .mode__container:nth-of-type(odd):before {
    width: 50vw;
    border-radius: 0;
  }
  .mode__container:nth-of-type(odd):after {
    margin-left: 244px;
    border-radius: 15px 0 0 15px;
  }
  .mode__container:nth-of-type(odd) .mode__text_wrapper {
    padding-left: 0;
  }
  .mode__subtitle_wrapper {
    margin: 0 auto 58px;
    gap: 28px;
  }
  .mode__subtitle_wrapper.histeam {
    max-width: 439px;
  }
  .mode__subtitle_wrapper.airoven {
    max-width: 490px;
  }
  .mode__subtitle_wrapper.combo {
    max-width: 465px;
  }
  .mode__subtitle_wrapper .mode__icon_img {
    width: 119px;
  }
  .mode__subtitle {
    font-size: 34px;
  }
  .mode__subtitle_contents {
    gap: 27px;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
  }
  .mode__exp_wrapper {
    margin-bottom: 172px;
  }
  .mode__text_wrapper {
    width: 49%;
    padding-left: 0;
  }
  .mode__text_title {
    margin-bottom: 51px;
  }
  .mode__text_text {
    margin-bottom: 60px;
    max-width: none;
  }
  .mode__text_text.margin-thin {
    margin-bottom: 10px;
  }
  .mode__text_img {
    max-width: 490px;
  }
  .mode__image {
    max-width: 570px;
    margin-bottom: 0;
  }
  .mode__exp_title {
    margin-bottom: 22px;
  }
  .mode__exp_text {
    margin-bottom: 65px;
  }
  .mode__exp_img {
    max-width: 1000px;
    margin: 0 auto;
  }
  .mode__img {
    max-width: 453px;
  }
  .mode__img_add {
    width: 176px;
    margin-bottom: -46px;
    margin-right: -42px;
  }
  .mode__info_type {
    font-size: 28px;
    margin-top: 14px;
    margin-bottom: 21px;
  }
  .mode__info_title {
    font-size: 26px;
  }
  .mode__info_tag {
    font-size: 20px;
    margin-top: 7px;
    margin-bottom: 10px;
    padding: 6px 10px 4px;
  }
  .mode__airoven_wrapper {
    display: flex;
    gap: 80px;
    margin-bottom: 140px;
  }
  .mode__airoven {
    margin-bottom: 0;
  }
}
/* recipe
------------------------------------------------------ */
.recipe {
  padding: 64px 0;
}

.recipe__text {
  margin-top: 24px;
  margin-inline: calc(50% - 50vw);
}

.recipe__slider {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  margin-inline: calc(50% - 50vw);
}
.recipe__slider .swiper {
  width: 100%;
}
.recipe__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.recipe__slider .swiper-slide {
  width: 155px;
  margin-right: 12px;
}
.recipe__slider .swiper-slide img {
  aspect-ratio: 245/216;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.recipe-book {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  padding: 36px 0;
}
.recipe-book::before, .recipe-book::after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.recipe-book::before {
  top: 0;
}
.recipe-book::after {
  bottom: 0;
}

.recipe-book__annotation {
  color: #fff;
  background: var(--color-orange01);
}

.recipe-book__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recipe-book__copy {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.recipe-book__copy::before, .recipe-book__copy::after {
  content: "/";
  font-size: 20px;
  line-height: 1;
  margin-top: 15px;
}
.recipe-book__copy::before {
  scale: -1 1;
}

.recipe-book__img {
  width: 86.5139949109vw;
}

@media (min-width: 768px) {
  .recipe {
    padding: 80px 0;
  }
  .recipe__slider {
    margin-top: 64px;
  }
  .recipe__slider .swiper-slide {
    width: 245px;
  }
  .recipe__slider .swiper-slide img {
    border-radius: 12px;
  }
  .recipe__text {
    font-size: 20px !important;
  }
  .recipe-book {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    padding: 28px 0;
  }
}
@media (min-width: 992px) {
  .recipe-book__img {
    width: 382px;
  }
}
/* threesteps
------------------------------------------------------ */
.threesteps {
  padding: 64px 0;
  background: var(--color-base-beige);
}

.threesteps__title {
  color: var(--color-orange02);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.threesteps__step__num {
  color: var(--color-orange02);
}

.threesteps__text {
  margin-bottom: 38px;
}

.threesteps__inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.threesteps__movie {
  aspect-ratio: 9/16;
}
.threesteps__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.threesteps__tag-list {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.threesteps__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 2px solid;
  border-radius: 8px;
  color: var(--color-orange01);
}
.threesteps__tag em {
  margin: 0 1px;
  font-family: var(--font-avenir);
  font-style: normal;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  vertical-align: -3px;
}

.threesteps__step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 25px;
}

.threesteps__step__img {
  max-width: 98px;
}

.threesteps__step__text {
  font-size: 14px;
}

@media (min-width: 768px) {
  .threesteps {
    padding: 72px 0;
  }
  .threesteps__tag em {
    font-size: 36px;
  }
  .threesteps__step {
    margin-bottom: 22px;
    gap: 30px;
  }
  .threesteps__step__num {
    font-size: 24px;
  }
  .threesteps__title {
    margin-bottom: 0;
  }
  .threesteps__step__text {
    font-size: 16px;
    margin-bottom: 43px;
  }
  .threesteps__step__info {
    max-width: none;
  }
  .threesteps__step__img {
    max-width: 136px;
  }
}
@media (min-width: 992px) {
  .threesteps {
    padding: 80px 0;
  }
  .threesteps__inner {
    max-width: 1000px;
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
  .threesteps__movie {
    max-width: 361px;
  }
  .threesteps__content {
    flex-shrink: 0;
  }
}
/* frozenVegetable
------------------------------------------------------ */
.frozenVegetable {
  padding: 64px 0;
}

.frozenVegetable__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frozenVegetable__title sup {
  vertical-align: super;
  font-size: 60%;
}

.frozenVegetable__movie {
  max-width: 400px;
  margin: 40px auto 0;
  aspect-ratio: 345/200;
}
.frozenVegetable__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .frozenVegetable {
    padding: 72px 0;
  }
  .frozenVegetable__movie {
    max-width: none;
    aspect-ratio: 1010/384;
  }
  .frozenVegetable__movie video {
    border-radius: 20px;
  }
}
@media (min-width: 992px) {
  .frozenVegetable {
    padding: 80px 0;
  }
}
/* everyone
------------------------------------------------------ */
.everyone {
  padding: 64px 0;
  background: var(--color-base);
}

.everyone__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.everyone__head h2 {
  color: var(--color-beige01);
}

.lifestyle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lifestyle-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.lifestyle__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.lifestyle__tag {
  padding: 1px 7px;
  color: var(--color-orange01);
  border: 1px solid;
  border-radius: 4px;
}

.lifestyle__list {
  padding-left: 24px;
  list-style-type: disc;
}

.lifestyle__thumb {
  position: relative;
  z-index: 0;
  aspect-ratio: 240/312;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 24px;
  color: var(--color-white);
  border-radius: 12px;
}
.lifestyle__thumb::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 42%, #000 77%);
  opacity: 0.4;
  border-radius: inherit;
}

.lifestyle__img {
  position: absolute;
  z-index: -2;
  inset: 0;
  border-radius: inherit;
}
.lifestyle__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.lifestyle-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lifestyle-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.lifestyle-menu__list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  line-height: 1.6;
}
.lifestyle-menu__list img {
  aspect-ratio: 245/224;
  -o-object-fit: cover;
     object-fit: cover;
}

#lifestyleSlider .swiper-slide {
  width: 240px;
}
#lifestyleSlider .swiper-button-prev,
#lifestyleSlider .swiper-button-next {
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid;
  color: var(--color-orange01);
}
#lifestyleSlider .swiper-button-prev::after,
#lifestyleSlider .swiper-button-next::after {
  display: none;
}
#lifestyleSlider .swiper-button-prev svg,
#lifestyleSlider .swiper-button-next svg {
  width: 10px;
  height: 18px;
}
#lifestyleSlider .swiper-button-prev svg path,
#lifestyleSlider .swiper-button-next svg path {
  stroke: var(--color-orange01);
}
#lifestyleSlider .swiper-button-prev {
  left: 20px;
}
#lifestyleSlider .swiper-button-next {
  right: 20px;
}

@media (min-width: 768px) {
  .everyone {
    padding: 72px 0;
  }
  .everyone__head h2 {
    line-height: 1.1;
  }
  .lifestyle {
    gap: 16px;
  }
  .lifestyle-card {
    gap: 16px;
  }
  .lifestyle__tag {
    padding: 0 7px;
    line-height: 1.5 !important;
  }
  .lifestyle__thumb {
    aspect-ratio: 320/312;
  }
  #lifestyleSlider .swiper-slide {
    width: 320px;
  }
  #lifestyleSlider .swiper-button-prev,
  #lifestyleSlider .swiper-button-next {
    top: calc(50% - 32px);
    width: 64px;
    height: 64px;
  }
  #lifestyleSlider .swiper-button-prev svg,
  #lifestyleSlider .swiper-button-next svg {
    width: 13px;
    height: 22px;
  }
}
@media (min-width: 992px) {
  .everyone {
    padding: 80px 0;
  }
  .everyone__head {
    gap: 0;
  }
  .everyone__head h2 {
    white-space: nowrap;
    line-height: 1.8;
  }
}
@media (min-width: 1154px) {
  #lifestyleSlider .swiper-button-prev {
    left: calc(50% - 512px - 45px);
  }
  #lifestyleSlider .swiper-button-next {
    right: calc(50% - 512px - 45px);
  }
}
/* scene
------------------------------------------------------ */
.scene {
  max-width: 400px;
  margin-inline: auto;
  background-color: var(--color-base-beige);
  padding-top: 64px;
  padding-bottom: 64px;
}

.scene__title {
  color: var(--color-orange02);
  margin-bottom: 16px;
}

.scene__grid {
  display: grid;
  grid-template-rows: auto;
  gap: 40px;
  margin-top: 40px;
}

.scene-box__img img {
  border-radius: 8px;
}

.scene-box__label {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.scene-box__tag {
  margin-top: 24px;
}
.scene-box__tag span {
  display: inline-block;
  padding: 0 7px;
  border-radius: 4px;
  border: 1px solid;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.scene-box__title.h3 {
  font-weight: bold;
  margin-top: 24px;
  color: var(--color-orange02);
}

.scene-box__id {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}

.scene-box__text {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .scene {
    max-width: 100%;
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .scene__title {
    margin: 0 calc(50% - 50vw) 10px;
  }
  .scene__grid {
    gap: 23px;
    margin-top: 90px;
    grid-template-columns: repeat(3, 1fr);
  }
  .scene-box__text {
    margin-top: 16px;
  }
}
/* features
------------------------------------------------------ */
.features {
  overflow: hidden;
  padding: 64px 0;
}

.features__title {
  color: var(--color-brown);
  text-align: center;
}

.features-block-wrap {
  max-width: 400px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.features-block {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.features__media {
  aspect-ratio: 345/273;
}
.features__media video,
.features__media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.features__num {
  color: var(--color-orange03);
}

.features__heading {
  margin-top: 16px;
}

.features__text {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .features {
    padding: 72px 0;
  }
  .features-block-wrap {
    max-width: none;
    margin: 56px auto 0;
    gap: 60px;
  }
  .features-block {
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 40px;
  }
  .features__media {
    flex-shrink: 0;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 992px) {
  .features {
    padding: 80px 0;
  }
  .features__inner {
    max-width: none;
    padding: 0 70px;
  }
  .features__title {
    text-align: left;
  }
  .features-block-wrap {
    flex-direction: row;
    margin: 56px calc(50% - 50vw) 0;
    padding: 0 70px;
  }
  .features-block {
    flex-shrink: 0;
    gap: 60px;
  }
  .features__content {
    flex-shrink: 0;
    width: 400px;
  }
  .features__media {
    width: 492px;
  }
}
/* 5 modes
------------------------------------------------------ */
.mode {
  padding: 64px 0;
  background: var(--color-base);
}

.mode__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mode__head h2 {
  color: var(--color-beige01);
}

.menu-list {
  max-width: 400px;
  margin: 56px auto;
  display: grid;
  grid-template-rows: auto;
  gap: 56px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu__head {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.menu__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu__tag {
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
}
.menu__tag[data-style-background=tomato] {
  background: #ED6E6E;
}
.menu__tag[data-style-background=mediumpurple] {
  background: #8A6ED7;
}
.menu__tag[data-style-background=lightgreen] {
  background: #89BC44;
}
.menu__tag[data-style-background=skyblue] {
  background: #6EBECE;
}

.menu__time {
  font-size: 12px;
  line-height: 1.6;
}
.menu__time em {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.menu__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu__thumb img {
  border-radius: 16px;
}

.menu__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.other-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.other-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.other-menu__list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
}
.other-menu__list img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.warm {
  max-width: 400px;
  margin: 56px auto 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--color-base-beige);
  border-radius: 8px;
}

.warm__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.warm__tag {
  padding: 0 12px;
  border: 2px solid;
  border-radius: 8px;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.warm__img img {
  border-radius: 8px;
}

@media (min-width: 768px) {
  .mode {
    padding: 72px 0;
  }
  .mode__head {
    gap: 0;
  }
  .menu-list {
    max-width: none;
    margin: 72px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
  .other-menu__list span {
    height: 38.4px;
  }
  .warm {
    max-width: none;
    margin: 72px auto 0;
    padding: 40px 48px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    border-radius: 16px;
  }
  .warm__content p {
    margin-top: 16px;
  }
  .warm__img {
    flex-shrink: 0;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 992px) {
  .mode {
    padding: 80px 0;
  }
  .menu-list {
    margin: 88px auto;
    gap: 80px 40px;
  }
  .menu {
    gap: 24px;
  }
  .menu__tag {
    padding: 2px 14px;
    font-size: 20px;
  }
  .menu__time {
    font-size: 16px;
  }
  .menu__time em {
    font-size: 24px;
  }
  .warm {
    padding: 40px 70px;
  }
}
/* cooking system
------------------------------------------------------ */
.cookingSystem {
  padding: 64px 0;
  color: var(--color-base-beige);
  background: var(--color-black);
}

.cookingSystem__title {
  color: var(--color-beige01);
}

.cookingSystem-block {
  max-width: 400px;
  margin: 40px auto 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookingSystem__movie {
  margin: 0 calc(50% - 50vw);
  aspect-ratio: 393/221;
}
.cookingSystem__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cookingSystem__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookingSystem__tag {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--color-orange01);
}
.cookingSystem__tag span {
  padding: 3px 9px;
  border: 1px solid;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.cookingSystem-point {
  max-width: 400px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.cookingSystem-point__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--color-white);
}

.cookingSystem-point__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-avenir);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.375;
  text-transform: uppercase;
  color: var(--color-orange01);
}
.cookingSystem-point__label::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--color-white);
}

.cookingSystem-point__img img {
  border-radius: 16px;
}

@media (min-width: 768px) {
  .cookingSystem {
    padding: 72px 0;
  }
  .cookingSystem__title {
    line-height: 1.1 !important;
  }
  .cookingSystem-block {
    max-width: none;
    margin: 40px auto 68px;
    gap: 48px;
  }
  .cookingSystem__movie {
    margin: 0;
  }
  .cookingSystem__movie video {
    border-radius: 24px;
  }
  .cookingSystem__content {
    gap: 24px;
  }
  .cookingSystem__tag {
    margin-top: 0;
  }
  .cookingSystem-point {
    max-width: none;
    margin: 68px auto 0;
    flex-direction: row-reverse;
    align-items: center;
  }
  .cookingSystem-point__content {
    gap: 24px;
    padding: 0 0 39px;
  }
  .cookingSystem-point__label {
    font-size: 28px;
    line-height: 1.3571428571;
  }
  .cookingSystem-point__img {
    flex-shrink: 0;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 992px) {
  .cookingSystem {
    padding: 80px 0;
  }
  .cookingSystem__title {
    line-height: 1.8 !important;
  }
  .cookingSystem-block {
    margin: 40px auto 80px;
  }
  .cookingSystem-point {
    margin: 80px auto 0;
    gap: 88px;
  }
  .cookingSystem-point__img {
    width: calc((100% - 88px) / 2);
  }
}
/* reviews
------------------------------------------------------ */
.reviews {
  padding: 64px 0;
  background: var(--color-base-beige);
}

.reviews__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews__head h2 {
  color: var(--color-beige01);
}

.reviews-card-list {
  margin: 40px -8px 0;
}

.reviews-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 16px 8px;
}
.reviews-card-wrap[aria-hidden=true] {
  display: none;
}
.reviews-card-wrap + .reviews-card-wrap {
  margin-top: 16px;
}

.reviews-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px;
  border-radius: 24px;
  color: #000;
  background: #FFF;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
}

.reviews-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.reviews-card__star {
  color: #E3CF1A;
}

.reviews-card__text {
  font-size: 14px;
  line-height: 1.6;
}
.reviews-card__text > *:not(:first-child) {
  margin-top: 1.6em;
}

.reviews__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 284px;
  margin: 40px auto 0;
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--color-dark-gray);
  background: none;
  border: 1px solid;
  border-radius: 100vmax;
}

@media (min-width: 768px) {
  .reviews {
    padding: 72px 0;
  }
  .reviews__head {
    gap: 0;
  }
  .reviews-card-list {
    margin: 40px auto 0;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
  }
  .reviews-card-wrap {
    display: contents;
  }
  .reviews-card-wrap[aria-hidden=true] {
    display: contents;
  }
  .reviews-card {
    padding: 48px 32px;
  }
  .reviews-card__title {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .reviews__button {
    display: none;
  }
}
@media (min-width: 992px) {
  .reviews {
    padding: 80px 0;
  }
  .reviews-card-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .reviews-card__title {
    font-size: 24px;
  }
}
/* easyCare
------------------------------------------------------ */
.easyCare {
  padding: 64px 0;
  background: var(--color-base);
}

.easyCare__title {
  color: var(--color-beige01);
}

.easyCare__youtube {
  max-width: 400px;
  margin: 40px auto;
  aspect-ratio: 16/9;
}
.easyCare__youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.maintenance {
  max-width: 400px;
  margin: 40px auto 0;
  padding: 22px;
  border: 2px solid var(--color-gray01);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.maintenance__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maintenance__img img {
  border-radius: 8px;
}

@media (min-width: 768px) {
  .easyCare {
    padding: 72px 0;
  }
  .easyCare__youtube {
    max-width: none;
  }
  .maintenance {
    max-width: none;
    padding: 38px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .maintenance__content {
    gap: 24px;
  }
  .maintenance__img {
    flex-shrink: 0;
    width: 177px;
  }
}
@media (min-width: 992px) {
  .easyCare {
    padding: 80px 0;
  }
  .maintenance {
    gap: 56px;
  }
}
/* faq
------------------------------------------------------ */
.faq {
  padding: 64px 0;
  background: var(--color-base-beige);
}

.faq__title + * {
  margin-top: 40px;
}

.faq__list {
  counter-reset: question;
}

.faq__list-question {
  position: relative;
  margin-top: 16px;
  padding: 8px 24px 8px 68px;
  min-height: 42px;
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.faq__list-question::before {
  position: absolute;
  top: 8px;
  left: 24px;
  counter-increment: question;
  content: "Q" counter(question) ".";
  font-family: var(--font-avenir);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

@media (any-hover: hover) {
  .faq__list-question:hover {
    color: var(--color-beige01);
  }
}
.faq__list-answer {
  position: relative;
  padding: 0 24px 0 48px;
  overflow: hidden;
  max-height: 0;
  transition-property: max-height, margin;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.faq__list-answer::before {
  position: absolute;
  top: 0;
  left: 24px;
  content: "A.";
  font-family: var(--font-avenir);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}
.faq__list-answer > * + * {
  margin-top: 1.6em;
}
.faq__list-answer.is-open {
  margin: 14px 0 16px;
}

@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  .faq__title + * {
    margin-top: 56px;
  }
  .faq__list-question::before,
  .faq__list-answer::before {
    font-size: 18px;
  }
}
/* spec
------------------------------------------------------ */
.spec {
  padding: 64px 0;
}

.spec__heading + * {
  margin-top: 48px;
}

.spec .product__button {
  padding: 20px 40px;
  width: 100%;
  max-width: 380px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.spec .product__tag {
  margin: 8px auto;
}
.spec .product__tag span {
  padding: 2px 11px;
  color: var(--color-dispenser-blue-gray);
  border-color: var(--color-gray01);
}

.spec .product__price {
  margin: 24px auto;
  font-size: 24px;
}
.spec .product__price em {
  font-size: 32px;
}
.spec .product__price span {
  font-size: 10px;
}

.spec .product__note {
  max-width: 336px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .spec {
    padding: 80px 0;
  }
  .spec__heading + * {
    margin-top: 56px;
  }
  .spec .product__name {
    font-size: 30px;
  }
  .spec .product__tag {
    margin: 16px auto;
  }
  .spec .product__color {
    font-size: 16px;
  }
  .spec .product__note {
    margin-top: 40px;
    font-size: 14px;
  }
  .spec .product__img-wrap {
    min-width: none;
    gap: 54px;
  }
  .spec .product__img-wrap .product__img img {
    height: 317px;
  }
}
@media (min-width: 992px) {
  .spec {
    padding: 104px 0;
  }
}
/* LINE
------------------------------------------------------ */
.line-block {
  max-width: 400px;
  margin: 48px auto 0;
  padding: 24px 0;
  border-radius: 12px;
  color: var(--color-white);
  background: var(--color-line-brand);
}

.line-block__inner {
  max-width: 570px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.line-block__content {
  flex-grow: 1;
}

.line-block__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}

.line-block__text {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
}
.line-block__text span {
  padding: 1px 7px;
  border: 1px solid;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}

.line-block__button {
  padding: 12px 72px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  white-space: nowrap;
  color: var(--color-green);
  background: var(--color-white);
}

.line-block__qr {
  display: none;
}

@media (min-width: 768px) {
  .line-block {
    max-width: none;
    margin: 56px auto 0;
  }
  .line-block__inner {
    flex-direction: row;
  }
  .line-block__title {
    font-size: 20px;
    text-align: left;
  }
  .line-block__text {
    align-items: flex-start;
  }
  .line-block__text span {
    padding: 3px 15px;
    font-size: 16px;
  }
  .line-block__button {
    display: none;
  }
  .line-block__qr {
    display: block;
    flex-shrink: 0;
    width: 100px;
  }
}
/* footer
------------------------------------------------------ */
.footer {
  display: flex;
  flex-direction: column;
}
.footer::before {
  content: "";
  height: 56.2340966921vw;
  max-height: 600px;
  background: url("../images/footer-bg_sp.webp") center/cover;
}

.footer__bottom {
  width: 100%;
  padding: 48px 0 32px;
  color: #FFF;
  background: var(--color-black);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 32px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.footer__logo {
  line-height: 1;
}
.footer__logo img {
  width: auto;
  height: 16px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__nav {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a {
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__nav a:hover {
    opacity: 0.5;
  }
}

.footer__sns {
  display: flex;
  gap: 28px;
}
.footer__sns a {
  width: 32px;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__sns a:hover {
    opacity: 0.5;
  }
}

.footer__copyright {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  color: var(--color-gray01);
}

@media (min-width: 768px) {
  .footer::before {
    background-image: url("../images/footer-bg_pc.webp");
  }
  .footer__bottom {
    padding: 56px 0 40px;
  }
  .footer__bottom-inner {
    align-items: flex-end;
  }
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }
  .footer__info {
    align-items: flex-end;
    gap: 16px;
  }
  .footer__nav ul {
    flex-direction: row;
    gap: 40px;
  }
}
/*----------------------------------------
	Utility
----------------------------------------*/
.h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 30px;
  }
}

.h3 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 24px;
  }
}

.h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 20px;
  }
}

.body-l {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .body-l {
    font-size: 20px;
  }
}

.body-m {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-m {
    font-size: 16px;
  }
}

.body-s {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-s {
    font-size: 14px;
  }
}

.body-ss {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-ss {
    font-size: 12px;
  }
}

.caption {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
}

.el-title {
  font-family: var(--font-avenir);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .el-title {
    font-size: 80px;
    line-height: 1.8;
  }
}

.el-number {
  font-family: var(--font-avenir);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .el-number {
    font-size: 56px;
  }
}

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

.text-center {
  text-align: center;
}

.md-visible {
  display: none;
}
@media (min-width: 768px) {
  .md-visible {
    display: initial;
  }
}

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

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

/*----------------------------------------
	Animation
----------------------------------------*/
[data-scroll-anima] {
  opacity: 0;
}

.fadeIn {
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease-out;
  opacity: 0;
}
.fadeIn[data-scroll-anima=true] {
  opacity: 1;
}

.scaleIn {
  transition-property: opacity, scale;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
  opacity: 0;
  scale: 0.95;
}
.scaleIn[data-scroll-anima=true] {
  opacity: 1;
  scale: 1;
}

.slideUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.69, 0, 0.33, 1), transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slideUp[data-scroll-anima=true] {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */