/*—————————————————————————————————
Reset
—————————————————————————————————*/
*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
}
main {
    display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}
pre {
    font-family: monospace, monospace;
    font-size: inherit;
}
address {
    font-style: inherit;
}
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}
abbr[title] {
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}
:-moz-focusring {
    outline: auto;
}
select:disabled {
    opacity: inherit;
}
option {
    padding: 0;
}
fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}
legend {
    padding: 0;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
label[for] {
    cursor: pointer;
}
details {
    display: block;
}
summary {
    display: list-item;
}
[contenteditable]:focus {
    outline: auto;
}
table {
    border-color: inherit;
    border-collapse: collapse;
}
caption {
    text-align: left;
}
td,
th {
    vertical-align: top;
    padding: 0;
}
th {
    text-align: left;
    font-weight: bold;
}
/*—————————————————————————————————
General Style
—————————————————————————————————*/
:root {
    --light-green: #828f82;
    --green: #607260;
    --yellow: #eef840;
    --red: #ff0000;
    --primary-color: var(--light-green);
    --secondary-color: var(--green);
    --accent-color: var(--yellow);
    --button: var(--red);
    --root-font-size: 16;
    --main-text-color: #fff;
    --root-font-size: 16;
    --en-font: Didot;
    --jp-font: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W5", sans-serif;
}
@font-face {
    font-family: monbaiti;
    src: url('../fonts/monbaiti.ttf') format('truetype');
}
@font-face {
    font-family: madeevolve;
    src: url('../fonts/MADE%20Evolve%20Sans%20Regular%20(PERSONAL%20USE).otf') format('opentype');
}
.ten-mincho {
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
}
html {
    font-family: var(--jp-font);
    color: var(--main-text-color);
    scroll-behavior: smooth;
    letter-spacing: .1em;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff
}
h1,
h2 {
    font-weight: bold;
    letter-spacing: .1em;
}
p {
    font-size: calc(16 / var(--root-font-size) * 1rem);
}
a {
    display: block;
    color: currentColor;
}
button {
    color: currentColor;
}
img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center
}
br.sm {
    display: block;
}

br.md {
    display: none;
}

