@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-size: 100%;
    box-sizing: border-box;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    box-sizing: border-box;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    border: 0;
    vertical-align: top;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

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

a:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}

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

b,
strong {
    font-weight: bold;
}

address {
    font-style: normal;
}

button {
    display: block;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
}

/*
  ガイドライン参照 カラー設計
*/
body {
    color: #343434;
    overflow-x: hidden;
    font-family: "Jost", "Noto Sans JP", sans-serif;
    background: #cecece;
}

a {
    text-decoration: none;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.6;
}

.wapper {
    max-width: 430px;
    margin: 0 auto;
}

header {
    max-width: 430px;
    margin: 0 auto;
}

.page_width {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wide_width {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.xs_only {
    display: none;
}
@media screen and (max-width: 575px) {
    .xs_only {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .sp_only {
        display: none;
    }
}

/*ヘッダー*/
header .fixed_header {
    display: flex;
    align-items: center;
    position: relative;
    top: 25px;
    left: 0;
    z-index: 100;
    background: transparent;
    width: 100%;
    justify-content: space-between; /* 左右端に配置 */
}
header .fixed_header .logo {
    margin-left: 0;
    position: absolute;
    top: 0;
    left: 20px;
}
header .fixed_header .logo a img {
    width: clamp(7.875rem, 7.875rem + 0vw, 7.875rem);
    height: auto;
}

#drawer {
    position: relative; /* 親要素を基準に相対位置 */
    width: 100%; /* 必要に応じて設定 */
    height: 0;
}

#drawer .drawer__btn {
    position: fixed;
    top: 20px; /* 固定位置の上部 */
    /* 左側の位置はJavaScriptで設定 */
    z-index: 10002; /* 他の要素より前に表示 */
    width: 50px; /* ボタンの幅 */
    height: 50px; /* ボタンの高さ */
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}
#drawer .drawer__btn span {
    display: block;
    width: clamp(2.875rem, 2.875rem + 0vw, 2.875rem);
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.3s;
}
#drawer .drawer__btn span:nth-child(1) {
    transform: translate(-50%, -4px);
}
#drawer .drawer__btn span:nth-child(2) {
    transform: translate(-50%, 4px);
}
#drawer .drawer__btn.active {
    background-color: transparent;
}
#drawer .drawer__btn.active span {
    background: #000;
}
#drawer .drawer__btn.active span:nth-child(1) {
    transform: translate(-50%, 0) rotate(-25deg);
}
#drawer .drawer__btn.active span:nth-child(2) {
    transform: translate(-50%, 0) rotate(25deg);
}
#drawer .drawer__menu {
    position: fixed;
    z-index: 10001;
    width: 100%;
    max-width: 430px;
    height: 100dvh;
    overflow: auto;
    transition: width 0.3s;
    transform: translateX(-1000%);
    opacity: 0;
    padding: 94px 20px 60px;
    background: #e5e5e5;
}
#drawer .drawer__menu nav {
    height: 100%;
    overflow-y: scroll;
    position: relative;
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
    /*スクロールバー非表示（Chrome・Safari）*/
}
#drawer .drawer__menu nav::-webkit-scrollbar {
    display: none;
}
#drawer .drawer__menu nav .insta {
    position: fixed;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 10px 0 0 0;
}
#drawer .drawer__menu nav .insta a {
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #343434;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 13px;
    padding: 0 35px 0 25px;
}
#drawer .drawer__menu nav .insta img {
    width: 25px;
}
#drawer .drawer__menu.active {
    transform: translateX(0);
    opacity: 1;
}
#drawer .drawer__menu .inner_category .category_list > li {
    border-top: 1px dashed #343434;
    font-weight: 500;
    font-size: 16px;
    line-height: lh(24, 16);
    color: #606060;
}
#drawer .drawer__menu .inner_category .category_list > li:last-child {
    border-bottom: 1px dashed #343434;
}
#drawer .drawer__menu .inner_category .category_list > li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    line-height: 1.4;
}
#drawer .drawer__menu .inner_category .category_list > li a span {
    display: block;
}
#drawer .drawer__menu .inner_category .category_list > li a span:nth-child(1) {
    letter-spacing: 0.1em;
}
#drawer .drawer__menu .inner_category .category_list > li a span:nth-child(2) {
    width: 10px;
    height: 1px;
    background: #343434;
}

.banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    display: none; /* 初期状態では非表示 */
    opacity: 0; /* 初期状態では透明 */
    transition: opacity 0.3s ease; /* ふわっと表示するためのトランジション */
    z-index: 1000; /* フッターより前面に表示 */
    width: 100%;
    max-width: 430px;
}
.banner .banner_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .banner_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 50%;
    height: 60px;
    border-radius: 16px 16px 0px 0px;
}
.banner .banner_box a.line {
    background: #00b900;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
}
.banner .banner_box a.tel {
    background: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}
.banner .banner_box a.tel img {
    width: 30px;
}

/*フッター*/
footer {
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    background: #e5e5e5;
}
footer .footer_top_wrapper {
    background: #fff;
    border-radius: 0 170px 0 0;
    padding-top: 90px;
}
footer .footer_top_wrapper .footer_top .logo {
    display: flex;
    justify-content: center;
}
footer .footer_top_wrapper .footer_top .logo img {
    width: 158px;
}
footer .footer_top_wrapper .footer_top .access_info {
    margin-top: 40px;
}
footer .footer_top_wrapper .footer_top .access_info .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
}
footer .footer_top_wrapper .footer_top .access_info .google_map {
    margin-top: 10px;
    display: flex;
    justify-content: start;
}
footer .footer_top_wrapper .footer_top .access_info .google_map a {
    display: inline-flex;
    justify-content: end;
    align-items: center;
    padding: 6px 20px 8px;
    height: 40px;
    background: #faff00;
    border-radius: 9999px;
}
footer .footer_top_wrapper .footer_top .insta {
    margin-top: 35px;
}
footer .footer_top_wrapper .footer_top .insta .text {
    /* Follow Us */
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.1em;
    color: #000000;
}
footer .footer_top_wrapper .footer_top .insta .icon {
    margin-top: 7px;
    text-align: center;
}
footer .footer_top_wrapper .footer_top .copyright {
    margin-top: 35px;
    padding-top: 20px;
    padding-bottom: 40px;
    border-top: 1px solid #000;
}
footer .footer_top_wrapper .footer_top .copyright .copyright_text {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
footer .footer_bottom_wrapper .footer_bottom {
    margin-top: 60px;
}
footer .footer_bottom_wrapper .footer_bottom .page_top {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    gap: 10px;
    width: 240px;
    height: 57px;
    background: #faff00;
    border-radius: 30px 30px 0px 0px;
    cursor: pointer;
}

.index .section_title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index .section_title .ja {
    display: block;
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
    font-weight: 500;
    line-height: 1.7;
}
.index .section_title .en {
    display: block;
    font-size: clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.index .more {
    margin-top: clamp(1.125rem, 1.0794902913rem + 0.1941747573vw, 1.3125rem);
    display: flex;
    justify-content: end;
}
.index .more.underline a {
    text-decoration: underline;
}
.index .more a {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    font-weight: bold;
    font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
.index .more a:hover {
    opacity: 1;
    text-decoration: underline;
}
.index .button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.index .button a {
    width: clamp(18.4375rem, 16.2378640777rem + 9.3851132686vw, 27.5rem);
    height: clamp(3.125rem, 2.7457524272rem + 1.6181229773vw, 4.6875rem);
    background: #e5e5e5;
    color: #fff;
    font-weight: bold;
    font-size: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index #top_slider {
    /*スクロールダウン全体の場所*/
    /*Scrollテキストの描写*/
    /* 丸の描写 */
    /*下からの距離が変化して丸の全体が上から下に動く*/
    /*上から下にかけて丸が透過→不透明→透過する*/
    /* 線の描写 */
}
.index #top_slider .splide__slide {
    position: relative;
}
.index #top_slider .splide__slide img {
    width: 100%;
    display: block;
}
@media screen and (min-width: 768px) {
    .index #top_slider .splide__slide img {
        height: auto;
        -o-object-fit: initial;
        object-fit: initial;
    }
}
.index #top_slider .splide__arrows .splide__arrow {
    background: transparent;
    width: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
    height: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--prev {
    left: clamp(1.25rem, 0.7949029126rem + 1.9417475728vw, 3.125rem);
    opacity: 1;
    transition: opacity 0.3s;
    width: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
    height: auto;
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--prev:hover {
    opacity: 0.6;
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--prev svg {
    display: none; /* デフォルトのSVGアイコンを非表示 */
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--next {
    right: clamp(1.25rem, 0.7949029126rem + 1.9417475728vw, 3.125rem);
    opacity: 1;
    transition: opacity 0.3s;
    width: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
    height: auto;
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--next::before {
    content: "";
    display: block;
    width: 100%; /* 親要素の幅に依存させる */
    padding-top: 100%; /* アスペクト比を保つ */
    background-image: url("../images/common/icon_arrow_right.svg");
    background-size: contain; /* 画像のサイズを調整 */
    background-repeat: no-repeat;
    background-position: center;
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--next:hover {
    opacity: 0.6;
}
.index #top_slider .splide__arrows .splide__arrow.splide__arrow--next svg {
    display: none; /* デフォルトのSVGアイコンを非表示 */
}
.index #top_slider .splide__pagination {
    bottom: clamp(1.875rem, 0.6822519084rem + 5.0890585242vw, 3.125rem);
}
@media screen and (min-width: 768px) {
    .index #top_slider .splide__pagination {
        bottom: 20px;
    }
}
.index #top_slider .splide__pagination li button {
    background: #7b7b7b;
    margin: 3px 8px;
}
.index #top_slider .splide__pagination li button.is-active {
    background: #e5e5e5;
    transform: initial;
}
.index #top_slider .menu_link {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.8125rem, -3.5795454545rem + 27.2727272727vw, 3.75rem);
}
.index #top_slider .menu_link .text {
    display: flex;
    justify-content: center;
}
.index #top_slider .menu_link .icon {
    display: flex;
    justify-content: center;
}
.index #top_slider .menu_link .icon ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5625rem, -1.9943181818rem + 10.9090909091vw, 0.9375rem);
}
.index #top_slider .scrolldown2 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 50%;
    left: 6%;
}
.index #top_slider .scrolldown2 span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    writing-mode: vertical-rl;
}
.index #top_slider .scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0px;
    left: 11px;
    /*丸の形状*/
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.index #top_slider .scrolldown2:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -72px;
    left: 14px;
    /*線の形状*/
    width: 1px;
    height: 72px;
    background: #eee;
}
@keyframes circlemove {
    0% {
        bottom: 0px;
    }
    100% {
        bottom: -72px;
    }
}
@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

