@charset "UTF-8";

/* ----------------  Reset CSS -------------------- */

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,
main,
menu,
header_nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    /*font-size: 100%;*/
    vertical-align: baseline;
}

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

html {
    overflow-y: scroll;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

input,
textarea {
    margin: 0;
    padding: 0;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder {
    color: #888;
}

input[type='button'],
input[type='submit'],
input[type='search'],
input[type='reset'] {
    -webkit-appearance: none;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption,
th {
    text-align: left;
}

a:focus {
    outline: none;
}

.clearfix:after {
    content: '';
    clear: both;
    display: block;
}

/* ----------------  common ---------------- */

html {
    color: #333;
    font-size: 62.5%;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.8;
}

/* MPLUS1p NotoSans */
html,
body {
    font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif, 'qMmpS Pro', 'Hiragino Kaku Gothic Pro', 'CI', Meiryo, 'MS PSVbN', 'MS PGothic', sans-serif;
}

body .product {
    font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif, 'qMmpS Pro', 'Hiragino Kaku Gothic Pro', 'CI', Meiryo, 'MS PSVbN', 'MS PGothic', sans-serif !important;
}

body {
    font-size: 1.8rem;
    overflow: hidden;
}

main {
    /* headerdΘθ */
    padding-top: 90px;
}

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

a {
    color: inherit;
    transition: all 0.3s;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

a[href^='tel:'] {
    cursor: default;
    opacity: 1;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
}

h1,
h2,
h3,
strong {
    font-weight: 700;
}

h2 {
    letter-spacing: 0.08em;
}

.sec_ttl {
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 1.8em;
    text-align: center;
}

.font_noto {
    font-family: 'Noto Sans JP', sans-serif;
}

.txt_red {
    color: #e50012;
}

.txt_s {
    font-size: 1.5rem;
}

.note {
    font-size: 1.2rem;
}

.italic {
    font-style: italic;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.inner.is_l {
    max-width: 1200px;
}

.pd_l {
    padding: 130px 0;
}
.pdt_l {
    padding-top: 130px;
}

.pdb_l {
    padding-bottom: 130px;
}

.pd_m {
    padding: 80px 0;
}
.pdt_m {
    padding-top: 80px;
}

.pdb_m {
    padding-bottom: 80px;
}

.list_disc {
    list-style-type: disc;
    text-align: left;
    padding-left: 2em;
}

.btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5%;
    margin-top: 3em;
}

.btn.is_single a {
    margin: 3em auto 0;
}

.btn a {
    background: #2d3d42;
    border-radius: 100px;
    color: #fff;
    display: block;
    font-size: 1.3rem;
    text-align: center;
    padding: 14px;
    position: relative;
    width: 235px;
}

.btn a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 30px;
}

.btn.btn_02 a {
    background: #d9723a;
}

@media screen and (max-width: 1000px) {
    main {
        /* headerdΘθ */
        padding-top: 82px;
    }
    .inner,
    .inner.is_s {
        width: 94%;
    }
    .sec_ttl {
        font-size: 3rem;
    }
    .pd_l {
        padding: 100px 0;
    }
    .pdt_l {
        padding-top: 100px;
    }
    .pdb_l {
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    html {
        line-height: 1.9;
    }
    body {
        font-size: 1.2rem;
    }
    .pd_l {
        padding: 60px 0;
    }
    .pdt_l {
        padding-top: 60px;
    }
    .pdb_l {
        padding-bottom: 60px;
    }
    .pd_m {
        padding: 40px 0;
    }
    .pdt_m {
        padding-top: 40px;
    }
    .pdb_m {
        padding-bottom: 40px;
    }
    .sec_ttl {
        font-size: 1.7rem;
    }
}

.block_m,
.inline_m {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    .hide_m {
        display: none !important;
    }

    .block_m {
        display: block !important;
    }

    .inline_m {
        display: inline !important;
    }
}

.block_s,
.inline_s {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .hide_s {
        display: none !important;
    }

    .block_s {
        display: block !important;
    }

    .inline_s {
        display: inline !important;
    }
}

/* ----------------  header ---------------- */

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    height: 90px;
    z-index: 99;
}

.header .inner {
    display: flex;
    justify-content: space-between;
    padding: 0 2.5em;
    position: relative;
}

.header .logo {
    position: relative;
    margin: 15px;
    width: 266px;
    z-index: 100;
}

.header .logo img {
    display: block;
}

.header__menu {
    position: relative;
    padding: 8px 0;
}

.header__menu-nav ul {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.header__menu-nav li {
    padding: 0.8em 0 0;
    margin-left: 1.5em;
}

.header__menu-nav a {
    color: #333;
    display: block;
}

.header__tel-md {
    display: none;
}

.header__menu-nav .tel {
    background-image: linear-gradient(180deg, rgb(248, 236, 99) 0%, rgb(254, 233, 0) 50%, rgb(180, 148, 39) 100%);
    box-shadow: 2.5px 4.33px 15px 0px rgba(140, 128, 0, 0.3);
    border-radius: 0 0 5px 5px;
    font-size: 1.3rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.8em 0.6em 1.2em;
    text-align: center;
    width: 290px;
}

.header__menu-nav .tel img {
    display: block;
    margin: 4px auto 8px;
    max-width: 239px;
    width: 100%;
}

.header__menu-nav .tel__note {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 8px;
}

.header__menu-nav .tel__txt {
    background: #fff;
    border-radius: 100px;
    color: #e60012;
    font-size: 1.3rem;
    line-height: 1;
    padding: 3px 2px 5px;
    margin: 0 auto;
    max-width: 238px;
}

.header__menu-nav ul,
.nav_search {
    margin: 0 310px 0 auto;
}

.header__menu-nav ul {
    padding-top: 35px;
}

.nav_search {
    position: absolute;
    top: 10px;
    right: 360px;
    margin: 0 0 0 auto;
    max-width: 180px;
}

.nav_search .keyword {
    background: #eee;
    border: 0;
    border-radius: 3px 0 0 3px;
    outline: 0;
    font-size: 1.2rem;
    padding: 0 10px;
    width: 100%;
    height: 26px;
    vertical-align: middle;
}

.nav_search .search {
    background: #e60012;
    border-radius: 0 3px 3px 0;
    padding: 5px 7px;
    width: 30px;
    height: 26px;
    vertical-align: middle;
}

@media screen and (max-width: 1130px) {
    .header .inner {
        padding: 0;
    }
    .header .logo {
        margin: 16px 10px;
        width: 248px;
    }
    .header__menu-nav ul {
        font-size: 1.3rem;
    }
    .nav_search {
        right: 320px;
    }
}

@media screen and (max-width: 1000px) {
    .header,
    .header .inner {
        height: 84px;
    }

    .header .inner {
        padding: 0;
        width: 100%;
    }

    .header .logo {
        margin: 8px 0 0 20px;
        width: 160px;
    }

    .header__tel-md {
        background: #feec3d;
        display: block;
        font-size: 1rem;
        letter-spacing: 0;
        text-align: center;
        padding: 4px 14px;
        position: relative;
        margin: 0 50px 0 auto;
        z-index: 91;
    }

    .header__tel-md img {
        display: block;
        margin: 0 auto;
        width: 170px;
    }

    .header__menu-nav {
        display: none;
        background: #333;
        width: 100vw;
        /* height: 100vh; */
        position: fixed;
        top: 84px;
        left: 0;
        text-align: center;
    }

    .header__menu-nav.on {
        display: block;
    }

    .header__menu-nav .tel {
        display: none;
    }

    .header__menu-nav ul,
    .nav_search {
        margin: 0;
    }

    .nav_search {
        background: #333;
        position: absolute;
        top: 50px;
        right: auto;
        left: 0;
        padding: 0 40px 2px;
        max-width: none;
        width: 100%;
        height: 34px;
        z-index: 100;
    }

    .nav_search .keyword {
        font-size: 1.1rem;
    }

    .nav_search td + td {
        width: 30px;
    }

    .header__menu-nav ul {
        display: block;
        padding-top: 0;
    }

    .header__menu-nav li {
        border-top: 1px solid #666;
        margin: 0;
        padding: 0;
    }

    /* .header__menu-nav li:first-child {
    border-top: 0;
  } */

    .header__menu-nav a {
        color: #fff;
        font-size: 1.6rem;
        padding: 1em 0.8em;
    }

    .toggle_btn {
        background: #e60012;
        width: 100%;
        display: block;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 90;
    }

    .toggle_btn .bar {
        width: 25px;
        height: 2px;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        transition:
            transform 0.3s,
            opacity 0.3s;
    }

    .toggle_btn .bar_top {
        top: 15px;
    }
    .toggle_btn .bar_middle {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .toggle_btn .bar_bottom {
        bottom: 15px;
    }

    .toggle_btn.close .bar_top {
        transform: translate(-50%, 10px) rotate(45deg);
    }

    .toggle_btn.close .bar_middle {
        opacity: 0;
    }

    .toggle_btn.close .bar_bottom {
        transform: translate(-50%, -8px) rotate(-45deg);
    }
}

@media screen and (max-width: 767px) {
    .header .logo {
        margin: 10px 0 0 8px;
        width: 128px;
    }
    .header__tel-md {
        font-size: 9px;
        padding: 4px 8px;
        margin: 0 52px 0 auto;
    }
    .header__tel-md img {
        margin-top: 2px;
        width: 142px;
    }
    .nav_search {
        padding: 4px 20px 4px;
    }
    .header__menu-nav a {
        font-size: 1.4rem;
    }
    .toggle_btn {
        width: 52px;
    }
}

@media screen and (max-width: 320px) {
    .header .logo {
        margin: 16px 0 0 6px;
        width: 100px;
    }
    .header__tel-md {
        letter-spacing: -0.04em;
        padding: 6px 4px;
    }
    .header__tel-md img {
        width: 136px;
    }
}

/* ----------------  mv ---------------- */

.mv__item {
    position: relative;
}

.mv__item a {
    display: block;
}

.mv__item a:hover {
    opacity: 0.8;
}

.mv__slider img {
    width: 100%;
}

.mv__slider .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    width: 35px;
}

.mv__slider .next-arrow {
    right: 30px;
    z-index: 1;
}

.mv__slider .prev-arrow {
    left: 30px;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .mv__slider .slide-arrow {
        width: 30px;
    }
    .mv__slider .next-arrow {
        right: 4px;
    }
    .mv__slider .prev-arrow {
        left: 4px;
    }
}

/* ---------------- top-menu ---------------- */

.top-menu {
    background: #fff;
}

.top-menu__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.top-menu__list li {
    position: relative;
    width: 20%;
}

.top-menu__list li::before {
    content: '';
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
}

.top-menu__list li:last-child:before {
    content: none;
}

.top-menu__list a {
    display: block;
    text-align: center;
    padding: 14px;
}

.top-menu__list .current a {
    color: #e60012;
    position: relative;
}

.top-menu__list .current a::before {
    content: '';
    background: #e60012;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 6px;
}

@media screen and (max-width: 1000px) {
    .top-menu__list {
        padding: 0;
    }

    .top-menu__list a {
        font-size: 1.4rem;
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .top-menu__list {
        flex-wrap: wrap;
        padding: 0;
        margin-right: -1px;
        margin-top: -1px;
        margin-bottom: -1px;
    }
    .top-menu__list li {
        border-right: 1px solid #9f9f9f;
        border-bottom: 1px solid #9f9f9f;
        width: 33.33%;
    }
    .top-menu__list li:nth-child(4),
    .top-menu__list li:nth-child(5) {
        width: 50%;
    }
    .top-menu__list li::before {
        content: none;
    }
    .top-menu__list a {
        font-size: 1.2rem;
    }
    .top-menu__list .current a {
        background: #e60012;
        color: #fff;
    }
}

/* ---------------- before-after ---------------- */

.before-after {
    background: url(../images/bg_before-after.jpg) no-repeat center/cover;
    padding: 100px 0 60px;
}

.ba__slider .slick-dots {
    bottom: -45px;
}

.ba__slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 8px;
}

.slick-dots li button,
.slick-dots li button:before {
    width: 12px;
    height: 12px;
}

.ba__slider .slick-dots li button:before {
    color: #5d5d5d;
    font-size: 12px;
    opacity: 1;
}

.ba__slider .slick-dots li.slick-active button:before {
    color: #fee900;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .before-after {
        background: url(../images/bg_before-after_s.jpg) no-repeat center/cover;
        padding: 50px 0 40px;
    }
    .ba__slider .slick-dots {
        bottom: -38px;
    }
}

/* ---------------- video ---------------- */

.video {
    background: url(../images/bg_video_2.jpg) no-repeat center/cover;
}

.video__ttl {
    text-align: center;
    margin-bottom: 1.6em;
}

.video__ttl > span {
    display: inline-block;
    position: relative;
    color: #0a245a;
    font-size: 3.6rem;
    font-weight: 700;
}

.video__ttl > span::before {
    content: '';
    background: url(../images/icon_video_01.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2em;
    width: 53px;
    height: 26px;
}

.video__ttl > span::after {
    content: '';
    background: url(../images/icon_video_02.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2em;
    width: 53px;
    height: 26px;
}

.video__ttl .marker {
    background: linear-gradient(transparent 56%, #fee900 56%);
    display: inline-block;
    font-size: 105.6%;
    line-height: 1.2;
    padding: 0 5px;
}

.video__box {
    aspect-ratio: 16 / 9;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 830px;
}
.video__box iframe {
    border-radius: 8px;
    border: 2px solid #333;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1000px) {
    .video__ttl > span {
        font-size: 3.2rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .video {
        background-position-x: 85%;
    }
    .video__ttl {
        margin-bottom: 1em;
    }
    .video__ttl > span {
        font-size: 1.8rem;
    }
    .video__ttl > span::before {
        left: -1.7em;
    }
    .video__ttl > span::after {
        right: -1.7em;
    }
    .video__ttl > span::before,
    .video__ttl > span::after {
        width: 30px;
        height: 14px;
    }
}

/* ---------------- set ---------------- */

.set__ttl {
    background: #333;
    color: #fff;
    font-size: 3.8rem;
    line-height: 1.5;
    text-align: center;
    padding: 0.3em;
    margin-bottom: 2.2em;
}

.set__box {
    margin-bottom: 120px;
}
.set__box.is_01 .set__box-ttl {
    max-width: 770px;
}

.set__box.is_02 .set__box-ttl {
    max-width: 972px;
}

.set__box-ttl {
    margin: 0 auto 2.6em;
}

.set__box-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.set__box.is_01 .set__box-slider {
    gap: 7%;
}

.set__box.is_02 .set__box-slider {
    gap: 12%;
}

.set__box-slider .set__item {
    text-align: center;
}

.set__item-balloon {
    margin: 0 auto;
    max-width: 276px;
    width: 100%;
}

.set__item-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 4px auto 12px;
}

.set__item-ttl > span {
    display: block;
    font-size: 56%;
    font-weight: 700;
    line-height: 1.3;
}

.set__box.is_02 .set__item-ttl {
    min-height: 2.4em;
}

.set__item-pic {
    display: block;
    margin: 0 auto 28px;
    max-width: 260px;
    width: 100%;
}

.item-btn {
    background: #e60012;
    border-radius: 100px;
    color: #fff;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 88.9%;
    text-align: center;
    padding: 8px;
    position: relative;
    margin: 0 auto;
    max-width: 196px;
}

.item-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 20px;
}

@media screen and (max-width: 1000px) {
    .set__ttl {
        font-size: 3.4rem;
    }

    .set__box.is_01 .set__box-ttl {
        max-width: 560px;
    }
    .set__box.is_02 .set__box-ttl {
        max-width: 600px;
    }
    .set__item-ttl {
        font-size: 2.2rem;
    }
    .set__box.is_01 .set__box-slider,
    .set__box.is_02 .set__box-slider {
        gap: 5%;
    }
    .set__box-slider .set__item {
        width: 30%;
    }
}

@media screen and (max-width: 767px) {
    .set .inner {
        width: 100%;
    }
    .set__ttl {
        font-size: 1.8rem;
        padding: 0.4em 0.2em;
        margin-bottom: 2.5em;
    }
    .set__box {
        margin-bottom: 80px;
    }
    .set__box-ttl {
        margin-bottom: 1.5em;
    }
    .set__box .set__box-ttl img {
        margin: 0 auto;
        width: auto;
        height: 45px;
    }
    .set__box-slider .set__item {
        height: auto;
        transform: scale(0.8);
        transition: transform 0.5s;
        margin: 0 8px;
    }
    .set__item-pic {
        max-width: none;
    }
    .set__box-slider .set__item.slick-center {
        transform: scale(1);
    }
}

/* ---------------- bnr ---------------- */

.bnr {
    padding: 80px 0 40px;
}

.bnr__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.bnr__list li {
    margin-bottom: 30px;
    width: 48.5%;
}

.bnr__list li.item_l {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .bnr__list img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .bnr {
        padding: 40px 0 0;
    }
    .bnr__list li {
        margin-bottom: 20px;
        width: 100%;
    }
}

/* ---------------- best3 ---------------- */

.best3__ttl > img {
    display: block;
    margin: 0 auto 1em;
    max-width: 494px;
    width: 100%;
}

.best3__list {
    display: flex;
    justify-content: space-between;
}

.best3__list li {
    border: 5px solid;
    position: relative;
    text-align: center;
    padding: 60px 4px 34px;
    margin-top: 50px;
    width: 31.2%;
}

.best3__list li:nth-child(1) {
    -o-border-image: linear-gradient(to bottom, #fee59a, #c99b11) 1;
    border-image: linear-gradient(to bottom, #fee59a, #c99b11) 1;
}

.best3__list li:nth-child(2) {
    -o-border-image: linear-gradient(to bottom, #efefef, #8a8a8a) 1;
    border-image: linear-gradient(to bottom, #efefef, #8a8a8a) 1;
}

.best3__list li:nth-child(3) {
    -o-border-image: linear-gradient(to bottom, #fddec2, #cc7f4b) 1;
    border-image: linear-gradient(to bottom, #fddec2, #cc7f4b) 1;
}

.best3__list .num {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 106px;
}

.best3__list .ttl_01 {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 0.4em;
    min-height: 4.8em;
}
.best3__list .ttl_01 > strong {
    font-size: 133.3%;
    font-weight: 700;
    line-height: 1.3;
}

.best3__list .pic {
    max-width: 288px;
    width: 100%;
}

.best3__list .ttl_02 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.best3__list .ttl_02 > span {
    display: block;
    font-size: 80%;
    font-weight: normal;
}

@media screen and (max-width: 1000px) {
    .best3__list li {
        padding: 50px 2px 28px;
        width: 32.6%;
    }
    .best3__list .ttl_01 {
        font-size: 1.4rem;
        letter-spacing: 0;
    }
    .best3__list .num {
        top: -48px;
        width: 90px;
    }
}

@media screen and (max-width: 767px) {
    .best3__ttl > img {
        margin-bottom: 0.5em;
        max-width: 300px;
    }
    .best3__list {
        flex-direction: column;
    }
    .best3__list li {
        margin: 0 0 20px;
        padding: 0 0 16px;
        width: 100%;
    }
    .best3__list .num {
        position: absolute;
        top: 12px;
        left: 12px;
        transform: none;
        width: 50px;
    }
    .best3__list .ttl_01 {
        font-size: 1.6rem;
        line-height: 1.4;
        background: #333;
        color: #fff;
        text-align: left;
        padding: 12px 8px 12px 80px;
    }
    .best3__list .pic {
        margin: 8px auto;
        max-width: 90%;
    }
    .best3__list .ttl_02 {
        font-size: 1.8rem;
        margin-bottom: 0.2em;
    }
    .best3__list .ttl_02 > span {
        display: inline-block;
    }
}

/* ---------------- motor ---------------- */

.motor__ttl {
    background: #000;
    color: #fff;
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    padding: 0.8em;
}

.motor__ttl > span {
    font-size: 75%;
    font-weight: normal;
}

.motor__ttl > strong {
    background: linear-gradient(transparent 65%, #e60012 65%);
    display: inline-block;
    font-size: 115%;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 5px;
}

.motor__box {
    position: relative;
    padding-top: calc((670 / 1440) * 100%);
    height: 0;
    overflow: hidden;
}

.motor__box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 54.8vw;
    z-index: 1;
}

.motor__box video {
    position: absolute;
    top: 0;
    right: 0;
    height: 101%;
    width: auto;
}

.main_btn {
    background: #fee900;
    border-radius: 100px;
    box-shadow: 0px 0px 19px 1px rgba(56, 56, 56, 0.8);
    color: #000;
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 4px;
    position: relative;
    width: 500px;
}

.main_btn > span {
    border: 3px solid #000;
    border-radius: 100px;
    display: block;
    padding: 1em;
    position: relative;
}

.main_btn > span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px #2f3036;
    border-right: solid 3px #2f3036;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 1.5em;
}

.motor__box .main_btn {
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    .motor__ttl {
        font-size: 3.6rem;
        padding-bottom: 1em;
    }
    .motor__box {
        padding-top: 0;
        height: auto;
    }
    .motor__box img {
        position: static;
        width: 100%;
    }
    .motor__box video {
        position: static;
        margin-bottom: -2vw;
        height: auto;
        width: 100%;
    }
    .main_btn {
        font-size: 2rem;
        width: 460px;
    }
    .motor__box .main_btn {
        bottom: 8vw;
    }
}

@media screen and (max-width: 767px) {
    .motor__ttl {
        font-size: 2rem;
    }
    .motor__box video {
        position: relative;
        left: -80vw;
        margin-bottom: -4vw;
        width: 200vw;
    }
    .motor__box .main_btn {
        bottom: 2.8em;
    }
    .main_btn {
        font-size: 1.2rem;
        width: 280px;
    }
    .main_btn > span {
        border: 2px solid #000;
    }
    .main_btn > span::before {
        width: 6px;
        height: 6px;
        border-top: solid 2px #2f3036;
        border-right: solid 2px #2f3036;
    }
}

/* ---------------- teach ---------------- */

.teach__ttl {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2em;
}

.teach__ttl > strong {
    display: inline-block;
    font-size: 160%;
    line-height: 1.3;
    position: relative;
}

.teach__ttl > strong::before {
    content: '';
    background: url(../images/icon_teach.png) no-repeat center/cover;
    position: absolute;
    top: 1px;
    left: -74px;
    width: 60px;
    height: 60px;
}

.teach__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.teach__list li {
    margin-bottom: 1.6em;
    max-width: 480px;
    width: 48%;
}

@media screen and (max-width: 1000px) {
    .teach__ttl {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 767px) {
    .teach__ttl {
        font-size: 1.4rem;
    }
    .teach__ttl > strong::before {
        top: -1px;
        left: -40px;
        width: 34px;
        height: 34px;
    }
    .teach__list {
        flex-direction: column;
    }
    .teach__list li {
        margin-bottom: 12px;
        width: 100%;
    }
}

/* ---------------- voice ---------------- */

.voice {
    padding: 40px 0 100px;
}

.voice__ttl {
    text-align: center;
    margin-bottom: 1.6em;
}

.voice__ttl span {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    padding-left: 0.6em;
}

.voice__ttl span::before {
    content: '';
    background: url(../images/icon_voice.png) no-repeat center/cover;
    position: absolute;
    top: 0.2em;
    left: -2.2em;
    width: 104px;
    height: 50px;
}

.voice__slider .slick-list {
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1040px;
}

.voice__slider-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 18px 0px rgba(157, 157, 157, 0.3);
    letter-spacing: 0.02em;
    padding: 1.4em;
    margin: 0 20px;
    min-height: 21em;
}

.voice__slider .star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.voice__slider .star .icon {
    display: block;
    position: relative;
    width: 17px;
    height: 17px;
}

.voice__slider .star .icon::before {
    content: '';
    background: url(../images/icon_star.png) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
}

.voice__slider .buyer {
    font-size: 77.8%;
    margin-bottom: 0.4em;
}

.voice__slider .ttl {
    font-size: 88.9%;
    line-height: 1.4;
    margin-bottom: 0.6em;
}

.voice__slider .txt {
    font-size: 72.2%;
    font-weight: 400;
    line-height: 1.6;
}

.voice__slider .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
}

.voice__slider .next-arrow {
    right: 0;
    z-index: 1;
}

.voice__slider .prev-arrow {
    left: 0;
    z-index: 1;
}

@media screen and (max-width: 1000px) {
    .voice__ttl span {
        font-size: 3.6rem;
        padding-left: 1em;
    }
    .voice__slider .slick-list {
        overflow: visible;
    }
    .voice__slider-item {
        margin: 0 34px;
        min-height: 17em;
    }
    .voice__slider .prev-arrow {
        left: 36px;
    }
    .voice__slider .next-arrow {
        right: 36px;
    }
}

@media screen and (max-width: 767px) {
    .voice {
        padding: 0 0 60px;
    }
    .voice__ttl span {
        font-size: 2rem;
        padding-left: 1.4em;
    }
    .voice__ttl span::before {
        top: 0.1em;
        left: -1.8em;
        width: 56px;
        height: 27px;
    }
    .voice__slider .buyer {
        font-size: 1.1rem;
    }
    .voice__slider .ttl {
        font-size: 1.2rem;
    }
    .voice__slider .txt {
        font-size: 1rem;
    }
    .voice__slider .star {
        gap: 4px;
    }
    .voice__slider .star .icon,
    .voice__slider .star .icon::before {
        width: 14px;
        height: 14px;
    }
    .voice__slider-item {
        letter-spacing: 0;
        padding: 1.4em;
        margin: 0 16px;
        min-height: 25em;
    }
    .voice__slider .slide-arrow {
        width: 12px;
    }
    .voice__slider .prev-arrow {
        left: 43px;
    }
    .voice__slider .next-arrow {
        right: 43px;
    }
}

/* ---------------- trouble ---------------- */

.trouble {
    background: url(../images/bg_trouble.jpg) no-repeat center/cover;
}

.trouble .sec_ttl {
    color: #fff;
    margin-bottom: 1em;
}

.trouble__lead {
    color: #fff;
}

.trouble__list {
    display: flex;
    justify-content: space-between;
    gap: 4%;
    margin-top: 50px;
}

.trouble__list li {
    text-align: center;
    width: 29%;
}

.trouble__list a {
    background: #fff;
    border: 2px solid #333;
    box-shadow: 10px 10px #706a24;
    display: block;
    padding: 2em 1em;
    position: relative;
    height: 100%;
}

.trouble__list a::before {
    content: '';
    background-image: linear-gradient(-45deg, #fee900 40px, transparent 0);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
}

.trouble__list a::after {
    content: '';
    background: url(../images/icon_trouble_arrow.png) no-repeat center/cover;
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 31px;
    height: 24px;
}

.trouble__list-icon.is_1,
.trouble__list-icon.is_2 {
    width: 52px;
}

.trouble__list-icon.is_3 {
    margin: 10px 0 4px;
    width: 57px;
}

.trouble__list-txt {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 0.4em;
}

@media screen and (max-width: 1000px) {
    .trouble__list li {
        width: 31%;
    }
    .trouble__list a {
        padding: 1.4em 1em 2.2em;
    }
    .trouble__list-txt {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .trouble {
        background: url(../images/bg_trouble_s.jpg) no-repeat center/cover;
    }
    .trouble__list {
        flex-direction: column;
        margin-top: 30px;
    }
    .trouble__list li {
        margin-bottom: 24px;
        width: 97.5%;
    }
    .trouble__list a {
        box-shadow: 8px 8px #706a24;
        padding: 1.2em 1em 2em;
    }
    .trouble__list-txt {
        font-size: 1.8rem;
    }
    .trouble__list-icon {
        position: absolute;
        left: 2em;
        top: 50%;
        transform: translateY(-50%);
    }
    .trouble__list-icon.is_1,
    .trouble__list-icon.is_2 {
        width: 36px;
    }
    .trouble__list-icon.is_3 {
        margin: 0;
        width: 38px;
    }
    .trouble__list a::after {
        width: 26px;
        height: 20px;
    }
}

/* ---------------- category ---------------- */

.category__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category__list li {
    margin-bottom: 1em;
    width: 48.6%;
}

.category__list li > a,
.category__list .btn__tooltip {
    background: #fff;
    border: 2px solid #cecece;
    border-radius: 5px;
    box-shadow: 0.684px 1.879px 10px 0px rgba(56, 56, 56, 0.1);
    display: flex;
    align-items: center;
    padding: 0.2em 1em;
    position: relative;
    width: 100%;
}

.category__list li > a::before,
.category__list .btn__tooltip::before {
    content: '';
    background: url(../images/icon_category_arrow.png) no-repeat center/cover;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
}

.category__list .btn__tooltip {
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    position: relative;
    z-index: 1;
}

.category__list .btn__tooltip:hover .btn__tooltip-txt {
    opacity: 1;
    visibility: visible;
}

.category__list .btn__tooltip-txt {
    background: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    padding: 12px 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -56px;
    font-size: 1.2rem;
    line-height: 1.3;
    opacity: 0;
    text-align: left;
    transition: 0.3s ease-in;
    visibility: hidden;
    white-space: nowrap;
}

.category__list .btn__tooltip-txt:before {
    border: 10px solid transparent;
    border-bottom: 10px solid #333;
    content: '';
    position: absolute;
    top: -17px;
    left: 50%;
    margin-left: -10px;
}

.category__list .btn__tooltip-txt a {
    display: inline-block;
    padding: 2px 0;
}

.category__list .pic {
    max-width: 92px;
}

.category__list .txt {
    display: block;
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    width: 65%;
}

@media screen and (max-width: 1000px) {
    .category__list li > a,
    .category__list .btn__tooltip {
        padding: 0.4em 0.6em;
    }
    .category__list .pic {
        max-width: 66px;
    }
    .category__list .txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .category__list {
        flex-direction: column;
    }
    .category__list li {
        margin-bottom: 14px;
        width: 100%;
    }
    .category__list .txt {
        font-size: 1.4rem;
    }
    .category__list li > a::before,
    .category__list .btn__tooltip::before {
        width: 16px;
        height: 16px;
    }
}

/* ---------------- manufacturer ---------------- */

.manufacturer {
    background: #e1e1e1;
}

.manufacturer__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2.6%;
}

.manufacturer__list li {
    margin-bottom: 1.4em;
    width: 31.6%;
}

.manufacturer__list a {
    background: #fff;
    border: 1px solid #919191;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 2.2em 1.6em;
    height: 100%;
}

.manufacturer__list-txt {
    font-size: 72.2%;
    font-weight: 400;
    text-align: left;
    margin-top: 4px;
}

.manufacturer__list-logo {
    max-width: 233px;
}

.manufacturer__list li.is_l {
    width: 100%;
}

.manufacturer__list li.is_l a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.8em 1.6em;
}

.manufacturer__list li.is_l .manufacturer__list-txt {
    font-size: 83.3%;
    margin-top: 20px;
}

.manufacturer__list li.is_l .manufacturer__list-logo {
    max-width: 297px;
}

@media screen and (max-width: 1000px) {
    .manufacturer__list li {
        width: 48.6%;
    }
}

@media screen and (max-width: 767px) {
    .manufacturer__list li {
        margin-bottom: 10px;
    }
    .manufacturer__list a {
        padding: 1.6em;
    }
    .manufacturer__list-logo {
        max-width: 120px;
        width: 100%;
    }
    .manufacturer__list li.is_l a {
        padding: 2em 1.6em;
    }
    .manufacturer__list li.is_l .manufacturer__list-logo {
        max-width: 160px;
    }
    .manufacturer__list li.is_l .manufacturer__list-txt {
        margin-top: 10px;
    }
}

/* ---------------- footer ---------------- */

#page_top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
}

#page_top a {
    display: block;
    transition: all 0.3s ease;
    width: 80px;
}

#page_top a:hover {
    opacity: 0.6;
}

.footer__lead {
    background: #fee900;
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.6em;
    text-align: center;
}

.footer__middle {
    padding: 1em 0 0.4em;
}

.footer__middle-col {
    display: flex;
    align-items: center;
    gap: 8%;
}

.footer__middle-logo {
    max-width: 360px;
    width: 36%;
}

.footer__middle-contact {
    width: 630px;
}

.footer__middle-contact .contact__ttl {
    background: #e60012;
    border-radius: 3px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    padding: 2px;
}

.footer__middle-contact .tel {
    display: block;
    margin: 0 auto 6px;
    width: 260px;
}

.footer__middle-contact .note {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
}

.footer__middle .contact__col {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.footer__middle .contact__col li:first-child {
    border-right: 1px solid #333;
    width: 50%;
}

.footer__middle .contact__col li:last-child {
    padding-left: 1.2em;
    width: 50%;
}

.contact__col-txt {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 4px;
}

.contact__col-btn {
    background: #fee900;
    border: 1px solid #0d3669;
    border-radius: 5px;
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0;
    text-align: center;
    padding: 6px 22px 6px 10px;
    position: relative;
    margin: 0 0 0 auto;
}

.contact__col-btn::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 2px #2f3036;
    border-right: solid 2px #2f3036;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 16px;
}

.footer__bottom {
    background: #333;
    color: #fff;
    padding: 2.6em 1.5em 1.6em;
}

.footer__bottom a:hover {
    opacity: 0.5;
}

.footer__bottom-main {
    display: flex;
    justify-content: space-between;
    gap: 4%;
}

.footer__menu .sns img {
    width: 34px;
}

.footer__bottom-main .menu_ttl {
    font-size: 1.6rem;
    margin-bottom: 1em;
}

.footer__menu li > a {
    color: #fff;
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0.8em 0;
}

.footer__menu.menu_l a {
    color: #fff;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 0.8em;
    vertical-align: middle;
}

.footer__menu.menu_l .menu_ttl {
    margin-bottom: 0;
}

.footer__menu.menu_l .sns .menu_ttl {
    margin-bottom: 1em;
}

.footer__menu.menu_l li {
    padding-left: 1em;
}

.footer__menu.menu_l .arrow {
    position: relative;
}

.footer__menu.menu_l .arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 40%;
    transform: rotate(45deg);
    right: -1em;
}

.footer__menu.menu_l .last .arrow::before {
    top: 68%;
}

.footer__menu.menu_l .sns {
    margin-bottom: 10px;
}

.footer__menu.menu_l .sns a {
    display: inline-block;
    margin-right: 1em;
}

.footer__bottom-sub {
    display: flex;
    align-items: center;
    margin-top: 2.6em;
}

.footer__bottom-sub li {
    border-left: 1px solid #fff;
    padding: 0 1em;
}

.footer__bottom-sub li:first-child {
    border-left: 0;
    padding-left: 0;
}

.footer__bottom-sub a {
    color: #fff;
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
}

.copyright {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 1.8em;
}

/* AR[fBI sub */
.accordion__sub {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer;
}

.accordion__sub_ttl {
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    position: relative;
    margin: 0;
    color: #fff;
    cursor: pointer;
}

.accordion__sub_content {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer;
}

.accordion__sub_ttl:after {
    content: '';
    position: absolute;
    right: 1em;
    top: 40%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 5px;
    height: 5px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(135deg);
}
.accordion__sub_ttl.open:after {
    transform: rotate(-45deg);
    top: 45%;
}
.accordion__sub_content {
    display: none;
    padding-left: 0.8em;
    margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
    #page_top {
        bottom: 10px;
        right: 20px;
    }
    #page_top a {
        width: 60px;
    }
    .footer__lead {
        font-size: 1.8rem;
    }
    .footer__middle-col {
        flex-direction: column;
    }
    .footer__middle-logo {
        margin-bottom: 10px;
    }
    .footer__middle-contact .tel {
        margin: 0 auto;
        width: 278px;
    }
    .footer__bottom-sub {
        flex-wrap: wrap;
        justify-content: center;
        margin: 3em auto 0;
        max-width: 420px;
    }
    .footer__bottom-sub li {
        margin: 0.5em 0;
    }
    .footer__bottom-sub li:nth-child(4) {
        border: 0;
    }
    .footer__bottom-sub a {
        font-size: 1.2rem;
    }
    .footer__bottom-main {
        flex-direction: column;
    }
    .footer__menu.menu_l a {
        display: block;
    }
    .footer__bottom {
        padding: 1em 0 4.5em;
    }
    .footer__bottom-main .menu_ttl {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    .footer__menu li > a {
        font-size: 1.1rem;
        margin: 1.2em 0;
    }
    .footer__menu.menu_l li {
        padding-left: 0;
    }
    .footer__menu.menu_l a {
        border-bottom: 1px solid #7d7d7d;
        font-size: 1.3rem;
        line-height: 1.8;
        padding: 1em 0.6em 0.8em 1em;
        margin: 0;
    }
    .footer__menu.menu_l .arrow::before {
        width: 7px;
        height: 7px;
        right: 1em;
    }
    .footer__menu.menu_l .sns {
        border-bottom: 1px solid #7d7d7d;
        margin-bottom: 0;
        padding: 0.8em 0.6em 0.4em 1em;
    }
    .footer__menu.menu_l .sns .menu_ttl {
        margin-bottom: 0em;
    }
    .footer__menu.menu_l .sns a {
        border-bottom: 0;
        margin-right: 0;
        padding: 0.6em 0.8em 0.6em 0em;
    }
    .footer__menu.menu_l .last .arrow::before {
        top: 46%;
    }
    .copyright {
        font-size: 9px;
        text-align: center;
    }
    /* AR[fBIj[ */
    .accordion_container {
        position: relative;
        width: 100%;
        border-top: none;
        outline: 0;
        cursor: pointer;
    }
    .accordion_ttl {
        border-bottom: 1px solid #7d7d7d;
        display: block;
        position: relative;
        margin: 0;
        padding: 1em 0.6em 0.8em 1em;
        font-size: 1.2em;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
    }
    .accordion_ttl:after {
        content: '';
        position: absolute;
        right: 1em;
        top: 40%;
        transition: all 0.2s ease-in-out;
        display: block;
        width: 7px;
        height: 7px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(135deg);
    }
    .accordion_ttl.open:after {
        transform: rotate(-45deg);
        top: 45%;
    }
    .accordion_content {
        display: none;
        padding-left: 1.4em;
        margin-bottom: 1.6em;
    }
    .accordion__sub {
        padding-right: 0.4em;
    }
    .accordion__sub_ttl {
        font-size: 1.1rem;
        padding: 0 0 5px 0;
    }
    .accordion__sub_content {
        margin-bottom: 2em;
    }
}

@media screen and (max-width: 767px) {
    #page_top a {
        width: 40px;
    }
    .footer__lead {
        font-size: 1.2rem;
        letter-spacing: 0;
        padding: 0.8em 0.4em;
    }
    .footer__middle-contact {
        width: 100%;
    }
    .footer__middle-logo {
        width: 160px;
    }
    .footer__middle-contact .contact__ttl {
        font-size: 1.2rem;
    }
    .footer__middle .contact__col li:last-child {
        padding-left: 0.6em;
    }
    .contact__col-txt {
        font-size: 1rem;
        letter-spacing: 0;
        margin-bottom: 2px;
    }
    .footer__middle {
        padding: 18px 0 10px;
    }
    .footer__middle-contact .tel {
        display: block;
        margin: 6px auto 0;
        max-width: 164px;
        width: 100%;
    }
    .contact__col-btn {
        font-size: 1rem;
        padding: 4px 10px 6px 2px;
    }
    .contact__col-btn::before {
        width: 4px;
        height: 4px;
        border-top: solid 1px #2f3036;
        border-right: solid 1px #2f3036;
        right: 8px;
    }
    .footer__bottom-sub li {
        padding: 0 0.6em;
    }
    .footer__bottom-sub a {
        font-size: 1rem;
        letter-spacing: 0;
    }
}
/* pay */
.pay {
    background: url(../images/bg_pay.jpg) no-repeat center/cover;
    /* padding: 54px 0 40px; */
    padding: 64px 0;
}
.pay__ttl {
    padding: 0 1%;
    text-align: center;
}
.pay__item {
    background: #fff;
    border: 2px solid #f7de5e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    padding: 1.6em;
    margin: 1.6em auto 1em;
    max-width: 600px;
    width: 100%;
}
.pay__item img {
    display: block;
    width: auto;
    height: 44px;
}
.pay__txt {
    font-size: 1.4rem;
    letter-spacing: 0;
    text-align: center;
}
.pay__text02 {
    font-size: 26px;
    font-weight: 700;
    line-height: 2.2;
    text-align: center;
}
.pay__text02 .amazon_pay {
    display: inline-block;
    background: #fff;
    border-radius: 14px;
    border: 3px solid #ff9900;
    padding: 0.5em 1em 0.45em;
    line-height: 1;
    margin-right: 0.4em;
    max-width: 224px;
    width: 100%;
    vertical-align: 6%;
}
@media screen and (max-width: 767px) {
    .pay {
        /* padding: 26px 0 20px; */
        padding: 30px 0;
    }
    .pay__item {
        padding: 2.4em 1em;
        max-width: 290px;
    }
    .pay__item img {
        height: 25px;
    }
    .pay__txt {
        font-size: 1rem;
    }
    .pay__text02 {
        font-size: 15px;
        line-height: 2;
    }
    .pay__text02 .amazon_pay {
        border-radius: 8px;
        border-width: 2px;
        padding: 0.3em 0.8em 0.25em;
        max-width: 116px;
        vertical-align: 10%;
    }
}

.layout_body,
#header,
#header + center,
#gNavi,
#pagePath,
.layout_footer,
#footer,
#FS2_layout_body,
.FS2_Figure.FS2_contents_container,
.FS2_Figure.FS2_contents_container + .FS2_contents_container,
#FS2_footer {
    display: none !important;
}
#FS2_ItemDetail {
    max-width: none !important;
}

.rn-cart-cnt-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
}
.rn-cart-cnt-wrap:before {
    display: none;
}
.product-cv__cart_quantity button {
    top: auto !important;
}

