@charset "UTF-8";

/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
    box-sizing: border-box;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-text-size-adjust: 100%;
    word-break: normal
}

/* *, */
::after,
::before {
    background-repeat: no-repeat;
    box-sizing: inherit
}

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

* {
    margin: 0;
    padding: 0
}

hr {
    height: 0;
    overflow: visible
}

details,
main {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

input {
    border-radius: 0
}

[disabled] {
    cursor: default
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    color: inherit;
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

svg:not([fill]) {
    fill: currentColor
}

@media screen {
    [hidden~=screen] {
        display: inherit
    }

    [hidden~=screen]:not(:active):not(:focus):not(:target) {
        clip: rect(0 0 0 0) !important;
        position: absolute !important
    }
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled] {
    cursor: default
}

:root {
    --COLOR_WHITE: #fff;
    --COLOR_BLACK_2: #1d1d1d;
    --COLOR_BEIGE_2: #f3e5d8;
    --COLOR_YELLOW: #fbf0bf;
    --COLOR_PINK: #e787b2;
    --COLOR_PINK_2: #efaecb;
    --COLOR_PURPLE: #a972ab;
    --COLOR_ASH: #609cea;
    --COLOR_ORANGE: #e98b00;
    --COLOR_BROWN: #a75a2c;
    --BACKGROUND_PURPLE: #eee3ee;
    --BACKGROUND_ASH: #dfebfb;
    --BACKGROUND_PINK: #fae4ec;
    --BACKGROUND_ORANGE: #fbe8cc;
    --BACKGROUND_BROWN: #e9d5ca;
    --BASE_DURATION: .6s;
    --BASE_TIMING_FUNCTION: ease
}

* {
    /* box-sizing: border-box */
}

body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1;
    /* letter-spacing: .1em; */
    color: var(--COLOR_BLACK_2)
}

li {
    list-style: none
}

a {
    color: var(--COLOR_WHITE);
    text-decoration: none
}

img {
    height: auto;
    /* max-width: 100%; */
    vertical-align: middle
}

.l-main {
    flex: 1;
    overflow-x: hidden
}

.l-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.c-anime-fade {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: var(--BASE_DURATION);
    transition-timing-function: cubic-bezier(.4, .59, .41, .97)
}

.c-anime-fade.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.c-anime-letter path {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: var(--BASE_DURATION);
    transition-timing-function: cubic-bezier(0, .55, .45, 1)
}

.c-anime-letter path:nth-of-type(1) {
    transition-delay: 0s
}

.c-anime-letter path:nth-of-type(2) {
    transition-delay: 50ms
}

.c-anime-letter path:nth-of-type(3) {
    transition-delay: .1s
}

.c-anime-letter path:nth-of-type(4) {
    transition-delay: .15s
}

.c-anime-letter path:nth-of-type(5) {
    transition-delay: .2s
}

.c-anime-letter path:nth-of-type(6) {
    transition-delay: .25s
}

.c-anime-letter path:nth-of-type(7) {
    transition-delay: .3s
}

.c-anime-letter path:nth-of-type(8) {
    transition-delay: .35s
}

.c-anime-letter path:nth-of-type(9) {
    transition-delay: .4s
}

.c-anime-letter path:nth-of-type(10) {
    transition-delay: .45s
}

.c-anime-letter.is-active path {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

#c-gradient~path {
    stroke: url(#c-gradient)
}

#c-gradient .stop1 {
    stop-color: #dfb067
}

#c-gradient .stop2 {
    stop-color: #e85298
}

.c-particle {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain
}

.c-particle.c-particle--small {
    width: 3.4666666667vw;
    height: 3.4666666667vw
}

@media screen and (min-width:48em) {
    .c-particle.c-particle--small {
        width: 1.625rem;
        height: 1.625rem
    }
}

.c-particle.c-particle--medium {
    width: 9.3333333333vw;
    height: 9.3333333333vw
}