.index .salon_facility {
    background: #e5e5e5;
    padding: 60px 0 0;
}
.index .salon_facility .image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.index .salon_facility .image_list li {
    width: clamp(6.125rem, 3.1420454545rem + 12.7272727273vw, 6.5625rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.index .salon_facility .image_list li p {
    font-size: clamp(0.8125rem, 0.3863636364rem + 1.8181818182vw, 0.875rem);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.index .salon_facility .image_list2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.index .salon_facility .image_list2 li {
    width: 105px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.index .salon_facility .image_list2 li p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.index .salon_facility .content {
    margin-top: 60px;
}
.index .salon_facility .content .image_box {
    margin-right: -20px;
}
.index .salon_facility .content .image_box img {
    border-radius: 16px 0 0 16px;
}
.index .salon_facility .content .content_title {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
    margin-top: 16px;
}
.index .salon_facility .content .content_title span {
    font-weight: bold;
}
.index .salon_facility .content .content_text {
    line-height: 1.8;
    letter-spacing: 0.03em;
    font-size: 14px;
    margin-top: 16px;
}
.index .salon_facility .content .content_text span {
    background: linear-gradient(transparent 60%, #faff00 50%);
    font-weight: bold;
    font-size: 17px;
}

.index .worries {
    background: #e5e5e5;
    padding: 60px 0;
}
.index .worries .content {
    background: #fff;
    border-radius: 30px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.index .worries .content .worries_box .worries_list_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.index .worries .content .worries_box .worries_list_box .worries_list {
    margin-top: 16px;
    padding-left: 34px; /* アイコンとテキストの間にスペースを作る */
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}
.index .worries .content .worries_box .worries_list_box .worries_list li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    position: relative; /* アイコンをリストアイテム内に配置 */
}
.index .worries .content .worries_box .worries_list_box .worries_list li::before {
    content: "";
    background: url("../images/common/check.svg") no-repeat center center;
    background-size: contain;
    width: 26px; /* アイコンの幅 */
    height: 24px; /* アイコンの高さ */
    position: absolute;
    left: -34px; /* アイコンを左に配置 */
    top: 50%;
    transform: translateY(-50%); /* アイコンを垂直に中央配置 */
}
.index .worries .content .worries_box .worries_list_box .worries_list li span {
    font-weight: bold;
    font-size: 16px;
}
.index .worries .content .worries_box .icon {
    margin-top: 25px;
    text-align: center;
}
.index .worries .content .worries_box .text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
}
.index .worries .content .worries_box .text span {
    background: linear-gradient(transparent 60%, #faff00 50%);
}
.index .worries .action {
    margin-top: 60px;
}
.index .worries .action .action_text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.index .worries .action .action_image {
    margin-top: 16px;
    text-align: center;
}

.index .select {
    background: #fff;
    padding: 60px 0;
}
.index .select .select_list_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.index .select .select_list_box .select_list {
    margin-top: 16px;
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
}
.index .select .select_list_box .select_list li {
    border-radius: 30px;
    border: 1px solid #343434;
    padding: 40px;
}
.index .select .select_list_box .select_list li .image {
    display: flex;
    justify-content: center;
}
.index .select .select_list_box .select_list li .image.select1 img {
    width: 93px;
}
.index .select .select_list_box .select_list li .image.select2 img {
    width: 57px;
}
.index .select .select_list_box .select_list li .image.select3 img {
    width: 74px;
}
.index .select .select_list_box .select_list li .list_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-top: 4px;
}
.index .select .select_list_box .select_list li .list_title span.number {
    font-weight: 600;
    font-size: 28px;
    color: #f6e619;
}
.index .select .select_list_box .select_list li .list_title span.unit {
    font-weight: 600;
    font-size: 25px;
    color: #f6e619;
    margin: 0 1px;
}
.index .select .select_list_box .select_list li .text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}
.index .select .select_list_box .select_list li .text_supplement {
    margin-top: 20px;
    font-size: 13px;
}
.index .select .action {
    margin-top: 60px;
    margin-bottom: 60px;
}
.index .select .action .action_text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.index .select .action .action_image {
    margin-top: 16px;
    text-align: center;
}

.index {
    background: #fff;
}
.index .scroll_slider {
    position: relative;
}
.index .feature {
    background: #e5e5e5;
    padding: 60px 0;
}
.index .feature .feature_list_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.index .feature .feature_list_box .feature_list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    counter-reset: list-counter;
}
.index .feature .feature_list_box .feature_list li {
    display: inline-flex;
    flex-direction: column;
    counter-increment: list-counter;
    width: clamp(8.625rem, -4.1590909091rem + 54.5454545455vw, 10.5rem);
}
.index .feature .feature_list_box .feature_list li .image {
    display: flex;
    justify-content: center;
    width: clamp(5.5rem, -8.1363636364rem + 58.1818181818vw, 7.5rem);
    margin: 0 auto;
}
.index .feature .feature_list_box .feature_list li .list_title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 12px;
    position: relative;
    z-index: 0;
}
.index .feature .feature_list_box .feature_list li .list_title::before {
    content: counter(list-counter, decimal-leading-zero); /* カウンターの値を表示 */
    position: absolute;
    z-index: -1;
    font-size: 23px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #f6f95d;
    top: -16px;
    left: 2px;
}
.index .feature .feature_list_box .feature_list li .text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}
.index .feature .action {
    margin-top: 60px;
    margin-bottom: 60px;
}
.index .feature .action .action_text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.index .feature .action .action_image {
    margin-top: 16px;
    text-align: center;
}

