@charset "UTF-8";
/**
* common style
*/
/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --white: hsl(0 0% 100% / 1);
  --text-brown: hsla(22.06 59.65% 22.35% / 1);
  --accent-pink: hsl(341.71 88.17% 63.53% / 1);
  --accent-blue: hsl(222 89% 29% / 1);
  --deco-green: hsl(160.99 64.33% 30.78% / 1);
  --bg-pink: hsl(357.39 79.31% 94.31% / 1);
  --main-font: "Noto Sans JP", sans-serif;
  --accent-font: "Noto Serif JP", serif;
  --10px-rem: 0.625rem;
  --11px-rem: 0.6875rem;
  --12px-rem: 0.75rem;
  --13px-rem: 0.8125rem;
  --14px-rem: 0.875rem;
  --15px-rem: 0.9375rem;
  --18px-rem: 1.125rem;
  --20px-rem: 1.25rem;
  --21px-rem: 1.3125rem;
  --22px-rem: 1.375rem;
  --24px-rem: 1.5rem;
  --25px-rem: 1.5625rem;
  --26px-rem: 1.6875rem;
  --28px-rem: 1.75rem;
  --30px-rem: 1.875rem;
  --32px-rem: 2rem;
  --35px-rem: 2.1875rem;
  --36px-rem: 2.25rem;
  --38px-rem: 2.375rem;
  --40px-rem: 2.5rem;
  --41px-rem: 2.5625rem;
  --42px-rem: 2.625rem;
  --48px-rem: 3rem;
  --52px-rem: 3.25rem;
}

/**
 * _font-fece.scss
 * webフォントファイル読み込み記述(@font-face)用
*/
/* 欧文フォント */
/* 和文フォント */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-display: swap;
}
@font-face {
  font-style: bold;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-display: swap;
}
@font-face {
  font-style: bold;
  font-weight: 900;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSerifJP-Regular.woff2") format("woff2");
  font-family: "Noto Serif JP";
  font-display: swap;
}
@font-face {
  font-style: bold;
  font-weight: 700;
  src: url("../font/NotoSerifJP-Bold.woff2") format("woff2");
  font-family: "Noto Serif JP";
  font-display: swap;
}
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  font-size: 100%;
  line-height: 1.15;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
address,
iframe,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  margin: 0;
  clear: both;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

/**
 * Remove padding
 */

/**
 * Reset to invisible
 */

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

/**
 * Correct the outline style in Safari.
 */

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */

/**
 * Clickable labels
 */

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/*
 * Add the correct display in all browsers.
 */

/*
 * Remove outline for editable content.
 */

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/**
* personal initialization style
*/
body {
  color: var(--text-brown);
  line-height: 1.6;
  font-family: var(--main-font);
  letter-spacing: 0.01em;
}

main {
  display: block;
}

a {
  outline: none;
  color: var(--text-brown);
  text-decoration: none;
  transition: 0.3s;
}
a:focus-visible, button:focus-visible, embed:focus-visible, iframe:focus-visible, video:focus-visible, div:focus-visible, section:focus-visible {
  outline: 0.125rem solid hsl(217, 99%, 71%);
  outline-offset: 0.0625rem;
}

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

h1,
h2,
h3,
dt,
th {
  margin: 0;
  font-weight: bold;
}

button {
  color: #000;
}

/**
* grainfree pages style
*/
/*----------------------------------------
	l-header
----------------------------------------*/
.l-header {
  display: block;
  max-width: 750px;
  margin: auto;
}

/*----------------------------------------
	l-container
----------------------------------------*/
.l-container {
  display: block;
  max-width: 750px;
  margin: auto;
}

/*----------------------------------------
	l-footer
----------------------------------------*/
.l-footer {
  padding: 60px 30px;
  border-top: 2px solid var(--text-brown);
}

.l-footer__nav {
  margin: 0 0 60px;
}

.l-footer__nav li {
  margin: 0 0 20px;
  text-align: center;
}

.l-footer__nav li:last-child {
  margin: 0;
}