br.lg {
    display: none;
}
@media screen and (min-width: 521px) {
    br.sm {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    br.md {
        display: block;
    }
}

@media screen and (min-width: 961px) {
    br.lg {
        display: block;
    }
}
.visuallyHidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}
/*—————————————————————————————————
Style
—————————————————————————————————*/
.wrapper {
    width: 100%;
    max-width: 768px;
    margin: auto;
    background-color: var(--primary-color);
    overflow: hidden;
}
.waterdrop {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: clamp(7.5rem, 3.929rem + 17.86vw, 12.5rem);
    z-index: 10;
}
.waterdrop-02 {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: clamp(6.25rem, 4.643rem + 8.04vw, 8.5rem);
    z-index: 10;
}
.header {
  position: absolute;
  z-index: 100;
}
.header--logo {
    max-width: clamp(10rem, 6.429rem + 17.86vw, 15rem);
    padding: clamp(2rem, 1.286rem + 3.57vw, 3rem) 0 0 clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.mv {
    position: relative;
    overflow: hidden;
}
.mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: var(--primary-color);
    z-index: 2;
}
.mv::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: var(--secondary-color);
    z-index: 1;
}
.mv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/mv-watardrop.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
}
.mv__inner {
    padding-top: clamp(2rem, 0.571rem + 7.14vw, 4rem);
}
.mv__top {
    position: relative;
    margin-top: 2rem;
    z-index: 10;
}
.mv__catch {
    position: absolute;
    top: 0;
    right: 1.5rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 8px;
    z-index: 2;
}
.mv__catch span {
    display: inline-flex;
    width: auto;
    padding: 1rem 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    line-height: 1.5;
    white-space: nowrap;
    font-size: clamp(1.25rem, 0.714rem + 2.68vw, 2rem);
}
.mv__catch span:nth-of-type(2) {
    margin-top: 2.5rem;
}
.mv__top--product-image {
    position: absolute;
    bottom: -2rem;
    left: clamp(1rem, 0.286rem + 3.57vw, 2rem);
    max-width: clamp(4.5rem, -0.857rem + 26.79vw, 12rem);
    z-index: 2;
}
.mv__top--caption {
    position: absolute;
    top: 0;
    left: clamp(0.5rem, -0.571rem + 5.36vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 0.143rem + 1.79vw, 1rem);
    z-index: 2;
}
.mv__top--caption .text {
    position: relative;
    width: clamp(5rem, 2.321rem + 13.39vw, 8.75rem);
    height: clamp(5rem, 2.321rem + 13.39vw, 8.75rem);
    display: grid;
    place-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: #fff;
}
.mv__top--caption .text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: .8;
    border-radius: 50%;
}
.mv__top--caption span {
    display: block;
    font-size: clamp(1.125rem, 0.5rem + 3.13vw, 2rem);
    z-index: 1;

}
.mv__wrap {
    position: relative;
    transform: translateY(-15%);
    z-index: 10;
}
.mv__wrap--catch {
    width: 60%;
    margin: auto;
}
.mv__wrap--text {
    margin-top: .5rem;
    font-size: clamp(1.25rem, 0.357rem + 4.46vw, 2.5rem);
    text-align: center;
    letter-spacing: .3rem;
}
.mv__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv__top--avatar {
    width: 90%;
    margin-left: auto;
    padding-right: .5rem;
}
.divider-image {
    position: relative;
    transform: translateY(-28px);
    z-index: 100;
}
.benefits {
    position: relative;
}
.benefits__title {
    position: relative;
    max-width: clamp(15rem, 7.857rem + 35.71vw, 25rem);
    padding: .5rem 0;
    margin: 0 auto;
    transform: translateY(50%);
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    font-size: clamp(1rem, 0.643rem + 1.79vw, 1.5rem);
    z-index: 2;
}
.benefits__list {
    position: relative;
    display: grid;
    gap: 1rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
    padding: 4rem clamp(2rem, 0.571rem + 7.14vw, 4rem) 3rem clamp(2rem, 0.571rem + 7.14vw, 4rem);
    background-color: #fff;
    color: var(--secondary-color);
    margin: 0 clamp(1rem, 0.286rem + 3.57vw, 2rem);
    z-index: 1;
    border-radius: 20px;
}
.benefits__list__item {
    position: relative;
    padding-bottom: .5rem;
    font-family: "ten-mincho", serif;
    font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.25rem);
    border-bottom: 1px solid var(--secondary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.benefits__list__item.visible {
    opacity: 1;
    transform: translateX(0);
}
.benefits__list__item::before {
    content: "";
    position: absolute;
    top: 10%;
    background: url(../images/benefits-checkbox.svg) no-repeat center/contain;
    width: 16px;
    height: 16px;
}
.benefits__list__item span.text {
    padding-left: 1.25rem;
}
.benefits__content {
    position: relative;
}
.benefits__content__photo {
    position: relative;
    margin-top: 5rem;
}
.benefits__content__photo .waterdrop {
    position: absolute;
    top: -5rem;
    left: 0;
    z-index: 0;
}
.benefits__content__photo .image {
    width: 80%;
    margin-left: auto;
}
.benefits__content__catch {
    position: absolute;
    top: 50%;
    left: clamp(1rem, 0.286rem + 3.57vw, 2rem);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: .5rem;
}
.benefits__content__catch span {
    padding: 0 1rem;
    font-size: clamp(1.25rem, 0.714rem + 2.68vw, 2rem);
    background-color: var(--secondary-color);
    color: var(--accent-color);
}
.benefits__content__text {
    position: relative;
    padding: 2rem;
    line-height: 2;
    font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.25rem);
}
.benefits__content__text .waterdrop-02 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.benefits__content__detail {
    margin: 0 clamp(1rem, 0.286rem + 3.57vw, 2rem);
    background-color: var(--secondary-color);
}
.benefits__content__detail__inner {
    padding: 1rem;
}
.benefits__content__detail__item {
    position: relative;
    padding: 2rem clamp(1rem, -0.429rem + 7.14vw, 3rem) 0 clamp(1rem, -0.429rem + 7.14vw, 3rem);
}
.benefits__content__detail__item:last-of-type {
    padding-bottom: 3rem;
}
.benefits__content__detail__item:first-of-type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.benefits__content__detail__item:first-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.benefits__content__detail__item:last-of-type::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
.benefits__content__detail__item:last-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
.benefits__content__detail__item .heading {
    font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
    font-weight: 600;
}
.benefits__content__detail__list {
    margin-top: clamp(0.5rem, 0.143rem + 1.79vw, 1rem);
    font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
}
.benefits__content__detail__item:not(:last-of-type) .benefits__content__detail__list .item:last-of-type {
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}
.key {
    background-image: url(../images/key-bg.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
}
.key__inner {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, .3);
}
.key__title {
    text-align: center;
    color: var(--secondary-color);
}
.key__title .sm-text {
    font-size: clamp(1rem, 0.643rem + 1.79vw, 1.5rem);
}
.key__title .lg-text {
    display: block;
    font-size: clamp(1.75rem, 1.214rem + 2.68vw, 2.5rem);
    letter-spacing: .2em;
}
.key__title .lg-text .accent {
    display: inline-block;
    line-height: 1;
    padding: 0 1rem;
    font-size: clamp(2rem, 1.286rem + 3.57vw, 3rem);
    background-color: var(--secondary-color);
    color: #fff;
}
.key__list {
    display: grid;
    gap: clamp(1rem, 0.286rem + 3.57vw, 2rem);
    padding: clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.key__list__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.key__list__item.visible {
    opacity: 1;
    transform: translateY(0);
}
.key__list__item--photo .image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
}
.key__list__item--text span {
    display: block;
    color: var(--secondary-color);
    font-size: .875rem;
}
.key__list__item--text span:last-of-type {
    font-weight: 900;
    font-size: clamp(1rem, 0.911rem + 0.45vw, 1.125rem);
}
.case__inner {
    padding: 4rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.case__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.case__title .en {
    font-family: monbaiti;
    font-size: clamp(2.5rem, 1.786rem + 3.57vw, 3.5rem);
    font-weight: 400;
}
.case__title .jp {
    font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.25rem);
}
.case__list {
    display: grid;
    gap: 1rem;
}
.case__list__item {
    position: relative;
    margin-top: 4rem;
}
.case__list__item--heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: .25rem 0;
    width: 50%;
    color: #fff;
    background-color: var(--secondary-color);
    font-size: clamp(1rem, 0.911rem + 0.45vw, 1.125rem);
    font-weight: 900;
    text-align: center;
}
.case__list__item__unit {
    display: flex;
    justify-content: center;
    gap: .5rem;
}
.case__list__item__unit .caption {
    text-align: center;
}
.case__text {
    margin-top: 2rem;
}