.index .price {
    background: #fff;
    padding: 60px 0;
}
.index .price .price_list_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
}
.index .price .price_list_box .price_list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    width: 100%;
}
.index .price .price_list_box .price_list > li {
    position: relative;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0px 0px 9px rgba(59, 59, 59, 0.16);
}
.index .price .price_list_box .price_list > li .speech_bubble {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 36px;
    background: #faff00;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1;
}
.index .price .price_list_box .price_list > li .speech_bubble:before {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 22px solid #faff00;
    z-index: -1;
}
.index .price .price_list_box .price_list > li .price_set {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.4;
}
.index .price .price_list_box .price_list > li .price_set .yen {
    font-size: 23px;
    font-weight: 500;
}
.index .price .price_list_box .price_list > li .price_set .unit {
    font-size: 14px;
    font-weight: 500;
}
.index .price .price_list_box .price_list > li:nth-child(1) {
    padding: 36px 34px 26px;
}
.index .price .price_list_box .price_list > li:nth-child(1) .price_inner_list .list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.25rem, -3.0113636364rem + 18.1818181818vw, 1.875rem);
}
.index .price .price_list_box .price_list > li:nth-child(1) .price_inner_list .list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.index .price .price_list_box .price_list > li:nth-child(1) .price_inner_list .list ul li {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.7;
}
.index .price .price_list_box .price_list > li:nth-child(2) {
    padding: 30px 15px 20px;
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5rem, -8.875rem + 40vw, 1.875rem);
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .list ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .price_card {
    padding: 10px;
    text-align: center;
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .price_card .revenue {
    font-size: 17px;
    color: #333;
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(transparent 60%, #faff00 50%);
}
.index .price .price_list_box .price_list > li:nth-child(2) .price_inner_list .price_card .highlight {
    font-size: 21px;
    font-weight: 700;
}
.index .price .price_list_box .price_list > li:nth-child(3) {
    padding: 36px 17px 26px;
}
.index .price .price_list_box .price_list > li:nth-child(3) .price_inner_list .list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px 11px;
}
.index .price .price_list_box .price_list > li:nth-child(3) .price_inner_list .list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.index .price .price_list_box .price_list > li:nth-child(3) .price_inner_list .list ul li {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
}
.index .price .intro {
    margin-top: 35px;
}
.index .price .intro .image {
    display: flex;
    justify-content: center;
}
.index .price .intro .image img {
    width: 94px;
}
.index .price .intro .text {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}
.index .price .intro .icon {
    margin-top: 25px;
    text-align: center;
}
.index .price .intro .attention {
    font-weight: bold;
    line-height: 1.7;
    font-size: 24px;
    text-align: center;
}
.index .price .intro .attention span {
    background: linear-gradient(transparent 60%, #faff00 50%);
}
.index .price .support_list_box {
    margin-top: 40px;
}
.index .price .support_list_box .support_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 24px 7px;
}
.index .price .support_list_box .support_list li {
    display: inline-flex;
    flex-direction: column;
    padding: 20px 15px;
    box-shadow: 0px 0px 9px rgba(59, 59, 59, 0.16);
    border-radius: 20px;
}
.index .price .support_list_box .support_list li .image {
    display: flex;
    justify-content: center;
    width: clamp(5.5rem, -8.1363636364rem + 58.1818181818vw, 7.5rem);
    margin: 0 auto;
}
.index .price .support_list_box .support_list li .image.image1 {
    width: 72px;
}
.index .price .support_list_box .support_list li .image.image2 {
    width: 56px;
}
.index .price .support_list_box .support_list li .image.image3 {
    width: 64px;
}
.index .price .support_list_box .support_list li .image.image4 {
    width: 48px;
}
.index .price .support_list_box .support_list li .list_title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 12px;
    position: relative;
    z-index: 0;
}
.index .price .support_list_box .support_list li .text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}
.index .price .support_list_box .support_list li .pt_13 {
    padding-top: 13px;
}
.index .price .action {
    margin-top: 40px;
    background: #e5e5e5;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 30px;
    padding: 40px 20px;
}
.index .price .action .action_text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.index .price .action .action_image {
    margin-top: 16px;
    text-align: center;
}
.index .price .action .tel {
    margin-top: 24px;
}
.index .price .action .tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.index .price .action .tel a .number {
    font-weight: 900;
    font-size: 29px;
    line-height: 1.4;
}
.index .price .action .time {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.index .flow {
    background: #e5e5e5;
    padding: 60px 0;
}
.index .flow .flow_list_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.index .flow .flow_list_box .flow_list {
    margin-top: 16px;
    display: inline-flex;
    flex-direction: column;
    gap: 32px;
}
.index .flow .flow_list_box .flow_list li {
    border-radius: 30px;
    padding: 40px 30px 60px 30px;
    background: #fff;
    position: relative;
}
.index .flow .flow_list_box .flow_list li.p30 {
    padding: 40px 25px 60px 25px;
}
.index .flow .flow_list_box .flow_list li .badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #faff00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
}
.index .flow .flow_list_box .flow_list li .badge .text {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.index .flow .flow_list_box .flow_list li .badge .number {
    font-size: 23px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-top: -4px;
}
.index .flow .flow_list_box .flow_list li .image {
    display: flex;
    justify-content: center;
}
.index .flow .flow_list_box .flow_list li .image.image1 img {
    width: 74px;
}
.index .flow .flow_list_box .flow_list li .image.image2 img {
    width: 84px;
}
.index .flow .flow_list_box .flow_list li .image.image3 img {
    width: 71px;
}
.index .flow .flow_list_box .flow_list li .list_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-top: 4px;
}
.index .flow .flow_list_box .flow_list li .text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 4px;
}
.index .flow .flow_list_box .flow_list li .mt_15 {
    margin-top: 15px;
}
.index .flow .action {
    margin-top: 60px;
    margin-bottom: 60px;
}
.index .flow .action .action_text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.index .flow .action .action_image {
    margin-top: 16px;
    text-align: center;
}