@media screen and (min-width:48em) {
    .c-particle.c-particle--medium {
        width: 4.375rem;
        height: 4.375rem
    }
}

.c-particle.c-particle--large {
    width: 10.6666666667vw;
    height: 10.6666666667vw
}

@media screen and (min-width:48em) {
    .c-particle.c-particle--large {
        width: 5rem;
        height: 5rem
    }
}

.c-particle.c-particle--orange {
    background-image: url(../../assets2/img/particle_orange.png)
}

.c-particle.c-particle--pink {
    background-image: url(../../assets2/img/particle_pink.png)
}

.c-particle.c-particle--yellow {
    background-image: url(../../assets2/img/particle_yellow.png)
}

.color2 {
    position: relative;
    /* padding-top: 40vw;
    padding-bottom: 7.4666666667vw */
}

@media screen and (min-width:48em) {
    .color2 {
        /* padding-top: 12.625rem;
        padding-bottom: 5.5rem */
    }
}
.qanda *,
.recommend *,
.color2 * {
    box-sizing: border-box;
}
.qanda img,
.recommend img,
.color2 img {
    max-width: 100%;
}


.color__inner {
    padding-inline: 7.4666666667%
}

@media screen and (min-width:48em) {
    .color__inner {
        max-width: 1048px;
        margin-inline: auto;
        padding-inline: 4.375%;
        box-sizing: content-box
    }
}

.color__heading {
    text-align: center
}

.color__en {
    display: block
}

.color__svg {
    width: 66.8vw
}

@media screen and (min-width:48em) {
    .color__svg {
        width: 380px
    }
}

.color__ja {
    display: block;
    margin-top: 2.6666666667vw;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 1.3125rem
}

@media screen and (min-width:48em) {
    .color__ja {
        margin-top: 1.125rem;
        font-size: 2rem
    }
}

.color__list {
    margin-top: 2.5rem
}