.l-footer__nav li a {
  display: inline-block;
  font-weight: 500;
}

.l-footer__copyright {
  display: block;
  text-align: center;
}
/*----------------------------------------
	c-button
----------------------------------------*/
.c-button {
  visibility: hidden;
  z-index: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--white);
  opacity: 0;
  transition: 0.3s;
}

.c-button a {
  display: block;
  max-width: 690px;
  margin: auto;
}

.c-button.is-active {
  visibility: visible;
  opacity: 1;
}

/*----------------------------------------
	p-lp-button
----------------------------------------*/
.p-lp-button {
  padding: 60px 30px;
}

.p-lp-button p {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.p-lp-button .cta-link,
.c-button .cta-link {
  display: flex;
  align-items: center;
  justify-content: stretch;
  height: 11vw;
  max-height: 120px;
  margin: auto;
  padding-left: 8px;
  gap: 20px;
  border-radius: 25vw;
  background: var(--accent-pink);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-weight: 500;
  line-height: 130%;
}

.p-lp-button .cta-link em,
.c-button .cta-link em {
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
}

.p-lp-button .cta-link .text,
.c-button .cta-link .text {
  display: block;
  margin: auto;
  font-size: 1.75rem;
  line-height: 1.05;
  text-align: center;
}

.p-lp-button .cta-link .badge,
.c-button .cta-link .badge {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: normal;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-pink);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.p-lp-button .cta-link .badge span,
.c-button .cta-link .badge span {
  font-size: 10px;
  letter-spacing: 0.01em;
}
/*----------------------------------------
	p-lp-point
----------------------------------------*/
.p-lp-point {
  padding: 100px 30px;
  background: url("../image/bg-point013.webp") center/cover;
}

.p-lp-point__head {
  margin: 0 0 110px;
  text-align: center;
}
.p-lp-point__item {
  position: relative;
  margin: 0 0 130px;
  padding: 100px 30px 50px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-lp-point__item:last-child {
  margin: 0;
}

.p-lp-point__number {
  position: absolute;
  top: 0;
  left: 50%;
  width: 136px;
  translate: -50% -50%;
}

.p-lp-point__heading {
  margin: 0 0 20px;
  text-align: center;
}

.p-lp-point__heading img {
  width: auto;
}

.p-lp-point__supplement,
.p-lp-point__img figcaption {
  width: 100%;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  text-align: right;
}

.p-lp-point__text.-font-bold {
  font-weight: 700;
}
.p-lp-point__text .em {
  color: var(--accent-pink);
}

.p-lp-point__dl dt {
  color: var(--accent-pink);
  font-weight: 700;
}
/*----------------------------------------
	p-lp-sample
----------------------------------------*/
.p-lp-sample {
  padding: 60px;
  background: #fce5e6;
}

.p-lp-sample__head {
  font-weight: bold;
  line-height: 1.4;
  font-family: var(--accent-font);
  text-align: center;
}

.p-lp-sample__head span {
  display: block;
  font-size: 2.5rem;
}

.p-lp-sample__head span strong {
  color: var(--accent-pink);
}

.p-lp-sample__head strong span {
  display: inline-block;
  width: auto;
  font-size: 0.9375rem;
}

.p-lp-sample__main {
  margin: 0 0 30px;
}

.p-lp-sample__foot {
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
}

.p-lp-sample__foot span {
  color: var(--deco-green);
  font-weight: bold;
}
/*----------------------------------------
	p-lp-movie
----------------------------------------*/
.p-lp-movie__heading {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto 12px;
  gap: 1.25rem;
  color: var(--accent-blue);
  font-style: normal;
  font-weight: 500;
  font-size: 1.75rem;
  text-align: center;
}

.p-lp-movie__heading:before,
.p-lp-movie__heading:after {
  display: block;
  background-color: var(--accent-blue);
  content: "";
}

.p-lp-movie__heading:before {
  flex-shrink: 0;
  width: 4px;
  height: 38px;
  transform: rotate(-30deg) translateY(16px);
}

.p-lp-movie__heading:after {
  flex-shrink: 0;
  width: 4px;
  height: 38px;
  transform: rotate(30deg) translateY(16px);
}

.p-lp-movie .iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
/*----------------------------------------
	p-lp-voice
----------------------------------------*/
.p-lp-voice {
  padding: 80px 60px;
  background: url("../image/bg-voice01.webp") center/cover;
}

.p-lp-voice__head {
  margin: 0 0 140px;
}

.p-lp-voice__main {
  margin: 0 0 60px;
}

.p-lp-voice__main__item {
  position: relative;
  margin: 0 0 160px;
  padding: 135px 40px 40px;
  background: var(--white);
  filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.25));
}