.index .faq {
    background: #fff;
    padding: 60px 0;
}
.index .faq .faq_list_box {
    margin-top: 16px;
    /*details[open] .icon {*/
    /*  transform: rotate(180deg);*/
    /*}*/
    /* is-openedクラスが付与されたときのスタイル */
    /* --------アコーディオンの中身のスタイル-------- */
}
.index .faq .faq_list_box summary {
    /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
    display: block;
}
.index .faq .faq_list_box summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none;
}
.index .faq .faq_list_box .summary_inner {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 17px;
    padding: 16px 0;
    line-height: 1.7;
}
.index .faq .faq_list_box .summary_inner .question {
    font-weight: 500;
    width: 25px;
    height: 25px;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.1em;
}
.index .faq .faq_list_box .icon {
    display: block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin-left: auto;
}
.index .faq .faq_list_box .icon .close {
    display: none;
}
.index .faq .faq_list_box details.is-opened .icon .plus {
    display: none;
}
.index .faq .faq_list_box details.is-opened .icon .close {
    display: block;
}
.index .faq .faq_list_box .content {
    overflow: hidden;
    /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.index .faq .faq_list_box .content_inner {
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    border-top: 1px solid #000;
}
.index .faq .faq_list_box .content_inner .anser {
    font-weight: 500;
    width: 25px;
    height: 25px;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.1em;
}
.index .faq .faq_list_box .content_inner p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
}