@media screen and (min-width:48em) {
    .color__list {
        margin-top: 5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
}

.color__item {
    position: relative;
    width: 85.3333333333vw;
    height: 102.6666666667vw;
    padding: 8.0666666667vw 14.9333333333vw 9.0666666667vw 9.0333333333vw;
    border-top-right-radius: 50px;
    overflow: hidden
}

@media screen and (min-width:48em) {
    .color__item {
        flex-basis: calc(50% - 2.96875vw);
        height: min(43.75vw, 560px);
        padding: 4rem 7.6335877863%;
        border-top-right-radius: 100px
    }
}

.color__item.color__item--01 {
    background-color: var(--BACKGROUND_PURPLE)
}

.color__item.color__item--01 .color__sub-heading {
    color: var(--COLOR_PURPLE)
}

.color__item.color__item--01 .color__description::before {
    background-image: url(../../assets2/img/icon_check_purple.svg)
}

.color__item.color__item--01 .color__label {
    color: var(--COLOR_PURPLE)
}

.color__item.color__item--02 {
    background-color: var(--BACKGROUND_PINK)
}

.color__item.color__item--02 .color__sub-heading {
    color: var(--COLOR_PINK)
}

.color__item.color__item--02 .color__description::before {
    background-image: url(../../assets2/img/icon_check_pink.svg)
}

.color__item.color__item--02 .color__label {
    color: var(--COLOR_PINK)
}

.color__item.color__item--03 {
    background-color: var(--BACKGROUND_ASH)
}

.color__item.color__item--03 .color__sub-heading {
    color: var(--COLOR_ASH)
}

.color__item.color__item--03 .color__description::before {
    background-image: url(../../assets2/img/icon_check_ash.svg)
}

.color__item.color__item--03 .color__label {
    color: var(--COLOR_ASH)
}

.color__item.color__item--04 {
    background-color: var(--BACKGROUND_ORANGE)
}

.color__item.color__item--04 .color__sub-heading {
    color: var(--COLOR_ORANGE)
}

.color__item.color__item--04 .color__description::before {
    background-image: url(../../assets2/img/icon_check_orange.svg)
}

.color__item.color__item--04 .color__label {
    color: var(--COLOR_ORANGE)
}

.color__item.color__item--05 {
    background-color: var(--BACKGROUND_BROWN)
}

.color__item.color__item--05 .color__sub-heading {
    color: var(--COLOR_BROWN)
}

.color__item.color__item--05 .color__description::before {
    background-image: url(../../assets2/img/icon_check_brown.svg)
}

.color__item.color__item--05 .color__label {
    color: var(--COLOR_BROWN)
}

.color__item:not(:first-of-type) {
    margin-top: 2.75rem
}

@media screen and (min-width:48em) {
    .color__item:not(:first-of-type) {
        margin-top: 4.5rem
    }
}

@media screen and (min-width:48em) {
    .color__item:nth-of-type(2) {
        margin-top: 10.25rem
    }
}

@media screen and (min-width:48em) {
    .color__item:nth-of-type(3) {
        margin-top: -2.5rem
    }
}

@media screen and (min-width:48em) {
    .color__item:nth-of-type(4) {
        margin-top: 8.5rem
    }
}

@media screen and (min-width:48em) {
    .color__item:nth-of-type(5) {
        margin-top: -2.875rem
    }
}

.color__contents {
    position: relative;
    z-index: 1
}

.color__sub-heading {
    font-weight: 500;
    font-size: 5.6vw;
    letter-spacing: 0
}

@media screen and (min-width:48em) {
    .color__sub-heading {
        font-size: 2rem
    }
}

.color__text {
    margin-top: 4.2666666667vw
}

@media screen and (min-width:48em) {
    .color__text {
        margin-top: 1.5rem
    }
}

.color__description {
	font-family: "Noto Sans JP",sans-serif;
    position: relative;
    margin-top: 2.6666666667vw;
    padding-left: 1.8em;
    font-size: 3.2vw;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 400;
}

@media screen and (min-width:48em) {
    .color__description {
        margin-top: 1.2rem;
        font-size: 1.6rem;
        line-height: normal;
        letter-spacing: 0.06em;
    }
}

.color__description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4.6666666667vw;
    height: 4.6666666667vw;
    border-radius: 50%;
    background-size: contain
}

@media screen and (min-width:48em) {
    .color__description::before {
        top: 2px;
        width: 22px;
        height: 22px
    }
}

.color__package {
    position: absolute;
    right: 0;
    bottom: 16vw;
    width: 34vw
}

@media screen and (min-width:48em) {
    .color__package {
        bottom: min(5vw, 64px);
        width: min(15.3125vw, 196px)
    }
}

.color__model {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62.9333333333vw
}

@media screen and (min-width:48em) {
    .color__model {
        width: min(28.125vw, 360px)
    }
}

.color__label {
    opacity: .2;
    position: absolute;
    top: 9.0666666667vw;
    left: -5.1333333333vw;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 13.3333333333vw;
    letter-spacing: .4em
}

@media screen and (min-width:48em) {
    .color__label {
        top: 4.75rem;
        left: -27px;
        font-size: 8rem
    }
}

.color__particle {
    position: absolute;
    z-index: -1
}

.color__particle.color__particle--01 {
    top: 21.3333333333vw;
    left: 6.4vw
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--01 {
        top: 6.25vw;
        left: 12.5vw
    }
}

.color__particle.color__particle--02 {
    top: 123.7333333333vw;
    right: 2.1333333333vw
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--02 {
        top: 12.5vw;
        right: 3.125vw
    }
}

.color__particle.color__particle--03 {
    top: 64vw;
    right: 2.1333333333vw
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--03 {
        top: 37.5vw;
        right: 20.625vw
    }
}

.color__particle.color__particle--04 {
    top: 228.2666666667vw;
    left: 2.1333333333vw
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--04 {
        top: 30vw;
        left: 3.125vw
    }
}