.recommend {
    position: relative;
    background-image: url(../images/recommend-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}
.recommend__title {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: .5rem;
    z-index: 2;
}
.recommend__title span {
    padding: 0 1rem;
    font-size: clamp(1.25rem, 0.714rem + 2.68vw, 2rem);
    background-color: var(--secondary-color);
    color: var(--accent-color);
}
.recommend__list {
    display: flex;
    position: absolute;
    top: 50%;
    right: clamp(1rem, 0.286rem + 3.57vw, 2rem);
    transform: translateY(80%);
    z-index: 1;
}
.recommend__list__item {
    display: grid;
    place-content: center;
    width: clamp(5rem, 3.571rem + 7.14vw, 7rem);
    height: clamp(5rem, 3.571rem + 7.14vw, 7rem);
    font-family: "ten-mincho", serif;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.recommend__list__item.visible {
    opacity: 1;
    transform: translateX(0);
}
.recommend__list__item:not(:first-of-type) {
    margin-left: -.5rem;
}
.recommend__list__item span {
    display: block;
    color: var(--secondary-color);
    font-size: clamp(1rem, 0.643rem + 1.79vw, 1.5rem);
    font-weight: 600;
}
.product {
    position: relative;
}
.product .waterdrop {
    position: absolute;
    left: -4rem;
    z-index: 0;
}
.product__title {
    position: absolute;
    top: 1rem;
    left: 1rem;
    writing-mode: vertical-rl;
    font-family: madeevolve;
    font-size: clamp(0.625rem, 0.446rem + 0.89vw, 0.875rem);
    letter-spacing: .2em;
}
.product__unit {
    display: flex;
    padding: 4rem clamp(1rem, 0.286rem + 3.57vw, 2rem) 0 clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.product__unit--photo {
    position: relative;
    margin: auto;
}
.product__unit--photo .image {
    width: clamp(6rem, 3.143rem + 14.29vw, 10rem);
}
.product__unit__detail {
    position: relative;
}
.product__unit__detail .name {
    font-size: clamp(1.25rem, 0.536rem + 3.57vw, 2.25rem);
    font-family: monbaiti;
    font-weight: 400;
}
.product__unit__detail .size {
    line-height: 2;
}
.product__unit__detail .size span:first-of-type {
    font-weight: 600;
    font-size: clamp(0.875rem, 0.696rem + 0.89vw, 1.125rem);
}
.product__unit__detail .size span:last-of-type {
    font-size: clamp(0.75rem, 0.661rem + 0.45vw, 0.875rem);
}
.product__unit__detail .purpose {
    line-height: 2;
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
}
.product__unit__detail .size-sub {
    position: absolute;
    top: -2.5rem;
    right: 0;
    display: grid;
    place-content: center;
    width: clamp(4rem, 2.393rem + 8.04vw, 6.25rem);
    height: clamp(4rem, 2.393rem + 8.04vw, 6.25rem);
    background-color: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
}
.product__unit__detail .size-sub span {
    display: block;
    font-weight: 900;
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
}
.product__unit__detail .price {
    margin-top: clamp(0.5rem, 0.143rem + 1.79vw, 1rem);
}
.product__unit__detail .price span {
    font-size: clamp(1.25rem, 0.536rem + 3.57vw, 2.25rem);
}
.product__unit__detail .text {
    margin-top: 1rem;
    line-height: 1.8;
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
}
.product__list {
    padding: 0 clamp(1rem, 0.286rem + 3.57vw, 2rem) 4rem;
}
.product__list__item {
    margin-top: 4rem;
    padding: 0 0 .5rem 0;
    background-color: #fff;
    color: var(--secondary-color);
    border-radius: 20px;
}
.product__list__item .heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    width: 70%;
    margin: 0 auto;
    padding: .5rem;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.25rem);
}
.product__list__item .heading span {
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
}
.product__list__item .accent {
    display: inline-block;
    padding: .25rem 2rem;
    transform: translateX(-.5rem);
    background-color: var(--accent-color);
    font-weight: 600;
}
.product__list__item .accent span {
    color: var(--secondary-color);
    font-size: .875rem;
    text-align: center;
}
.product__list__item__top {
    position: relative;
    padding: 0 clamp(1rem, -1.143rem + 10.71vw, 4rem);
}
.product__list__item .product__list__item__top .image {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: clamp(2.5rem, -0.179rem + 13.39vw, 6.25rem);
}
.product__list__item:nth-of-type(2) .product__list__item__top .image {
    position: absolute;
    top: -1rem;
    right: -2.5rem;
    width: clamp(4rem, -1.179rem + 25.89vw, 11.25rem);
}
.product__list__item:nth-of-type(3) .product__list__item__top .image {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: clamp(3.25rem, -0.679rem + 19.64vw, 8.75rem);
}
.product__list__item:nth-of-type(4) .product__list__item__top .image {
    position: absolute;
    top: -1rem;
    right: -2.5rem;
    width: clamp(5rem, -0.357rem + 26.79vw, 12.5rem);
}
.product__list__item .price {
    position: relative;
    display: flex;
    align-items: center;
}
.product__list__item .price .before {
    font-size: clamp(0.625rem, 0.357rem + 1.34vw, 1rem);
}
.product__list__item .price .before-num {
    position: relative;
}
.product__list__item .price .before-num::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--red);
    transform: rotate(150deg);
}
.product__list__item .price .after-num {
    margin-left: clamp(0.25rem, -1rem + 6.25vw, 2rem);
    font-size: clamp(2rem, -0.857rem + 14.29vw, 6rem);
    font-weight: 500;
    font-family: "adobe-garamond-pro", serif;
}
.product__list__item .price .tax {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.product__list__item .price .tax .include {
    font-size: clamp(0.625rem, 0.536rem + 0.45vw, 0.75rem);
}
.product__list__item .price .tax .yen {
    font-size: clamp(0.875rem, 0.071rem + 4.02vw, 2rem);
    line-height: 1;
}
.product__list__item .moreover {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
.product__list__item .moreover span {
    position: relative;
    font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
}
.product__list__item__bottom {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.143rem + 1.79vw, 1rem);
    padding: 0 clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.product__list__item__bottom .image {
    width: clamp(6rem, 3.143rem + 14.29vw, 10rem);
}
.product__list__item .present span {
    display: block;
    font-weight: 600;
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
    border-bottom: .1px solid var(--secondary-color);
}
.product__list__item .present span:last-of-type {
    margin-top: .5rem;
}
.product__list__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: clamp(15rem, 7.857rem + 35.71vw, 25rem);
    margin: 1rem auto;
    padding: .75rem 0;
    background-color: var(--button);
    color: #fff;
    border-radius: 40px;
}
.product__list__link .icon {
    width: clamp(1rem, 0.643rem + 1.79vw, 1.5rem);
}
.product__list__link span {
    font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.25rem);
}
.faq {
    background-image: url(../images/faq-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.faq__inner {
    padding: 4rem clamp(1rem, 0.286rem + 3.57vw, 2rem) 3rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
    background-color: rgba(255, 255, 255, .3);
}
.faq__wrap {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, .7);
    border-left: .1px solid var(--secondary-color);
    border-right: .1px solid var(--secondary-color);
    border-bottom: .1px solid var(--secondary-color);
}
.faq__title {
    position: relative;
    text-align: center;
    transform: translateY(-50%);
    overflow: hidden;
}
.faq__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30%;
    height: .1px;
    background-color: var(--secondary-color);
}
.faq__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 30%;
    height: .1px;
    background-color: var(--secondary-color);
}
.faq__title .en {
    font-family: monbaiti;
    font-size: 3rem;
    font-weight: 400;
}
.faq__title .jp {
    display: block;
    font-size: 1rem;
}
.faq__list {
    padding: 0 2rem 2rem 2rem;
    font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
}
.faq__list__item:nth-of-type(2) {
    padding-top: 1rem;
    border-top: .1px solid var(--secondary-color);
}
.faq__list__item--q {
    display: flex;
    align-items: baseline;
    gap: .1rem;
}
.faq__list__item--q .en {
    font-size: 1.75rem;
    font-family: monbaiti;
}
.faq__list__item--a {
    display: flex;
    align-items: baseline;
    gap: .1rem;
    margin-top: 1rem;
}
.faq__list__item--a:first-of-type {
    padding-bottom: 1rem;
}
.faq__list__item--a .en {
    font-size: 1.75rem;
    font-family: monbaiti;
}
.voice {
    position: relative;
}
.voice .waterdrop {
    position: absolute;
    right: 0;
}
.voice .waterdrop-02 {
    position: absolute;
    top: 50%;
    width: 5rem;
}
.voice__inner {
    padding: 4rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.voice__wrap {
    position: relative;
    padding-top: 3rem;
    background-color: rgba(80, 103, 88, 0.7);
    color: #fff;
}
.voice__wrap::before {
    content: "";
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    width: 6rem;
    height: 6rem;
    border-top: 1px solid rgba(80, 103, 88, 0.5);
    border-right: 1px solid rgba(80, 103, 88, 0.5);
}
.voice__wrap::after {
    content: "";
    position: absolute;
    bottom: -.5rem;
    left: -.5rem;
    width: 6rem;
    height: 6rem;
    border-bottom: 1px solid rgba(80, 103, 88, 0.5);
    border-left: 1px solid rgba(80, 103, 88, 0.5);
}
.voice__title {
    text-align: center;
}
.voice__title .en {
    font-family: monbaiti;
    font-size: 3rem;
    font-weight: 400;
}
.voice__title .jp {
    display: block;
    font-size: 1rem;
}
.voice__list {
    padding: 1rem clamp(1rem, 0.286rem + 3.57vw, 2rem);
}
.voice__list__item {
    padding: 2rem 0;
    border-bottom: .1px solid #fff;
    line-height: 1.75;
    font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
}
.voice__list__item:last-of-type {
    border-bottom: none;
}
@media screen and (min-width: 599px) {
    .benefits__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits__list__item::before {
        top: 15%;
        width: 20px;
        height: 20px;
    }
    .benefits__list__item span.text {
        padding-left: 1.5rem;
    }
    .recommend__list {
        transform: translateY(40%);
    }
    .key__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .case__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .product__unit__detail .size-sub {
        top: 0;
    }
    .product__unit {
        padding-left: 4rem;
    }
    .product__list__item:nth-of-type(2) .product__list__item__top .image {
        right: -6.5rem;
    }
    .product__list__item:nth-of-type(3) .product__list__item__top .image {
        right: -2.5rem;
    }
    .product__list__item:nth-of-type(4) .product__list__item__top .image {
        right: -6.5rem;
    }
}