.index .access {
    background: #e5e5e5;
    padding: 60px 0;
}
.index .access .map {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 16px;
}
.index .access .map iframe {
    width: 100%;
    height: 350px;
}
.index .access .access_info .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 24px;
}
.index .access .access_info .google_map {
    margin-top: 10px;
    display: flex;
    justify-content: end;
}
.index .access .access_info .google_map a {
    display: inline-flex;
    justify-content: end;
    align-items: center;
    padding: 6px 20px 8px;
    height: 40px;
    background: #faff00;
    border-radius: 9999px;
}

.under_layer .breadcrumbs {
    background: #f0f0f0;
}
.under_layer .breadcrumbs .list {
    list-style: none;
    padding-left: initial;
    margin-bottom: 0;
    padding: 10px 0 15px;
    line-height: 1;
}
.under_layer .breadcrumbs .list a {
    color: #ccc;
    font-weight: bold;
    font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
    letter-spacing: 0.65px;
    line-height: 1;
    transition: color 0.3s;
    word-break: break-all;
}
.under_layer .breadcrumbs .list a:first-child::before,
.under_layer .breadcrumbs .list a:first-child::after {
    display: none;
}
.under_layer .breadcrumbs .list a:first-child a {
    font-weight: 500;
}
.under_layer .breadcrumbs .list a::before {
    display: inline-block;
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5.828" height="8.828" viewBox="0 0 5.828 8.828"><path id="パス_4" data-name="パス 4" d="M1162.436,599l3,3-3,3" transform="translate(-1161.021 -597.586)" fill="none" stroke="%23ccc" stroke-linecap="round" stroke-width="2"/></svg>');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 5.828px;
    height: 8.828px;
    margin: 0 10px;
}
.under_layer .breadcrumbs .list a:hover {
    color: #343434;
    opacity: initial;
    transition: color 0.3s;
}
.under_layer .breadcrumbs .list a.is-active {
    line-height: 1;
    color: #343434;
} /*# sourceMappingURL=style.css.map */