.color__particle.color__particle--05 {
    right: 0;
    bottom: 266.6666666667vw
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--05 {
        right: 0;
        bottom: 62.5vw
    }
}

.color__particle.color__particle--06 {
    bottom: 153.6vw;
    left: 0
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--06 {
        bottom: 37.5vw;
        left: 1.875vw
    }
}

.color__particle.color__particle--07 {
    bottom: 64vw;
    right: 0
}

@media screen and (min-width:48em) {
    .color__particle.color__particle--07 {
        bottom: 0;
        right: 18.75vw
    }
}

.qanda {
    position: relative;
    padding-bottom: 14.9333333333vw;
    background-color: var(--COLOR_BEIGE_2)
}

@media screen and (min-width:48em) {
    .qanda {
        padding-bottom: 8.5rem
    }
}

.qanda::before {
    content: "";
    position: absolute;
    top: -27.2vw;
    left: 0;
    width: 100%;
    height: 31.2vw;
    xxbackground-image: url(../../assets2/img/qanda_bg_top_sp.png);
    background-size: cover
}

@media screen and (min-width:48em) {
    .qanda::before {
        top: -9.375vw;
        height: 9.375vw;
        xxbackground-image: url(../../assets2/img/qanda_bg_top_pc.png)
    }
}

.qanda::after {
    content: "";
    position: absolute;
    bottom: -4.2666666667vw;
    left: 0;
    xxbackground-image: url(../../assets2/img/qanda_bg_bottom_sp.png);
    background-repeat: repeat-x;
    background-size: cover;
    width: 100%;
    height: 70.8vw
}

@media screen and (min-width:48em) {
    .qanda::after {
        bottom: -1.25vw;
        height: 29.53125vw;
        xxbackground-image: url(../../assets2/img/qanda_bg_bottom_pc.png)
    }
}

.qanda__inner {
    padding-inline: 7.4666666667%
}

@media screen and (min-width:48em) {
    .qanda__inner {
        max-width: 1040px;
        margin-inline: auto;
        padding-inline: 4.375%;
        box-sizing: content-box
    }
}

.qanda__contents {
    position: relative;
    z-index: 1
}

.qanda__heading {
    text-align: right
}

.qanda__svg {
    width: 23.8666666667vw
}

@media screen and (min-width:48em) {
    .qanda__svg {
        width: 179px
    }
}

.qanda__title {
    margin-top: 11.2vw;
    display: flex;
    flex-direction: column;
    align-items: center
}

@media screen and (min-width:48em) {
    .qanda__title {
        margin-top: 3rem
    }
}

.qanda__main {
    width: 48vw
}

@media screen and (min-width:48em) {
    .qanda__main {
        width: 300px
    }
}

.qanda__sub {
    margin-top: 2.1333333333vw;
    font-weight: 500;
    font-size: 3.2vw
}

@media screen and (min-width:48em) {
    .qanda__sub {
        margin-top: .75rem;
        font-size: 1rem
    }
}

.qanda__lead {
    margin-top: 6.4vw;
    font-size: 3.2vw;
    line-height: 1.8333333333
}

@media screen and (min-width:48em) {
    .qanda__lead {
        width: 54%;
        margin-top: 2.375rem;
        margin-inline: auto;
        text-align: center;
        font-size: 1rem;
        line-height: 2
    }
}

.qanda__column {
    position: relative;
    margin-top: 8.5333333333vw;
    display: flex;
    justify-content: space-between
}

@media screen and (min-width:48em) {
    .qanda__column {
        width: 92.4%;
        margin-top: 3rem;
        margin-inline: auto
    }
}

.qanda__column::after,
.qanda__column::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    width: 14.4vw;
    height: 1px;
    background-color: var(--COLOR_BLACK_2)
}

@media screen and (min-width:48em) {

    .qanda__column::after,
    .qanda__column::before {
        top: 48%;
        width: 66px
    }
}

