@charset "UTF-8";

/*==================================================
reset
==================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: 400;
    vertical-align: baseline;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

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

span {
    line-height: inherit;
    font-size: inherit;
    text-decoration: inherit;
    vertical-align: inherit;
    font-weight: inherit;
}

body {
    -webkit-text-size-adjust: 100%;
}

ol,
ul {
    list-style: none;
}

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

em,
strong,
em *,
strong * {
    font-weight: bold;
}

/*--form初期化--*/
input[type=submit],
button {
    cursor: pointer;
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
    font-family: inherit;
}

::placeholder {
    opacity: 1;
}

::-ms-input-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

a {
    text-decoration: none;
    border: none;
    color: inherit;
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

th {
    text-align: left;
}

@media screen and (min-width: 768px) {
    a[href*="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {

    html,
    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    sup,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    button,
    input[type=text],
    input[type=image],
    input[type=password],
    input[type=file],
    input[type=submit],
    input[type=reset],
    input[type=button],
    input[type=email],
    input[type=tel] textarea {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
        border-radius: 0;
        box-shadow: none;
        appearance: none;
    }

    textarea,
    input[type=email],
    input[type=text],
    input[type=image],
    input[type=password] {
        -webkit-appearance: none;
    }
}

/*==================================================
leyout 
==================================================*/
:root {
    /*size*/
    --site-padding: 20px;
    /*color*/
    --main-color: #449EBC;
    --torori: linear-gradient(87deg, #FF507C 1.15%, #FF6E6C 100%);
    --sarari: linear-gradient(87deg, #00ACE7 -7.78%, #04A696 100%);
    /*font*/
    --font-base: 1.5rem;
    --font-jp: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
    --font-en: Montserrat;
    --base-line: 1.6;
}

@media screen and (max-width: 375px) {
    :root {
        --site-padding: 15px;
    }
}

/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
    font-family: var(--font-jp);
    font-size: 62.5%;
}

.wrapper {
    padding-top: 60px;
}

@media all and (min-width: 768px) {
    body {
        position: relative;
        padding-top: 0;
        background: url("../img/pc-bg-02.jpg") repeat-y center 780px/100vw auto;
    }

    body:before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        height: 780px;
        background: url("../img/pc-bg-01.jpg") no-repeat center/cover;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        position: fixed;
        top: 0;
    }

    .wrapper {
        max-width: 400px;
        margin: 0 auto;
        background: #fff;
        box-shadow: 0px 0px 75px 0px rgba(31, 32, 109, 0.1);
    }
}

.fixed-contents {
    position: fixed;
    top: 0;
    display: grid;
    place-content: center;
    width: calc(50% - 200px);
    height: 100vh;
}

.fixed-contents--left {
    left: 0;
}

.fixed-contents--right {
    right: 0;
}

.fixed-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    width: 300px;
}

@media screen and (max-width: 1179px) {
    .fixed-list {
        width: 100%;
    }
}

.fixed-product {
    display: grid;
    transition: opacity 0.7s;
}

@media (hover: hover) and (pointer: fine) {
    .fixed-product:hover {
        opacity: 0.7;
    }
}

.fixed-product-item {
    margin: 0 auto 10px auto;
}

.fixed-product-data {
    display: grid;
    gap: 8px;
    color: #fff;
}

.fixed-product-data__title {
    display: grid;
    place-items: center;
}

.fixed-product-data__brand {
    margin-bottom: 5px;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1.7rem;
}

.fixed-product-data__name {
    display: grid;
    place-items: center;
    width: 100%;
    font-size: 1rem;
    padding: 1px;
    color: #363636;
}

.fixed-product-data__name--sarari {
    background: rgba(178, 228, 243, 0.85);
}

.fixed-product-data__name--torori {
    background: rgba(255, 204, 199, 0.85);
}

.fixed-product-data__price {
    display: grid;
    margin-bottom: 1px;
    place-items: center;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-en);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.fixed-product-data__tax {
    position: relative;
    top: -1px;
    font-size: 1.1rem;
    line-height: 1;
    font-family: var(--font-jp);
    font-weight: 400;
}

.fixed-product-button {
    position: relative;
    display: grid;
    place-items: center;
    height: 35px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
}

.fixed-product-button--sarari {
    background: linear-gradient(87deg, #00ACE7 -7.78%, #04A696 100%), linear-gradient(0deg, rgba(46, 71, 123, 0.7) 0%, rgba(46, 71, 123, 0.7) 100%), linear-gradient(270deg, rgba(0, 114, 254, 0.9) 0%, rgba(1, 0, 26, 0.9) 100%);
}

.fixed-product-button--torori {
    background: linear-gradient(87deg, #FF507C 1.15%, #FF6E6C 100%), linear-gradient(0deg, rgba(46, 71, 123, 0.7) 0%, rgba(46, 71, 123, 0.7) 100%), linear-gradient(270deg, rgba(0, 114, 254, 0.9) 0%, rgba(1, 0, 26, 0.9) 100%);
}

.fixed-product-button__text {
    padding-right: 20px;
    padding-bottom: 1px;
    background: url("../img/button-arrow.svg") no-repeat right center;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .fixed-contents {
        display: none;
    }
}

/*--------------------------------------
l-header
----------------------------------------*/
.header {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
}

@media screen and (min-width: 1023px) {
    .header {
        position: absolute;
    }
}

@media all and (min-width: 768px) {
    .header {
        right: 0;
        max-width: 400px;
        margin: auto;
    }
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding-inline: 20px 11px;
}

.header-button {
    display: grid;
    place-items: center;
    width: 120px;
    height: 35px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    background: url("../img/header-button-bg.svg") no-repeat center/contain;
    line-height: 1;
}

.header-button__buy {
    padding-inline: 10px 20px;
    background: url("../img/under-arrow.svg") no-repeat right top/10px auto;
}

/*--------------------------------------
main
----------------------------------------*/
.main {
    line-height: var(--base-line);
    font-size: var(--font-base);
    color: #363636;
}

/*--------------------------------------
footer
----------------------------------------*/
.footer {
    display: grid;
    justify-content: center;
    gap: 25px;
    padding: 40px 0;
    text-align: center;
    font-size: 1.2rem;
    border: solid 1px #363636;
    border-top: none;
}

.footer__list {
    display: flex;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.footer__list a {
    padding-right: 15px;
    background: url("../img/ico-site.svg") no-repeat right center;
}

.footer__copy {
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

/*==================================================
module
==================================================*/
/*--------------------
inner
--------------------*/
.inner {
    width: 100%;
    margin: 0 auto;
    padding-inline: var(--site-padding);
}

/*==================================================
c-product
==================================================*/
.c-product {
    padding-block: 50px;
    background: url("../img/product-bg.png") no-repeat center/cover;
}

.c-product-title {
    display: grid;
    place-items: center;
    width: fit-content;
    margin: 0 auto 30px;
    padding-inline: 40px;
    color: #fff;
    background-image: url("../img/product-title-line.png"), url("../img/product-title-line.png");
    background-repeat: no-repeat;
    background-position: left center, right center;
    background-size: 20px auto, 20px auto;
    color: #fff;
}

.c-product-title__en {
    font-size: 3.8rem;
    font-weight: 600;
    font-family: var(--font-en);
    line-height: 1.2;
    letter-spacing: 0.033em;
}

.c-product-title__jp {
    line-height: 1.5;
}

.c-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 30px;
}

.c-product-unit {
    display: grid;
    background: #fff;
}

.c-product-data {
    padding: 15px 15px 15px 15px;
}

.c-product-data__title {
    display: grid;
    place-items: center;
}

.c-product-data__brand {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1.7rem;
}

.c-product-data__name {
    display: grid;
    place-items: center;
    width: 100%;
    font-size: 1rem;
}

.c-product-data__name--sarari {
    background: rgba(178, 228, 243, 0.45);
}

.c-product-data__name--torori {
    background: rgba(255, 204, 199, 0.45);
}

.c-product-data__price {
    display: grid;
    place-items: center;
    padding: 5px 5px 2px 5px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-en);
}

.c-product-data__tax {
    position: relative;
    top: -1px;
    font-size: 1rem;
    line-height: 1;
    font-family: var(--font-jp);
}

.c-product-button {
    position: relative;
    display: grid;
    place-items: center;
    height: 35px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
}

.c-product-button--sarari {
    background: linear-gradient(87deg, #00ACE7 -7.78%, #04A696 100%), linear-gradient(0deg, rgba(46, 71, 123, 0.7) 0%, rgba(46, 71, 123, 0.7) 100%), linear-gradient(270deg, rgba(0, 114, 254, 0.9) 0%, rgba(1, 0, 26, 0.9) 100%);
}

.c-product-button--torori {
    background: linear-gradient(87deg, #FF507C 1.15%, #FF6E6C 100%), linear-gradient(0deg, rgba(46, 71, 123, 0.7) 0%, rgba(46, 71, 123, 0.7) 100%), linear-gradient(270deg, rgba(0, 114, 254, 0.9) 0%, rgba(1, 0, 26, 0.9) 100%);
}

.c-product-button__text {
    padding-right: 20px;
    padding-bottom: 1px;
    background: url("../img/button-arrow.svg") no-repeat right center;
    line-height: 1;
}

.c-product-sub-title {
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.01em;
}

.c-sarari-color {
    background-image: var(--sarari);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-torori-color {
    background-image: var(--torori);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*==================================================
main-visual
==================================================*/
.main-visual {
    position: relative;
    z-index: 1;
    padding-top: 5px;
}

/*==================================================
page
==================================================*/
.about {
    position: relative;
    z-index: 0;
    padding-block: 25px 60px;
    color: #fff;
}

.about:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: -20vw;
    display: block;
    width: 100%;
    height: calc(100% + 20vw);
    background: url("../img/about-bg.jpg") no-repeat center top/cover;
}

@media all and (min-width: 768px) {
    .about:before {
        top: -80px;
        height: calc(100% + 80px);
    }
}

.about-title {
    width: fit-content;
    margin: 0 auto 30px auto;
}

.about-textarea {
    display: grid;
    gap: 15px;
    line-height: 2;
    margin-bottom: 45px;
}

.about-item {
    display: grid;
    justify-items: center;
    gap: 60px;
}

/*==================================================
ingredient
==================================================*/
.ingredient {
    padding-bottom: 60px;
    background: url("../img/ingredient-bg.jpg") no-repeat center 70vw/cover;
}

@media all and (min-width: 768px) {
    .ingredient {
        background-position: center 280px;
    }
}

.ingredient-main {
    margin-bottom: 40px;
}

.ingredient-list {
    margin-bottom: 30px;
}

.ingredient-list__row {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.ingredient-list__item {
    position: relative;
    display: grid;
    place-items: center;
    width: calc(100% - 10px);
    border-radius: 3px;
    height: 28px;
    font-size: 1.4rem;
    color: #fff;
}

.ingredient-list__item:after {
    content: "";
    position: absolute;
    bottom: -5px;
    display: block;
    width: 7px;
    height: 7px;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.ingredient-list__item--heat {
    background: rgba(81, 181, 215, 0.9);
}

.ingredient-list__item--heat:after {
    background: rgba(81, 181, 215, 0.9);
}

.ingredient-list__item--oil {
    background: #F56A5F;
}

.ingredient-list__item--oil:after {
    background: #F56A5F;
}

.ingredient-bottom {
    margin-bottom: 15px;
}

.ingredient-result {
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.9;
    font-weight: 600;
}

.ingredient-result__strong {
    color: #FFEC1E;
}

.ingredient-more {
    margin-bottom: 35px;
    padding-bottom: 70px;
    background: url("../img/ingredient-arrow.svg") no-repeat center bottom;
    color: #fff;
}

/*==================================================
heatcare
==================================================*/
.heatcare-title {
    margin-bottom: 35px;
    text-align: center;
}

.heatcare-contents {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.heatcare-unit {
    display: grid;
    gap: 20px;
    padding: 18px;
    background: #fff;
}

.heatcare-row {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 90px;
    justify-content: space-between;
}

.heatcare-name {
    display: grid;
    align-items: center;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CECECE;
    padding-bottom: 10px;
    color: var(--main-color);
    line-height: 1;
}

.heatcare-name__col {
    display: grid;
    gap: 5px;
}

.heatcare-name__num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: url("../img/heatcare-num-bg.png") no-repeat center/cover;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
}

.heatcare-name__small {
    position: relative;
    top: 2px;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -1px;
}

.heatcare-name__text {
    font-size: 1.9rem;
    font-weight: 600;
}

.heatcare-text {
    font-size: 1.4rem;
}

.heatcare-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
    background: #f6f6f6;
    font-size: 1.2rem;
    line-height: 1.5;
}

.heatcare-list__item {
    display: grid;
    place-items: center start;
}

.heatcare-list__item:nth-child(odd) {
    padding-right: 10px;
    border-right: 1px dotted #CECECE;
}

.heatcare-list__item:nth-child(even) {
    padding-left: 10px;
}

.heatcare-list__text {
    padding-left: 20px;
    background: url("../img/ico-check.svg") no-repeat left center;
}

/*==================================================
texture
==================================================*/
.texture {
    background: url("../img/texture-bg.png") no-repeat center/cover;
}

.texture-main {
    margin-bottom: 20px;
}

.texture-unit {
    border: 1px solid #01abd5;
    background: #fff;
}

.texture-body {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.texture-contents {
    display: grid;
    place-items: center;
    gap: 20px;
    padding: 25px 20px 20px 20px;
}

.texture-list {
    display: grid;
    gap: 5px;
    min-height: 135px;
    padding: 25px 20px 25px 80px;
    background: #E9F6FA url("../img/texture-sarari-item.png") no-repeat 10px center/68px auto;
    font-size: 1.4rem;
}

.texture-list li {
    padding-left: 20px;
    background: url("../img/ico-check.svg") no-repeat left 3px;
    line-height: 1.5;
}

.texture-unit--torori {
    border: 1px solid #fe5f73;
}

.texture-unit--torori .texture-list {
    background: #FDF1F0 url("../img/texture-torori-item.png") no-repeat 10px center/68px auto;
}

.texture-unit--torori .texture-list li {
    background: url("../img/ico-check-torori.svg") no-repeat left 3px;
}

/*==================================================
feature
==================================================*/
.feature {
    position: relative;
    padding-bottom: 60px;
    background: url("../img/feature-bg.png") center top/cover;
}

.feature-main {
    position: relative;
    height: 80vw;
    margin-bottom: 15px;
}

@media all and (min-width: 768px) {
    .feature-main {
        height: 320px;
    }
}

.feature-main img {
    position: absolute;
    left: 0;
    top: -10vw;
}

@media all and (min-width: 768px) {
    .feature-main img {
        top: -40px;
    }
}

.feature-body {
    display: grid;
    gap: 20px;
}

.feature-unit {
    display: grid;
    gap: 15px;
    padding: 25px 20px 20px 20px;
    background: #fff;
}

.feature-en-title {
    color: #BCB8B8;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 600;
    font-family: var(--font-en);
}

.feature-jp-title {
    display: grid;
    place-items: center;
}

.feature-fragrance-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-fragrance-list li {
    position: relative;
    display: grid;
    gap: 3px;
    text-align: center;
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-fragrance-list li:nth-child(2):before,
.feature-fragrance-list li:nth-child(2):after {
    content: "";
    position: absolute;
    top: 8vw;
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    background: url("../img/fragrance-close.svg") no-repeat center;
}

.feature-fragrance-list li:nth-child(2):before {
    left: -27px;
}

.feature-fragrance-list li:nth-child(2):after {
    right: -27px;
}

.feature-handcare-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 5px;
}

.feature-handcare-list li {
    position: relative;
    padding: 0 5px 13px 5px;
    line-height: 1.3;
    font-size: 1.2rem;
    letter-spacing: -0.036em;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}

.feature-handcare-list li:nth-child(-n+4) {
    border-bottom: 1px solid #eee;
}

.feature-handcare-list li:nth-child(n+5):nth-child(-n+8) {
    padding: 13px 5px 0 5px;
}

.feature-handcare-list li:nth-child(n+5):nth-child(-n+7):before,
.feature-handcare-list li:nth-child(-n+3):before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    height: calc(100% - 10px);
    border-right: 1px solid #eee;
}

.feature-handcare-list li:nth-child(-n+3):before {
    top: 0;
}

.feature-handcare-list li:nth-child(n+5):nth-child(-n+7):before {
    bottom: 0;
}

.feature-handcare-list li img {
    display: block;
    margin-bottom: 5px;
}

.feature-other {
    display: grid;
    gap: 10px;
    padding: 20px;
    background: #E9F6FA;
}

.feature-other__title {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 20px;
    color: var(--main-color);
    font-weight: 600;
}

.feature-other__title:before,
.feature-other__title:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 15px;
    height: 20px;
    margin: auto;
    background: url("../img/product-title-line.png") no-repeat center/contain;
}

.feature-other__title:before {
    left: 0;
}

.feature-other__title:after {
    right: 0;
}

.feature-other__list {
    font-size: 1.2rem;
    line-height: 1.7;
}

.feature-other__list li {
    padding-left: 20px;
    background: url("../img/ico-check.svg") no-repeat left center;
}

/*==================================================
trouble
==================================================*/
.trouble {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 20px 20px 25px 20px;
}

.trouble:before,
.trouble:after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 10px;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.trouble:before {
    left: 0;
    border-left: 1px solid #fff;
}

.trouble:after {
    right: 0;
    border-right: 1px solid #fff;
}

.trouble-title {
    width: fit-content;
    margin: 0 auto;
}

.trouble-sub-title {
    margin-bottom: 5px;
}

.trouble-ranking {
    padding: 15px;
    background: #fff;
}

.trouble-unit {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    padding-block: 7px;
    border-bottom: 1px solid #CECECE;
}

.trouble-unit:last-child {
    border-bottom: none;
}

.trouble-unit__num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: url("../img/heatcare-num-bg.png") no-repeat center/cover;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-en);
    font-weight: 600;
}

.trouble-unit__text {
    font-size: 1.7rem;
    color: var(--main-color);
    font-weight: 600;
}

.trouble-unit__dots {
    color: #363636;
    opacity: 0.3;
}

.trouble-unit__per {
    font-size: 1.3rem;
    font-weight: 600;
}

.trouble-small {
    margin-top: 5px;
    font-size: 1rem;
}

.trouble-solution {
    display: grid;
    gap: 13px;
    color: #fff;
}

.trouble-solution__title {
    position: relative;
    display: flex;
    justify-content: center;
    padding-inline: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.9rem;
}

.trouble-solution__title:before,
.trouble-solution__title:after {
    content: "";
    align-self: flex-end;
    display: block;
    height: 70%;
    border-left: 1px solid #fff;
}

.trouble-solution__title:before {
    margin-right: 15px;
    transform: rotate(-15deg);
}

.trouble-solution__title:after {
    margin-left: 15px;
    transform: rotate(15deg);
}

.trouble-solution__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}

/*==================================================
benefit
==================================================*/
.benefit {
    padding-block: 60px;
    background: url("../img/benefit-bg.jpg") no-repeat center top/cover;
}

.benefit-title {
    margin-bottom: 30px;
}

.benefit-main {
    margin-bottom: 10px;
}

.benefit-list {
    margin-bottom: 45px;
    padding-inline: 20px;
    color: #fff;
    font-size: 1.8rem;
}

.benefit-list li {
    padding: 15px 0 15px 30px;
    border-bottom: 1px dotted #fff;
    background: url("../img/ico-check-wh.svg") no-repeat left center;
    font-weight: 600;
}

.benefit-list li:last-child {
    border: none;
}

.benefit-list em {
    font-style: normal;
    color: #FFEC1E;
    font-weight: inherit;
}

.benefit-sub-title {
    position: relative;
    top: -1px;
    clip-path: polygon(0 0%, 100% 0%, 97% 100%, 3% 100%);
    display: grid;
    place-items: center;
    height: 50px;
    margin-bottom: 5px;
    padding-bottom: 2px;
    background-color: #011E56;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 2.7px;
}

.benefit-unit {
    padding: 0 20px 20px 20px;
    background: #fff;
    border-top: 2px solid #011E56;
}

.benefit-unit:not(:last-child) {
    margin-bottom: 20px;
}

/*==================================================
case
==================================================*/
.case-unit {
    display: grid;
    gap: 15px;
    grid-template-columns: 125px 1fr;
    padding-block: 15px;
    border-bottom: 1px dotted #cecece;
}

.case-unit:nth-child(even) {
    grid-template-columns: 1fr 125px;
}

.case-unit:last-child {
    border-bottom: none;
}

.case-unit__data {
    display: grid;
    gap: 10px;
}

.case-unit__data dt {
    position: relative;
    width: fit-content;
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 600;
}

.case-unit__data dt:after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-image: inherit;
}

/*==================================================
voice
==================================================*/
.voice-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.voice-title__num {
    position: relative;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-en);
}

.voice-title__num:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: inherit;
}

.voice-title__text {
    color: #363636;
    opacity: 0.6;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.voice-unit {
    padding-block: 25px;
    border-bottom: 1px dotted #CECECE;
}

.voice-unit:first-child {
    padding-top: 15px;
}

.voice-row {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 115px;
}

.voice-text {
    font-size: 1.3rem;
}

.voice-small {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

/*JS*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider * {
    outline: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-dots {
    position: absolute;
    bottom: -20px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: red;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
}

.slick-dots li.slick-active button {
    background: blue;
}

/*SASS MODULE*/