.p-lp-voice__main__item:last-child {
  margin: 0;
}

.p-lp-voice__main__img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 244px;
  translate: -50% -50%;
}

.p-lp-voice__main__heading {
  margin: 0 0 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-lp-voice__main__category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 30px;
  gap: 10px;
}

.p-lp-voice__main__category li {
  padding: 6px 32px;
  border: 2px solid var(--text-brown);
  border-radius: 4px;
  line-height: 1.4;
}

.p-lp-voice__foot__lead {
  margin: 0 0 30px;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
}

.p-lp-voice__foot__heading {
  margin: 0 0 30px;
  text-align: center;
}
.p-lp-voice__foot__heading img {
  width: auto;
}

.p-lp-voice__foot__text {
  font-weight: 500;
  font-size: 1.375rem;
  text-align: center;
}
/*----------------------------------------
	p-lp-taste
----------------------------------------*/
.p-lp-taste {
  padding: 80px 30px;
  background: url("../image/bg-taste012.webp") center/cover;
}

.p-lp-taste__head {
  margin: 0 0 150px;
  color: var(--white);
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.4;
  text-align: center;
}

.p-lp-taste__main {
  position: relative;
  padding-bottom: 28px;
  border-radius: 20px;
  background: var(--white);
}

.p-lp-taste__icon {
  position: absolute;
  top: -125px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.p-lp-taste__heading {
  margin: 0 0 20px;
  padding: 24px 20px 0;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.p-lp-taste__heading span {
  color: var(--text-brown);
  font-weight: bold;
}

.p-lp-taste__explain {
  margin: 36px 10px 0;
  padding: 1.25rem;
  border-radius: 8px;
  background: #f7f7c8;
  color: var(--text-brown);
  font-weight: 700;
  text-align: center;
}
/*----------------------------------------
	p-lp-maker
----------------------------------------*/
.p-lp-maker__head .text {
  padding: 24px 0 20px;
  color: var(--text-brown);
  font-weight: 700;
  font-family: Noto Serif JP;
  text-align: center;
}

.p-lp-maker__main {
  padding: 60px;
  background: #fff5e2;
}

.p-lp-maker__main dl {
  margin: 0 0 40px;
}

.p-lp-maker__main dl:last-child {
  margin: 0;
}

.p-lp-maker__main dl dt {
  margin: 0 0 10px;
  font-size: 2rem;
  text-align: center;
}

.p-lp-maker__main dl dd {
  font-size: 2.1333333333rem;
}

.p-lp-maker__main dl dd span {
  color: var(--accent-pink);
  font-weight: bold;
}
/*----------------------------------------
	p-lp-step
----------------------------------------*/
.p-lp-step {
  padding: 100px 30px;
  background: #cff2ff;
}

.p-lp-step__head {
  margin: 0 0 60px;
}

.p-lp-step__main {
  padding: 10px 30px;
  background: var(--white);
  box-shadow: 1.5px 2.5px 7.5px 0px rgba(0, 0, 0, 0.25);
}

.p-lp-step__item {
  padding: 50px 0;
  border-bottom: 1px dashed #6bc6aa;
}

.p-lp-step__item:last-child {
  border-bottom: none;
}

.p-lp-step__heading {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.4;
}

.p-lp-step__heading span {
  width: 136px;
  margin: 0 30px 0 0;
}

.p-lp-step__img {
  margin: 0 0 30px;
}

.p-lp-step__text a {
  color: #6bc6aa;
  text-decoration: underline;
}
.p-lp-caution {
  display: flex;
  justify-content: center;
}
.caution__head {
  display: flex;
  position: absolute;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 448px;
  inset-block-start: -40px;
  inset-inline-end: 50%;
  padding: 9px 28px;
  gap: 10px;
  transform: translateX(50%);
  border-radius: 5px;
  background-color: var(--accent-pink);
  color: #fff;
  font-size: 24px;
}
.caution__frame {
  display: flex;
  position: relative;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border: 2px solid var(--accent-pink);
  border-radius: 5px;
  background-color: var(--white);
}
.mt58 {
  margin-top: 58px;
}

.caution__itemization {
  display: flex;
  flex-direction: column;
}
.caution__itemization > li {
  display: flex;
  gap: 4px;
  color: var(--text-brown);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.caution__separator {
  position: relative;
  height: 1px;
  margin-block: 0;
  border-color: var(--accent-pink);
}
.caution__notation {
  display: flex;
  align-items: center;
  color: var(--text-brown);
  line-height: 1.4;
  letter-spacing: 0.055em;
}
/*----------------------------------------
	p-lp-faq
----------------------------------------*/
.p-lp-faq {
  padding: 100px 30px;
  background: url("../image/bg-faq01.webp") top center/100%;
}

.p-lp-faq__head {
  margin: 0 0 60px;
}

.p-lp-faq__main dl {
  margin: 0 0 32px;
  padding: 30px;
  background: var(--white);
}

.p-lp-faq__main dl:last-child {
  margin: 0;
}

.p-lp-faq__main dl dt {
  position: relative;
  padding: 0 100px 0 0;
  color: var(--deco-green);
  cursor: pointer;
}

.p-lp-faq__main dl dt:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
  margin: auto;
  background: url("data:image/webp;base64,UklGRlABAABXRUJQVlA4WAoAAAAQAAAAGQAAGQAAQUxQSG0AAAABP6AYkiQ2uQhb98wGCeIiIlDSx1cwjWzbySXqjP4l4LB0gc1QAf/2/7nvKwqI6L/BpG3abv6CH9QlJlUKvIPJtmDmk6iexUoOKlmODKjMcATUCXA+YAT2gFGpVeUWDRQNokW0fEa4IwKo8ZMCAFZQOCC8AAAAUAYAnQEqGgAaAD4ZCoRBoQUBAAQAYS2AE6ZQjqD0b8QPyA58/bXwA9QGcA/WbJAOfC9iABjIM+S08AAA/vtoyv9/Y2i8i+LuTd59VuEVs4+b/9jfQjBUnxXKfbLNGM1Jlcref9+THfP/P1nJBXfL3/uxtmVRlnjy+B2WqqohxP82ZkM7yvg+2cie0q7jX8TOCDI892ckY3e+HA90o2MGLgXRd/raxkXH0tB5fyfbggXnjC/c8yjCs/vIAAA=") center/cover;
  content: "";
  transition: 0.3s;
}

.p-lp-faq__main dl dt.is-active:before {
  rotate: 180deg;
}

.p-lp-faq__main dl dd {
  display: none;
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 3px solid var(--deco-green);
}
.ta-c {
  text-align: center;
}
@media screen and (min-width: 450px){
  .p-lp-button .cta-link .text,
  .c-button .cta-link .text {
    text-align: center;
  }
}
@media screen and (min-width: 768px){
  .l-footer__nav li a {
    font-size: 1.5rem;
  }
  .l-footer__copyright {
    font-size: 1.25rem;
  }
  .p-lp-button .cta-link .badge,
  .c-button .cta-link .badge {
    width: 10vw;
    max-width: 105px;
    height: 10vw;
    max-height: 105px;
    padding: 10px 4px 10px 8px;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
  .p-lp-button .cta-link .badge span,
  .c-button .cta-link .badge span {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .p-lp-button .cta-link .em,
  .c-button .cta-link .em {
    font-size: 2.5rem;
  }
  .p-lp-button p {
    margin: 0 0 30px;
    font-size: 2.25rem;
  }
  .p-lp-point__head .mw246 {
    max-width: 492px;
  }
  .p-lp-point__text {
    margin: 0 0 30px;
    font-size: 1.875rem;
  }
  .p-lp-point__text.-mt16 {
    margin-top: 1rem;
  }
  .p-lp-point__heading img.h46 {
    height: 5.75rem;
  }
  .p-lp-point__heading img.h50 {
    height: 6.25rem;
  }
  .p-lp-point__heading img.h82 {
    height: 10.25rem;
  }
  .p-lp-point__heading img.h43 {
    height: 5.375rem;
  }
  .p-lp-point__dl {
    margin-top: 1rem;
  }
  .p-lp-point__dl dt,
  .p-lp-point__dl dd {
    font-size: 1.875rem;
  }
  .p-lp-sample__head {
    margin: 0 calc(50% - 50vw) 30px calc(50% - 50vw);
    font-size: 2.25rem;
  }
  .p-lp-movie .iframe {
    margin-top: 8px;
  }
  .p-lp-voice__main__heading {
    font-size: 1.875rem;
  }
  .p-lp-voice__main__category li {
    font-size: 1.625rem;
  }
  .p-lp-voice__main__text {
    font-size: 1.875rem;
  }
  .p-lp-voice__foot__lead {
    font-size: 1.875rem;
  }
  .p-lp-taste__heading {
    font-size: 2.25rem;
  }
  .p-lp-taste__explain {
    font-size: 1.625rem;
  }
  .p-lp-maker__head .text {
    font-size: 1.875rem;
  }
  .p-lp-maker__head .text span {
    font-size: 3rem;
  }
  .p-lp-step__heading {
    font-size: 1.875rem;
  }
  .p-lp-step__text {
    font-size: 2rem;
  }
  .p-lp-caution {
    padding-bottom: 80px;
  }
  .caution__head {
    inset-block-start: -48px;
    padding: 6px 28px;
    font-size: 48px;
  }
  .caution__head > .image {
    width: 75%;
    max-width: 336px;
  }
  .caution__frame {
    width: 695px;
    padding: 88px 0px 48px;
  }
  .caution__itemization {
    gap: 40px;
  }
  .caution__itemization > li {
    width: 626px;
  }
  .caution__itemization > li > .bullet-point {
    font-size: 40px;
  }
  .caution__itemization > li > .text {
    font-size: 36px;
  }
  .caution__separator {
    width: 692px;
  }
  .caution__notation {
    width: 626px;
    font-size: 28px;
  }
  .p-lp-faq__main dl dt {
    font-size: 1.875rem;
  }
  .p-lp-faq__main dl dd {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px){
  .l-footer {
    padding: 8vw 4vw;
    border-top: 1px solid var(--text-brown);
  }
  .l-footer__nav {
    margin: 0 0 8vw;
  }
  .l-footer__nav li {
    margin: 0 0 2.6666666667vw;
  }
  .l-footer__nav li a {
    font-size: 3.2vw;
  }
  .l-footer__copyright {
    font-size: 2.6666666667vw;
  }
  .p-lp-button {
    padding: 8vw 4vw;
  }
  .c-button {
    padding: 4vw;
  }
  .p-lp-button p {
    margin: 0 0 4vw;
    font-size: 4.8vw;
  }
  .p-lp-button .cta-link,
  .c-button .cta-link {
    min-width: 348px;
    min-height: 60px;
    gap: 1.0666666667vw;
    font-size: 1rem;
  }
  .p-lp-button .cta-link .badge,
  .c-button .cta-link .badge {
    width: 50px;
    height: 50px;
    font-size: 0.8125rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  .p-lp-button .cta-link .text,
  .c-button .cta-link .text {
    display: block;
    width: 85%;
    margin: auto auto auto -15px;
    font-size: 1rem;
  }
  .p-lp-button .cta-link em,
  .c-button .cta-link em {
    font-size: 1.5rem;
  }
  .p-lp-button .cta-link .em,
  .c-button .cta-link .em {
    font-size: 1.25rem;
  }
  .p-lp-point__head .mw246 {
    max-width: 246px;
  }
  .p-lp-point {
    padding: 10vw 4vw;
  }
  .p-lp-point__head {
    margin: 0 0 14.6666666667vw;
  }
  .p-lp-point__item {
    margin: 0 0 17.3333333333vw;
    padding: 12.33vw 4vw 5vw;
    border-radius: 5px;
  }
  .p-lp-point__number {
    width: 18.1333333333vw;
  }
  .p-lp-point__heading {
    margin: 0 0 4.2666666667vw;
    text-align: center;
  }
  .p-lp-point__heading img.h46 {
    height: 12.2666666667vw;
  }
  .p-lp-point__heading img.h50 {
    height: 13.3333333333vw;
  }
  .p-lp-point__heading img.h82 {
    height: 21.8666666667vw;
  }
  .p-lp-point__heading img.h43 {
    height: 11.4666666667vw;
  }
  .p-lp-point__text {
    margin: 0 0 4.2666666667vw;
    font-size: 4vw;
  }
  .p-lp-point__text.-mt16 {
    margin-top: 4.2666666667vw;
  }
  .p-lp-point__supplement,
  .p-lp-point__img figcaption {
    margin-top: 4.2666666667vw;
    font-size: 3.2vw;
  }
  .p-lp-point__dl {
    margin-top: 2.4vw;
  }
  .p-lp-point__dl dt,
  .p-lp-point__dl dd {
    font-size: 4vw;
  }
  .p-lp-sample {
    padding: 5.8666666667vw;
  }
  .p-lp-sample__head {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    font-size: 4.8vw;
  }
  .p-lp-sample__head strong span {
    font-size: 2.6666666667vw;
  }
  .p-lp-sample__head span {
    font-size: 5.3333333333vw;
  }
  .p-lp-sample__main {
    width: 84vw;
    margin: 4.2666666667vw auto;
  }
  .p-lp-sample__foot {
    font-size: 3.7333333333vw;
  }
  .p-lp-movie__heading {
    font-size: 3.7333333333vw;
  }
  .p-lp-movie__heading:before {
    flex-shrink: 0;
    width: 2px;
    height: 19px;
    transform: rotate(-30deg) translateY(8px);
  }
  .p-lp-movie__heading:after {
    flex-shrink: 0;
    width: 2px;
    height: 19px;
    transform: rotate(30deg) translateY(8px);
  }
  .p-lp-voice {
    padding: 10.6666666667vw 8vw;
  }
  .p-lp-voice__head {
    margin: 0 0 21.0666666667vw;
  }
  .p-lp-voice__main {
    margin: 0 0 8vw;
  }
  .p-lp-voice__main__item {
    margin: 0 0 21.3333333333vw;
    padding: 19.2vw 5.3333333333vw 5.3333333333vw;
  }
  .p-lp-voice__main__img {
    width: 32.5333333333vw;
  }
  .p-lp-voice__main__heading {
    margin: 0 0 2.6666666667vw;
    font-size: 5.3333333333vw;
  }
  .p-lp-voice__main__category {
    margin: 0 0 4vw;
    gap: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
  .p-lp-voice__main__category li {
    padding: 0.5333333333vw 4.2666666667vw;
    border: 1px solid var(--text-brown);
    border-radius: 2px;
  }
  .p-lp-voice__main__text {
    font-size: 4vw;
  }
  .p-lp-voice__foot__lead {
    margin: 0 0 4vw;
    font-size: 4vw;
  }
  .p-lp-voice__foot__heading {
    margin: auto;
    text-align: center;
  }
  .p-lp-voice__foot__heading img {
    width: auto;
    height: 27.2vw;
  }
  .p-lp-voice__foot__text {
    font-size: 2.9333333333vw;
  }
  .p-lp-taste {
    padding: 10.6666666667vw 4vw 6.4vw;
  }
  .p-lp-taste__head {
    margin: 0 0 20vw;
    font-size: 7.4666666667vw;
  }
  .p-lp-taste__main {
    border-radius: 10px;
  }
  .p-lp-taste__icon {
    position: absolute;
    top: -5.9%;
    left: 50%;
    width: 20.8vw;
    transform: translateX(-50%);
  }
  .p-lp-taste__heading {
    margin: 0 0 2.6666666667vw;
    font-size: 4.8vw;
  }
  .p-lp-taste__heading .emphasis {
    color: var(--accent-pink);
    font-size: 8vw;
  }
  .p-lp-taste__explain {
    padding: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .p-lp-maker__head .text {
    padding-top: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
    font-size: 4vw;
  }
  .p-lp-maker__head .text span {
    font-size: 6.4vw;
  }
  .p-lp-maker__main {
    padding: 8vw;
  }
  .p-lp-maker__main dl {
    margin: 0 0 5.3333333333vw;
  }
  .p-lp-maker__main dl dt {
    margin: 0 0 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .p-lp-maker__main dl dd {
    font-size: 4vw;
  }
  .p-lp-step {
    padding: 13.3333333333vw 4vw;
  }
  .p-lp-step__head {
    margin: 0 0 8vw;
  }
  .p-lp-step__main {
    padding: 1.3333333333vw 4vw;
  }
  .p-lp-step__item {
    padding: 6.6666666667vw 0;
  }
  .p-lp-step__heading {
    margin: 0 0 4vw;
    font-size: 4vw;
  }
  .p-lp-step__text {
    font-size: 3.7333333333vw;
  }
  .p-lp-step__heading span {
    width: 18.1333333333vw;
    margin: 0 4vw 0 0;
  }
  .p-lp-step__img {
    margin: 0 0 4vw;
  }
  .p-lp-caution {
    padding-bottom: 10.6666666667vw;
  }
  .caution__head {
    width: 59.73333vw;
    inset-block-start: -6.333vw;
    padding: 0.7vw 4.3333vw;
  }
  .caution__frame {
    width: 92.26666vw;
    padding: 9.6vw 0px 6.4vw;
    gap: 5vw;
  }
  .caution__itemization {
    gap: 3.2vw;
  }
  .caution__itemization > li {
    width: 83.46666vw;
  }
  .caution__itemization > li > .bullet-point {
    font-size: 5.33333vw;
  }
  .caution__itemization > li > .text {
    font-size: 4.8vw;
    letter-spacing: 0;
  }
  .caution__separator {
    width: 92.66666vw;
  }
  .caution__notation {
    width: 83.46666vw;
    font-size: 3.73333vw;
  }
  .p-lp-faq {
    padding: 13.3333333333vw 4vw;
  }
  .p-lp-faq__head {
    margin: 0 0 8vw;
  }
  .p-lp-faq__main dl {
    margin: 0 0 4.2666666667vw;
    padding: 4vw;
  }
  .p-lp-faq__main dl dt {
    padding: 0 13.3333333333vw 0 0;
    font-size: 4vw;
  }
  .p-lp-faq__main dl dt:before {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
  .p-lp-faq__main dl dd {
    margin: 4vw 0 0;
    padding: 4vw 0 0;
    border-top: 1.5px solid var(--deco-green);
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 350px){
  .p-lp-button .cta-link,
  .c-button .cta-link {
    width: 100%;
    min-width: auto;
  }
  .p-lp-button .cta-link .text,
  .c-button .cta-link .text {
    margin: auto 5% auto 0;
  }
}
@media (hover: hover){
  a:where(:-moz-any-link, :enabled, summary):hover {
    filter: brightness(1.125);
  }
  a:where(:any-link, :enabled, summary):hover {
    filter: brightness(1.125);
  }
}