.qanda__column::before {
    -webkit-transform: translateX(-50%) rotate(40deg);
    transform: translateX(-50%) rotate(40deg)
}

@media screen and (min-width:48em) {
    .qanda__column::before {
        -webkit-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg)
    }
}

.qanda__column::after {
    -webkit-transform: translateX(-50%) rotate(-40deg);
    transform: translateX(-50%) rotate(-40deg)
}

@media screen and (min-width:48em) {
    .qanda__column::after {
        -webkit-transform: translateX(-50%) rotate(-45deg);
        transform: translateX(-50%) rotate(-45deg)
    }
}

.qanda__package {
    flex-basis: 38.9333333333vw;
    position: relative
}

@media screen and (min-width:48em) {
    .qanda__package {
        flex-basis: 43.6%
    }
}

.qanda__name {
    position: absolute;
    left: 50%;
    bottom: 4.8vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 3.7333333333vw;
    letter-spacing: 0
}

@media screen and (min-width:48em) {
    .qanda__name {
        top: 44%;
        left: 36%;
        font-size: 2.1875vw
    }
}
@media screen and (min-width:75em) {
    .qanda__name {
        font-size: 26px;
    }
}

.qanda__list {
    margin-top: 13.3333333333vw;
    padding: 2.6666666667vw 6.4vw;
    border-radius: 10px;
    background-color: var(--COLOR_WHITE);
    display: flex;
    flex-direction: column;
    align-items: center
}

@media screen and (min-width:48em) {
    .qanda__list {
        flex-direction: row;
        align-items: flex-start;
        margin-top: 6.375rem;
        padding-top: 4.875rem;
        padding-inline: 3.5rem;
        padding-bottom: 3rem;
        border-radius: 20px
    }
}

.qanda__item {
    padding: 8vw 5.3333333333vw 5.8666666667vw
}

@media screen and (min-width:48em) {
    .qanda__item {
        flex-basis: 50%;
        padding: 2.75rem 9.6153846154%
    }
}

.qanda__item:not(:first-of-type) {
    position: relative
}

.qanda__item:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5
}

@media screen and (min-width:48em) {
    .qanda__item:not(:first-of-type)::before {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1px;
        height: 100%
    }
}

.qanda__head {
    text-align: center;
    letter-spacing: 0
}

.qanda__en {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 4.2666666667vw
}

@media screen and (min-width:48em) {
    .qanda__en {
        font-size: 1.6rem
    }
}

.qanda__ja {
	font-family: "Noto Sans JP",sans-serif;
    margin-top: 2.6666666667vw;
    font-weight: 500;
    font-size: 3.7333333333vw
}

@media screen and (min-width:48em) {
    .qanda__ja {
        margin-top: .5rem;
        font-size: 2.0rem;
        line-height: 1.2
    }
}

.qanda__body {
    margin-top: 5.3333333333vw
}

@media screen and (min-width:48em) {
    .qanda__body {
        margin-top: 2.625rem
    }
}

.qanda__image {
    width: 77.2%;
    margin-inline: auto
}

@media screen and (min-width:48em) {
    .qanda__image {
        width: 85%
    }
}

.qanda__description {
    margin-top: 3.7333333333vw;
    font-size: 3.2vw;
    line-height: 1.8333333333
}

@media screen and (min-width:48em) {
    .qanda__description {
        margin-top: 2.625rem;
        font-size: 1.45rem;
        line-height: 1.7142857143
    }
}

.recommend {
    position: relative;
    /* padding-bottom: 6.9333333333vw; */
    background-color: var(--COLOR_YELLOW)
}

@media screen and (min-width:48em) {
    .recommend {
        /* padding-top: 3.5rem;
        padding-bottom: 6.25rem */
    }
}