a#decrement-btn,
a#increment-btn {
    background: #fff;
    border: 1px solid #333;
    align-items: center;
    display: flex;
    font-size: 1.8rem;
    justify-content: center;
    position: relative;
    width: 25px;
    height: 25px;
}
a#decrement-btn + .rn-cart-cnt {
    padding-right: 20px !important;
    padding-left: 20px !important;
    text-align: center !important;
    width: auto !important;
}

a#decrement-btn + .rn-cart-cnt option {
    text-align: center !important;
}

/* ---------- HKN-2090RecΗΑ ---------- */
.top_hkn2090 {
    background: linear-gradient(142deg, rgba(0, 51, 204, 1) 0%, rgba(0, 220, 255, 1) 70%, rgba(255, 255, 255, 1) 100%);
    padding: 80px 0 100px;
}
.top_hkn2090 .main_ttl {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    margin-bottom: 1em;
}
.top_hkn2090 .main_ttl > span,
.top_hkn2090 .main_ttl > strong {
    font-size: 145%;
    font-style: italic;
}
.top_hkn2090 .main_ttl > strong {
    font-weight: 700;
}

.top_hkn2090 .hkn2090_point {
    position: relative;
}
.top_hkn2090 .hkn2090_point .name {
    background: #000;
    display: block;
    color: #fff;
    font-size: 2.4rem;
    padding: 0.6em 2em;
    position: relative;
    left: 6%;
    max-width: 350px;
    z-index: 1;
}
.top_hkn2090 .hkn2090_point .name > strong {
    display: block;
    font-size: 200%;
    font-weight: 400;
    line-height: 1;
}
.top_hkn2090 .hkn2090_point .main_pic {
    display: block;
    position: relative;
    left: 13%;
    max-width: 203px;
    width: 100%;
    z-index: 1;
}
.top_hkn2090 .hkn2090_point .point_box {
    background: rgb(255 255 255 / 60%);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
    display: inline-block;
    padding: 1.8em 2em 1.8em 4.6em;
    position: absolute;
    top: 90px;
    left: 28%;
    max-width: 880px;
    width: 100%;
}
.top_hkn2090 .hkn2090_point .point_list li {
    font-size: 3.4rem;
    font-style: italic;
    padding: 0.4em 0;
    position: relative;
}
.top_hkn2090 .hkn2090_point .point_list li:nth-of-type(2) {
    left: 0.7em;
}
.top_hkn2090 .hkn2090_point .point_list li:nth-of-type(3) {
    left: 1.4em;
}
.top_hkn2090 .hkn2090_point .point_list li:nth-of-type(4) {
    left: 2.1em;
}
@media screen and (max-width: 1120px) {
    .top_hkn2090 .main_ttl {
        font-size: 3vw;
    }
    .top_hkn2090 .hkn2090_point {
        margin: 0 auto;
        max-width: 768px;
    }
    .top_hkn2090 .hkn2090_point .name {
        font-size: 1.8rem;
        left: 0;
        max-width: 260px;
    }
    .top_hkn2090 .hkn2090_point .main_pic {
        left: 5%;
        max-width: 140px;
    }
    .top_hkn2090 .hkn2090_point .point_box {
        padding-left: 3.4em;
        top: 60px;
        left: 23%;
        max-width: 650px;
    }
    .top_hkn2090 .hkn2090_point .point_list li {
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 767px) {
    .top_hkn2090 {
        padding: 40px 0 60px;
    }
    .top_hkn2090 .main_ttl {
        font-size: 1.6rem;
    }
    .top_hkn2090 .hkn2090_point .name {
        font-size: 1.4rem;
        max-width: 200px;
        position: static;
        margin: 0 auto;
        text-align: center;
        padding: 0.4em 1em;
    }
    .top_hkn2090 .hkn2090_point .main_pic {
        max-width: 100px;
        position: static;
        margin: 10px auto 20px;
    }
    .top_hkn2090 .hkn2090_point .point_box {
        position: static;
        padding: 1.6em 1em;
        width: 118vw;
        margin: 0 calc(50% - 58vw);
    }
    .top_hkn2090 .hkn2090_point .point_list li {
        font-size: 1.6rem;
        padding: 0.1em 0;
        text-align: center;
    }
    .top_hkn2090 .hkn2090_point .point_list li:nth-of-type(2),
    .top_hkn2090 .hkn2090_point .point_list li:nth-of-type(3),
    .top_hkn2090 .hkn2090_point .point_list li:nth-of-type(4) {
        left: 0;
    }
}

.set__box.is_hkn2090 {
    margin-top: 60px;
    margin-bottom: 0;
}
.set__box.is_hkn2090 .set__box-slider {
    gap: 5%;
}
.set__box.is_hkn2090 .set__item-ttl {
    flex-direction: unset;
}
.set__box.is_hkn2090 .set__item-ttl > span {
    display: inline;
    font-size: 72%;
}
@media screen and (max-width: 767px) {
    .set__box.is_hkn2090 {
        margin-top: 45px;
    }
}

/* TOP hkn2090 */
.top_hkn2090 .top_box {
    background: rgb(255 255 255 / 85%) url(../images/img_dots.png) repeat center / 1%;
    border: 4px solid #fee900;
    border-radius: 20px;
    padding: 0 4.6em 3em;
    margin: 1em auto 5em;
    width: 98%;
}
.top_hkn2090 .top_box .col_01 {
    display: flex;
    align-items: flex-end;
    margin-top: -3em;
}
.top_hkn2090 .top_box__ttl {
    width: 72%;
}
.top_hkn2090 .top_box__ttl .marker {
    display: inline-block;
    position: relative;
}
.top_hkn2090 .top_box__ttl .marker > span {
    font-size: 3.4rem;
    font-style: italic;
    display: block;
    position: relative;
    white-space: nowrap;
}
.top_hkn2090 .top_box__ttl .marker::before {
    content: '';
    background: #fbf91a;
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 20px;
}
.top_hkn2090 .top_box__ttl .marker strong {
    font-size: 140%;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
}
.top_hkn2090 .top_box__ttl .marker strong > strong {
    font-size: 135%;
    font-style: italic;
}
.top_hkn2090 .top_box__pic {
    display: flex;
    align-items: flex-end;
    gap: 2%;
    margin-left: -3em;
    width: 360px;
}
.top_hkn2090 .top_box__pic .txt {
    font-size: 3.2rem;
    line-height: 1.4;
    white-space: nowrap;
}
.top_hkn2090 .top_box__pic .txt > span {
    display: block;
    font-size: 62%;
}
.top_hkn2090 .top_box__pic img {
    width: 166px;
}
.top_hkn2090 .top_box .col_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    margin: 3em 0 0;
}
.top_hkn2090 .top_box .col_02 li {
    text-align: center;
    position: relative;
    width: 22%;
}
.top_hkn2090 .top_box .col_02 li::before {
    content: '';
    background: url(../images/img_double_circle.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
}
.top_hkn2090 .top_box .col_02 li > p {
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}
.top_hkn2090 .top_box .col_02 li .note {
    display: block;
    font-size: 10px;
    letter-spacing: 0;
    margin-top: 4px;
    position: relative;
}
@media screen and (max-width: 1120px) {
    .top_hkn2090 .top_box {
        padding: 0 2em 2em;
        max-width: 840px;
        width: 100%;
    }
    .top_hkn2090 .top_box__ttl .marker > span {
        font-size: 2.2rem;
    }
    .top_hkn2090 .top_box__pic {
        margin-left: -2em;
    }
    .top_hkn2090 .top_box__pic .txt {
        font-size: 2rem;
    }
    .top_hkn2090 .top_box__pic img {
        width: 110px;
    }
    .top_hkn2090 .top_box .col_02 li > p {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .top_hkn2090 .top_box {
        padding: 1.8em 1em 0.6em;
    }
    .top_hkn2090 .top_box .col_01 {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }
    .top_hkn2090 .top_box__ttl {
        line-height: 1.5;
        text-align: center;
        width: 100%;
    }
    .top_hkn2090 .top_box__ttl .marker > span {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .top_hkn2090 .top_box__ttl .marker::before {
        height: 8px;
    }
    .top_hkn2090 .top_box__pic {
        width: 100%;
        margin: 1.6em auto;
        justify-content: center;
        align-items: center;
        gap: 6%;
    }
    .top_hkn2090 .top_box__pic img {
        width: 80px;
    }
    .top_hkn2090 .top_box__pic .txt {
        font-size: 1.6rem;
        margin-top: 3em;
    }
    .top_hkn2090 .top_box .col_02 {
        margin: 1em 0 0;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .top_hkn2090 .top_box .col_02 li {
        margin-bottom: 2.4em;
        width: 46%;
    }
    .top_hkn2090 .top_box .col_02 li::before {
        width: 50px;
        height: 50px;
    }
    .top_hkn2090 .top_box .col_02 li > p {
        font-size: 1.2rem;
        letter-spacing: 0;
    }
}

/* top_review */
.top_review {
    padding-top: 5em;
}
.top_review .ttl {
    text-align: center;
    margin-bottom: 2.6em;
}
.top_review .ttl > span {
    background: #fff;
    border-radius: 5px;
    display: inline-block;
    color: #0a245a;
    font-size: 3rem;
    font-weight: 700;
    padding: 0.2em 1em;
    position: relative;
}
.top_review .ttl > span::before {
    content: '';
    background: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}
.top_review {
    margin-bottom: 2em;
}
.top_review .slick-dots {
    bottom: -40px;
}
.top_review .slick-dots li {
    margin: 0 3px;
}
.slick-dots li button,
.slick-dots li button:before {
    width: 16px;
    height: 20px;
}
.top_review .slick-dots li button:before {
    color: #fff;
    font-size: 11px;
    opacity: 1;
}
.top_review .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #2b489e;
}
.top_review .review_item {
    background: #fff;
    border: 2px solid #2b489e;
    border-radius: 10px;
    padding: 1.4em 2em 2em;
    position: relative;
    margin: 0 40px;
    min-height: 280px;
}
.top_review .review_item .star {
    background: #2b489e;
    border-radius: 4px 4px 0 4px;
    position: absolute;
    top: 14px;
    right: -10px;
    padding: 0.45em 2em;
    width: 210px;
}
.top_review .review_item .star::before {
    content: '';
    background: url(../images/img_star.png) repeat-x center/contain;
    display: inline-block;
    width: 140px;
    height: 20px;
}
.top_review .review_item .star::after {
    position: absolute;
    content: '';
    top: 100%;
    right: 0;
    border: none;
    border-bottom: solid 8px transparent;
    border-left: solid 8px #000;
}
.top_review .review_item .name > span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.8em;
}
.top_review .review_item .comment {
    font-size: 1.3rem;
    position: relative;
    margin: 1.6em 0;
}
.top_review .review_item .comment > strong {
    font-weight: 700;
}
.top_review .review_item .comment.js-target {
    overflow: hidden;
    transition: max-height 0.6s ease;
    max-height: 110px;
    margin-bottom: 2.4em;
}
.top_review .review_item .comment.open {
    max-height: 100vh;
}
.top_review .review_item .comment.js-target::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0.4) 50%, #fff 100%);
    transition: opacity 0.3s;
}
.top_review .review_item .comment.js-target.open::after {
    opacity: 0;
    pointer-events: none;
}
.top_review .review_toggle_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2em 0.8em;
    border-radius: 100px;
    border: 2px solid #000;
    background: #2b489e;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 156px;
}
.top_review .review_toggle_btn.open {
    background: #fff;
    color: #2b489e;
    border-color: #2b489e;
}
.top_review .btn {
    border-radius: 10px;
    background: #fee900;
    border: 2px solid #000;
    display: block;
    padding: 0.6em;
    text-align: center;
    margin: 5em auto 0;
    max-width: 680px;
    width: 100%;
}
.top_review .btn > span {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: underline;
    position: relative;
}
.top_review .btn > span::after {
    content: '';
    background: url(../images/icon_btn_arrow.png) no-repeat center/contain;
    display: inline-block;
    position: relative;
    top: 1px;
    left: 12px;
    width: 26px;
    height: 20px;
}
@media screen and (max-width: 1120px) {
    .top_review .review_item {
        margin: 0 20px;
    }
}
@media screen and (max-width: 767px) {
    .top_review {
        margin-bottom: 0;
    }
    .top_review .ttl > span {
        font-size: 2rem;
    }
    .top_review .ttl > span::before {
        bottom: -10px;
    }
    .top_review .review_item {
        margin: 0 10px;
        padding: 1.6em 1.2em;
        min-height: 236px;
    }
    .top_review .review_item .star {
        padding: 0.2em 1em;
        width: 100px;
    }
    .top_review .review_item .star::before {
        width: 76px;
        height: 10px;
    }
    .top_review .review_item .name > span {
        font-size: 1.1rem;
        letter-spacing: 0;
    }
    .top_review .review_item .comment {
        font-size: 1rem;
        letter-spacing: 0;
    }
    .top_review .review_item .comment.js-target {
        margin-bottom: 4em;
        max-height: 80px;
    }
    .top_review .review_item .comment.open {
        max-height: 100vh;
    }
    .top_review .review_toggle_btn {
        font-size: 14px;
        width: 140px;
    }
    .top_review .btn {
        max-width: 330px;
        width: 98%;
    }
    .top_review .btn > span {
        font-size: 1.6rem;
        line-height: 1.5;
        text-align: left;
    }
    .top_review .btn > span::after {
        top: -8px;
        left: 24px;
    }
}
