:root {
  --color-black: #333;
  --color-white: #FFF;
  --color-beige01: #FFFBF8;
  --color-beige02: #FFF3E9;
  --color-brown: #C65B14;
  --color-kettle-base: linear-gradient(147.25deg, #FAE5D3 0.19%, #F0C39E 100%);
  --color-base: #FBF9F6;
  --color-base-gray: #F3F0EB;
  --color-gray01: #D9D9D9;
  --color-dark-gray: #666;
  --color-orange01: #EC7C3F;
  --color-green: #00AD4B;
  --color-yellow: #E3CF1A;
  --color-line-brand: #06C755;
  --font-snas: "Noto Sans JP", sans-serif;
  --font-avenir: "Avenir","Arial",sans-serif;
  --gutter-sp: 24px;
  --gutter-sp-kv: 8.5px;
  --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;
}
.button[tabindex="-1"] {
  pointer-events: none;
}
@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%;
  padding: 0 var(--gutter-sp-kv);
}

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

.kv__title {
  margin: 8px 0;
  font-family: var(--font-avenir);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.kv__title:has(wbr) {
  word-break: keep-all;
}

@media (min-width: 768px) {
  .kv {
    height: 794px;
  }
  .kv__copy {
    font-size: min(2.8571428571vw, 40px);
    line-height: 1.45;
  }
  .kv__title {
    margin: 0 calc(50% - 50vw);
    font-size: min(9.0714285714vw, 127px);
    line-height: 1.3700787402;
  }
  .container.kv__inner {
    max-width: none;
  }
}
@media (min-width: 1400px) {
  .kv {
    height: 56.7142857143vw;
    max-height: 100vh;
  }
  .kv__copy {
    font-size: 2.8571428571vw;
  }
  .kv__title {
    font-size: 9.0714285714vw;
  }
}
/* cta
------------------------------------------------------ */
.cta {
  padding: 48px 0;
}

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

@media (min-width: 768px) {
  .cta {
    padding: 64px 0;
  }
  .cta__inner {
    gap: 80px;
  }
}
@media (min-width: 992px) {
  .cta__inner {
    flex-direction: row-reverse;
  }
}
/* product
------------------------------------------------------ */
.product__img-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.product__img-wrap .product__img img {
  width: auto;
  height: 160px;
}

.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;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}
.product__tag span {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 7px 1px;
  border-radius: 4px;
  border: 1px solid var(--color-gray01);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}

.product__color {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
}

.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;
  width: 100%;
}

.product__note {
  margin: 16px auto 0;
  padding: 1px 7px;
  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: 400px;
    gap: 14px;
  }
  .product__img-wrap .product__img img {
    height: 200px;
  }
  .product__button {
    min-width: 248px;
  }
}
/* message
------------------------------------------------------ */
.message {
  background: url("../images/message-bg_sp.webp") center bottom/cover;
}

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

.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 {
    background: url("../images/message-bg_pc.webp") center/cover;
  }
  .message__inner {
    justify-content: flex-start;
    align-items: center;
    height: 100%;
  }
}
/* overview
------------------------------------------------------ */
.overview {
  overflow: hidden;
  padding: 64px 0;
  background: var(--color-kettle-base);
}

.overview__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 768px) {
  .overview {
    padding: 80px 0;
  }
  .overview__inner {
    gap: 57px;
  }
}
@media (min-width: 992px) {
  .overview {
    padding: 112px 0;
  }
}
/* about
------------------------------------------------------ */
.about {
  max-width: 400px;
  margin-inline: auto;
}

.about__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0;
}

.about__lead.h4 {
  font-weight: bold;
  margin-bottom: 16px;
}

.about__text {
  margin-top: 16px;
}

.about__tag {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.about__tag span {
  display: inline-block;
  padding: 0 7px;
  border-radius: 4px;
  border: 1px solid;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-dispenser-blue-gray);
}

.about__img {
  max-width: 90.3307888041vw;
  margin-inline: calc(50% - 50vw);
}

.about__note {
  margin: 16px auto 0;
  padding: 1px 15px;
  text-align: center;
  color: var(--color-brown);
  border: 1px solid;
  display: inline-block;
}