.recommend::xxafter {
    content: "";
    position: absolute;
    bottom: -33.3333333333vw;
    left: 0;
    xxbackground-image: url(../../assets2/img/recommend_bg_bottom_sp.png);
    background-size: cover;
    width: 100%;
    height: 33.3333333333vw
}

@media screen and (min-width:48em) {
    .recommend::after {
        bottom: -11.25vw;
        height: 11.328125vw;
        xxbackground-image: url(../../assets2/img/recommend_bg_bottom_pc.png)
    }
}

.recommend__inner {
    padding-inline: 12.2666666667vw
}

@media screen and (min-width:48em) {
    .recommend__inner {
        max-width: 920px;
        margin-inline: auto;
        padding-inline: 4.375%;
        box-sizing: content-box
    }
}

.recommend__heading {
    text-align: center
}

.recommend__svg {
    width: 32.2666666667vw
}

@media screen and (min-width:48em) {
    .recommend__svg {
        width: 205px
    }
}

.recommend__ja {
    display: block;
    margin-top: 1.6vw;
    font-weight: 700;
    font-size: 6.1333333333vw;
    letter-spacing: 0
}

@media screen and (min-width:48em) {
    .recommend__ja {
        margin-top: .46875vw;
        font-size: 2.5rem
    }
}

.recommend__lead {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.8333333333
}

@media screen and (min-width:48em) {
    .recommend__lead {
        margin-top: 2.5rem;
        text-align: center;
        font-size: 1rem;
        line-height: 2
    }
}

.recommend__column {
    margin-top: 4.8vw
}

@media screen and (min-width:48em) {
    .recommend__column {
        margin-top: 2.5rem;
        display: flex
    }
}

@media screen and (min-width:48em) {
    .recommend__text {
        flex-basis: 58.6956521739%;
        margin-left: -2.1739130435%;
        padding-right: 6.0869565217%
    }
}

.recommend__item {
	font-family: "Noto Sans JP",sans-serif;
    position: relative;
    padding: 4.8vw 2.1333333333vw 4.8vw 9.6vw;
    border-top-left-radius: 10px;
    background-color: var(--COLOR_WHITE);
    font-size: 3.0666666667vw;
    line-height: 1.7391304348
}

@media screen and (min-width:48em) {
    .recommend__item {
        padding: 2.625rem 9.009009009% 2.875rem 18.018018018%;
        background-color: var(--COLOR_WHITE);
        border-top-left-radius: 20px;
        font-size: 1.8rem;
        line-height: 1.7777777778
    }
}

.recommend__item:not(:first-of-type) {
    margin-top: 3.2vw
}

@media screen and (min-width:48em) {
    .recommend__item:not(:first-of-type) {
        margin-top: 2.5rem
    }
}

.recommend__item:nth-of-type(1)::before {
    background-image: url(../../assets2/img/icon_check_orange.svg)
}

.recommend__item:nth-of-type(2)::before {
    background-image: url(../../assets2/img/icon_check_ash.svg)
}

.recommend__item:nth-of-type(3)::before {
    background-image: url(../../assets2/img/icon_check_pink.svg)
}

.recommend__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3.7333333333vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4.6666666667vw;
    height: 4.6666666667vw;
    border-radius: 50%;
    background-size: contain
}

@media screen and (min-width:48em) {
    .recommend__item::before {
        left: 9.9173553719%;
        width: 26px;
        height: 26px
    }
}

.recommend__image {
    margin-top: 7.4666666667vw
}

@media screen and (min-width:48em) {
    .recommend__image {
        flex-basis: 43.4782608696%;
        margin-top: 0
    }
}

.u-pc {
    display: none
}

@media screen and (min-width:48em) {
    .u-pc {
        display: block
    }
}

.u-pc-large {
    display: none
}

@media screen and (min-width:1100px) {
    .u-pc-large {
        display: block
    }
}

.u-sp {
    display: block
}

@media screen and (min-width:48em) {
    .u-sp {
        display: none
    }
}

.u-uppercase {
    text-transform: uppercase
}