@media (min-width: 768px) {
  .about {
    max-width: none;
  }
  .about__lead.h4 {
    margin-bottom: 24px;
  }
  .about__text {
    margin-top: 24px;
  }
  .about__tag {
    margin-top: 24px;
  }
  .about__tag span {
    font-size: 24px;
  }
  .about__img {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 693px;
  }
}
@media (min-width: 992px) {
  .about__inner {
    flex-direction: row-reverse;
    gap: 68px;
  }
  .about__img {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -16%;
    margin-right: 0;
  }
  .about__img img {
    width: 100%;
  }
  .about__content {
    flex-shrink: 0;
    width: 360px;
  }
}
/* secne
------------------------------------------------------ */
.scene {
  max-width: 400px;
  margin-inline: auto;
}

.scene__heading.h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px 7px;
  border-bottom: 1px solid #000;
  letter-spacing: 0;
}

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

.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%;
  }
  .scene__grid {
    gap: 23px;
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
  }
  .scene-box__text {
    margin-top: 16px;
  }
}
/* features
------------------------------------------------------ */
.features {
  padding: 64px 0 0;
  background-color: var(--color-beige01);
}

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

.features-block {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 64px 0 30px;
}
.features-block:first-of-type {
  padding: 40px 0 64px;
}
.features-block:nth-of-type(2) {
  padding-top: 0;
  background-color: #fff;
  margin-inline: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.features-block:nth-of-type(3) {
  padding-top: 0;
  background-color: var(--color-beige02);
  margin-inline: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 90px;
}
.features-block:nth-of-type(4) {
  padding-top: 45px;
  background: var(--color-kettle-base);
  margin-inline: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.features-block:nth-of-type(4) .features__media {
  max-width: 64.631043257vw;
  height: auto;
  margin: 0 auto;
}
.features-block:nth-of-type(4) .features__content {
  margin-top: -13.2653061224vw;
}

.features-block__main {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.features-block__sub {
  width: 100%;
  margin-inline: auto;
}

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

.features__media {
  height: 336px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw + var(--gutter-sp));
}
.features__media video,
.features__media img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.features-block:nth-of-type(2) {
  padding-bottom: 10.1781170483vw;
}
.features-block:nth-of-type(2) .features-block__main .features__media {
  margin-left: calc(50% - 50vw + var(--gutter-sp));
  margin-right: calc(50% - 50vw);
}
.features-block:nth-of-type(2) .features-block__main .features__media img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.features-block:nth-of-type(3) .features-block__main .features__media img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.features__heading {
  margin-top: 16px;
  white-space: nowrap;
}

.features__text {
  margin-top: 16px;
}

.features__text__img {
  margin-top: 16px;
}

.features-block:nth-of-type(2) .features__text__img {
  max-width: 283px;
}

.features-block:nth-of-type(3) .features__text__img {
  max-width: 87.786259542vw;
  margin-top: 42px;
}

.features__text + .features__annotation {
  margin-top: 22px;
}

.features-box {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}

.features-box__text {
  margin-top: 8px;
}

.features-box__text span {
  font-size: 10px;
}

@media (min-width: 768px) {
  .features {
    padding: 80px 0 0;
  }
  .features-block {
    padding: 80px 0;
  }
  .features-block:first-of-type {
    padding: 40px 0 80px;
  }
  .features-block__main,
  .features-block__sub {
    max-width: none;
    margin-inline: 0;
  }
  .features-block__sub._flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features-block__sub._flex .features-box {
    margin-bottom: 60px;
  }
  .features-block__main {
    gap: 48px;
  }
  .features-block:nth-of-type(2) .features-block__main .features__media {
    margin-left: 0;
  }
  .features-block:nth-of-type(3) .features__text__img {
    margin-top: 34px;
  }
  .features-block:nth-of-type(4) {
    padding-top: 94px;
    gap: 0;
  }
  .features-block:nth-of-type(4) .features-block__main {
    flex-direction: initial;
  }
  .features-block:nth-of-type(4) .features__media {
    margin-top: -60px;
    max-width: 468px;
  }
  .features-block:nth-of-type(4) .features__content {
    margin-top: 0;
  }
  .features__text__img {
    max-width: 274px;
    margin-top: 24px;
  }
  .features__media {
    height: 472px;
    margin-right: 0;
  }
  .features__heading {
    margin-top: 24px;
  }
  .features__text {
    margin-top: 24px;
  }
  .features-block__sub {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features {
    padding: 112px 0 0;
  }
  .features-block {
    gap: 65px;
    padding: 112px 0 100px;
  }
  .features-block:first-of-type {
    padding: 40px 0 112px;
  }
  .features-block:nth-of-type(2) {
    padding-bottom: 100px;
  }
  .features-block:nth-of-type(2) .features-block__main {
    flex-direction: initial;
  }
  .features-block:nth-of-type(3) .features__content {
    width: 350px;
  }
  .features-block:nth-of-type(3) .features-block__main {
    align-items: flex-end;
  }
  .features-block:nth-of-type(3) .features__text__img {
    margin-top: 34px;
  }
  .features-block:nth-of-type(4) .features__content {
    margin-top: -90px;
  }
  .features-block__main {
    flex-direction: row-reverse;
    align-items: center;
    gap: 88px;
  }
  .features__media {
    width: calc(100% - 408px + 50vw);
    height: 600px;
  }
  .features__content {
    flex-shrink: 0;
    width: 320px;
  }
  .features-block__sub {
    gap: 56px;
  }
  .features-block__sub._vertical {
    grid-template-columns: auto;
    gap: 88px;
  }
  .features-block__sub._vertical .features-box {
    flex-direction: row-reverse;
    align-items: center;
    gap: 56px;
  }
  .features-block__sub._vertical .features-box:nth-of-type(even) {
    flex-direction: row;
    justify-content: flex-start;
  }
  .features-block__sub._vertical .features-box__content {
    flex-shrink: 0;
    width: 360px;
  }
}
/* design
------------------------------------------------------ */
.design {
  padding: 64px 0;
  background: var(--color-beige01);
}

.design__title {
  color: var(--color-brown);
}

.design__head {
  margin-top: 40px;
  margin-inline: calc(50% - 50vw);
}
.design__head img {
  width: 100%;
}

.design__body {
  margin-top: 56px;
}

.design-block {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  max-width: 400px;
  margin-inline: auto;
}
.design-block + .design-block {
  margin-top: 48px;
}

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

.design__heading {
  color: var(--color-brown);
}

.design__text {
  margin-top: 8px;
}

.design__color {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.design__color-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 108px;
}
.design__color-img img {
  width: auto;
  height: 160px;
}
.design__color-img span {
  display: block;
  text-align: center;
}

.design__small-img {
  margin-top: 32px;
  text-align: center;
}
.design__small-img img {
  width: auto;
  height: 200px;
}

@media (min-width: 768px) {
  .design {
    padding: 80px 0 186px;
  }
  .design__head {
    margin-top: 56px;
  }
  .design__body {
    margin-top: 96px;
  }
  .design-block {
    gap: 32px;
    max-width: 690px;
    justify-content: space-between;
  }
  .design-block + .design-block {
    margin-top: 56px;
  }
  .design__content._grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 24px;
  }
  .design__content._grid .design__heading {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .design__content._grid .design__text {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .design__content._grid .design__color,
  .design__content._grid .design__small-img {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .design__text {
    margin-top: 24px;
  }
  .design__color {
    gap: 0;
    margin-top: 40px;
  }
  .design__color-img {
    gap: 8px;
    min-width: 126px;
  }
  .design__color-img img {
    height: 170px;
  }
  .design__small-img {
    margin: 0;
  }
  .design__small-img img {
    height: 160px;
  }
}
@media (min-width: 992px) {
  .design__content {
    width: 32%;
  }
  .design-block {
    flex-direction: row-reverse;
    align-items: center;
    gap: 9.6%;
    max-width: none;
  }
  .design-block:nth-of-type(even) {
    flex-direction: row;
  }
  .design-block + .design-block {
    margin-top: 88px;
  }
  .design-block .design__img {
    width: 54.8%;
  }
  .design__content._grid {
    display: block;
  }
  .design__small-img {
    text-align: right;
  }
}
/* faq
------------------------------------------------------ */
.faq {
  padding: 64px 0;
  background: var(--color-base-gray);
}

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

.h2.spec__heading {
  letter-spacing: 0;
}

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

.spec .product__button {
  padding: 20px 72px;
  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;
}

.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: 380px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .spec {
    padding: 80px 0;
  }
  .h2.spec__heading {
    letter-spacing: 0.07em;
  }
  .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: 240px;
  }
}
@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: bold;
  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: 500;
  line-height: 1.6;
}

.line-block__button {
  padding: 12px 72px;
  font-size: 18px;
  font-weight: bold;
  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;
}

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

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

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

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

.blurIn {
  transition-property: opacity, filter;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
  opacity: 0;
  filter: blur(10px);
}
.blurIn[data-scroll-anima=true] {
  opacity: 1;
  filter: blur(0);
}

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

.slideUp-delay01 {
  transition-delay: 0.25s;
}

.slideUp-delay02 {
  transition-delay: 0.5s;
}

.slideUp-delay03 {
  transition-delay: 0.75s;
}/*# sourceMappingURL=style.css.map */