﻿@charset "UTF-8";

/*
Theme Name: サロン向けWEBシステム
Version: 1.1
*/

/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
    --color-bg-base: #faf5f1;
    --color-bg-base2: #f5f5f5;
    --color-bg-base3: #faf2ef;
    --color-bg-light: #ffffff;
    --color-bg-dark: #d3b9af;
    --color-bg-dark2: #918c79;
    --color-bg-button: #d3b9af;
    --color-bg-button-hover: #fff;
    --color-bg-icon: #e5e9ef;
    --color-icon: #94644d;
    --color-icon-light: #d3b9af;
    --color-font-light: #ffffff;
    --color-font-base: #94644d; /* 基本 */
    --color-font-base2: #403434;
    --color-font-base3: #9E9E9E;
    --color-font-base4: #af8f80;
    --color-font-base5: linear-gradient(to bottom, #cea795 0%,#b18773 100%);
    --color-font-base6: #6e6e6e;
    --color-font-light-button: #ffffff;
    --color-logo: #ffffff;
}

/* ダークモードのカラー */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-base: #434c5e;
        --color-bg-light: #3b4252;
        --color-bg-button: #5e81ac;
        --color-bg-button-hover: #81a1c1;
        --color-icon: #88c0d0;
        --color-font-base: #eceff4;
        --color-logo: #eceff4;
    }
}
*/

/* コンテナ幅 */
:root {
    --width-content: 1080px;
}

/* フォント */
:root {
    /* --font-family-base:
    'Montserrat','Noto Sans JP','メイリオ', Meiryo, sans-serif; */
    /* --font-family-base:
    "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; */
    /* --font-family-base:
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif; */
    /* --font-family-base:
    'Montserrat',"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif; */
    --font-family-base: 'Montserrat',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
}

@media screen and (min-width: 768px) {
    :root {
        font-size: 20px;
    }
}

/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */

html {
    color: #000;
    background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 600;
    font-feature-settings: "palt";
}

q:before,
q:after {
    content: "";
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select,
button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    *font-size: 100%;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: inherit;
}

input,
textarea,
select {
    font-size: 16px;
    font-family: 'ヒラギノ角ゴシック',"ヒラギノ角ゴ Pro ","Hiragino Kaku Gothic Pro",'Hiragino Sans','メイリオ', Meiryo, sans-serif;
}

label {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

input[type=radio] {
    display: none;
    visibility: hidden;
    cursor: pointer;
}

textarea {
    resize: vertical;
    display: block;
}

    /* placeholder設定*/
    input::placeholder, textarea::placeholder {
        color: #aaa;
        font-size: 14px;
    }

@media screen and (min-width: 768px) {
    input::placeholder, textarea::placeholder {
        font-size: 16px;
    }
}

button {
    padding: 0;
    cursor: pointer;
}

legend {
    color: #000;
}

main {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

svg {
    display: block;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

    *::before,
    *::after {
        box-sizing: border-box;
    }


/* ------------------------------ */
/* 全体共通のスタイル */
/* ------------------------------ */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--color-bg-base);
    font-size: 16px;
    color: var(--color-font-base);
    font-family: var(--font-family-base);
    letter-spacing: 0.03em;
    line-height: 1.75;
    font-weight: 400;
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
    }
}

p {
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    p {
        font-size: 14px;
    }
}

.l-page-top_wrap {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .l-page-top_wrap {
        /* text-align: right; */
    }
}

.l-page-top {
    font-weight: 600;
    display: inline-block;
    padding: 0 0 3px;
    margin-bottom: 30px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    color: var(--color-font-base);
    border-bottom: 2px dotted var(--color-bg-dark);
    transition: transform .3s;
}

@media screen and (min-width: 768px) {
    .l-page-top {
        font-size: 14px;
    }
}

.l-page-top:hover {
    transform: translateY(-2px);
}

/* ------------------------------ */
/* 汎用クラス */
/* ------------------------------ */
/* display: none;（強制） */
.dn {
    display: none !important;
}
/* display: block;（強制） */
.db {
    display: block !important;
}

/* text-align: center（強制） */
.tac {
    text-align: center !important;
}
/* text-align: left（強制） */
.tal {
    text-align: left !important;
}
/* text-align: right（強制） */
.tar {
    text-align: right !important;
}

/* positionリセット（強制） */
.ps {
    position: static !important;
}
/* margin無し（強制） */
.mn {
    margin: 0 0 0 0 !important;
}
/* padding無し（強制） */
.pn {
    padding: 0 0 0 0 !important;
}
/* padding設定（強制） */
.pt0 {
    padding-top: 0px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pb0 {
    padding-bottom: 0px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.plr {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* margin設定（強制） */
.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mce {
    margin: 0 auto !important;
}

/* max-width設定 （強制）*/
.mwNone {
    max-width: none !important;
}

.mw300 {
    max-width: 300px !important;
}

.mw400 {
    max-width: 400px !important;
}

.mw500 {
    max-width: 500px !important;
}

.mw600 {
    max-width: 600px !important;
}
/* 画面幅いっぱいにしたい要素にあてるクラス */
.widthMax {
    margin: 0 calc(50% - 50vw);
}

/*border設定*/
.bn {
    border: none !important;
}

/*汎用disable設定*/
.disable2 {
    filter: opacity(0.5) !important;
    pointer-events: none !important;
    user-select: none;
}

.disable3 {
    filter: contrast(0.8) !important;
    pointer-events: none !important;
    user-select: none;
}
/*汎用input設定*/
.err {
    border: 1px solid #f90000 !important;
}
/*汎用 td 設定*/
.u-table-td_fix {
    padding: 10px 10px 25px !important;
}

/* ------------------------------ */
/* フッター下部余白対策 */
/* ------------------------------ */
.h100 {
    min-height: calc(100vh - 270px);
}

@media screen and (min-width: 768px) {
    .h100 {
        min-height: calc(100vh - 325px);
    }
}

/* ------------------------------ */
/* ちょっとした使い回すスタイル */
/* ------------------------------ */

.u-visually-hidden {
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    border: 0 !important;
    padding: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    margin: -1px !important;
}

/* ------------------------------ */
/* コンポーネント(使い回すスタイル) */
/* ------------------------------ */
/* 水平線 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* スマホだけ表示 */
@media screen and (min-width: 768px) {
    .sp_only {
        display: none !important;
    }
}
/* PC（タブレット）だけ表示 */
@media screen and (max-width: 767px) {
    .pc_only {
        display: none !important;
    }
}


/* ボタン */
.c-button {
    color: var(--color-font-light-button);
    background-color: var(--color-icon-light);
    line-height: 1;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    padding: 0px 16px;
    font-size: 34px;
    /* border: 1px solid #ffffff; */
    position: absolute;
    right: 0;
}

@media screen and (min-width: 1200px) {
    .c-button {
        transition: background-color 0.3s;
        position: absolute;
        right: 0;
    }

        .c-button:hover {
            /* background-color: var(--color-bg-button-hover); */
        }
}

/* 矢印付きボタン */
.c-button--with-arrow {
    position: relative;
}

    .c-button--with-arrow::before,
    .c-button--with-arrow::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
    }

    .c-button--with-arrow::before {
        width: 14px;
        height: 2px;
        background-color: var(--color-icon-light);
    }

    .c-button--with-arrow::after {
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--color-icon-light);
        border-right: 2px solid var(--color-icon-light);
        transform: rotate(45deg);
    }

/*! 見出し2 */
.c-title-level2 {
    font-size: 13px;
    color: var(--color-font-base2);
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .c-title-level2 {
        font-size: 15px;
    }
}
/*! 見出し3 */
.c-title-level3 {
    font-size: 13px;
    color: var(--color-font-base);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .c-title-level3 {
        font-size: 15px;
        /* justify-content: left; */
    }
}
/*! 見出し3-2 */
.c-title-level3_2 {
    font-size: 14px;
    color: var(--color-font-base);
    letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
    .c-title-level3_2 {
        font-size: 15px;
    }
}
/*! 見出し3-3 */
.c-title-level3_3 {
    font-size: 14px;
    background: var(--color-font-base4);
    color: var(--color-bg-light);
    text-align: center;
    padding: 10px 0;
    max-width: 550px;
    margin: 20px auto 10px;
    letter-spacing: 0.1em;
    border: 3px double #fff;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .c-title-level3_3 {
        font-size: 16px;
    }
}

/*! 見出し3-4 */
.c-title-level3_4 {
    font-size: 18px;
    color: var(--color-font-base);
    text-align: center;
    padding: 5px 0;
    margin: 20px auto 30px;
}

@media screen and (min-width: 768px) {
    .c-title-level3_4 {
        font-size: 22px;
    }
}

/*! 見出し3-5 */
.c-title-level3_5 {
    font-size: 14px;
    background: #c21313;
    color: var(--color-bg-light);
    text-align: center;
    padding: 13px 0;
    margin: 0 auto 30px;
    /* box-shadow: 3px 4px 0 0 #7c0707; */
}

@media screen and (min-width: 768px) {
    .c-title-level3_5 {
        font-size: 16px;
    }
}

/*! 見出し3-6 */
.c-title-level3_6 {
    font-size: 13px;
    color: var(--color-font-base2);
    /* border-bottom: 1px solid var(--color-font-base2); */
    box-shadow: 0px 1px #fff;
    padding: 0 0 0px;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    text-decoration-color: #b1988e;
}

@media screen and (min-width: 740px) {
    .c-title-level3_6 {
        font-size: 14px;
        text-align: center;
        text-underline-offset: 7px;
    }
}

/*! 見出し3-7 */
.c-title-level3_7 {
    font-size: 13px;
    background: var(--color-font-base4);
    color: var(--color-bg-light);
    text-align: center;
    padding: 7px 0;
    max-width: 550px;
    margin: 20px auto 10px;
    letter-spacing: 0.1em;
    border: 3px double #fff;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .c-title-level3_7 {
        font-size: 16px;
    }
}

/*! 見出し3-8 */
.c-title-level3-8 {
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .c-title-level3-8 {
        font-size: 16px;
    }
}

/*! 見出し3-3 */
.c-title-level3_9 {
    font-size: 13px;
    background: var(--color-font-base4);
    color: var(--color-bg-light);
    text-align: center;
    padding: 7px 0;
    max-width: 550px;
    margin: 20px auto 10px;
    letter-spacing: 0.1em;
    border: 3px double #fff;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .c-title-level3_9 {
        font-size: 16px;
    }
}


/*! センター */
.c-title-level--center {
    text-align: center;
}
/*! レフト */
.c-title-level--left {
    text-align: left;
}
/*! ライト */
.c-title-level--right {
    text-align: right;
}
/*! ライト */
.c-title-level--rightLeft {
    text-align: right;
}

/*! カラー(ライト) */
.c-title-level2--color-light {
    color: var(--color-font-base);
}



/*! センター */
.c-title-level3--center {
    text-align: center;
}

/*! カラー(ライト) */
.c-title-level3--color-light {
    color: var(--color-font-base);
}

/* ------------------------------ */
/* コンテナ */
/* ------------------------------ */

.l-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .l-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .l-container {
        max-width: 700px;
    }
}

@media (min-width: 992px) {
    .l-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .l-container {
        /* max-width: 1140px; */
    }
}

@media (min-width: 1360px) {
    .l-container {
        /* max-width: 1340px; */
    }
}

/* ------------------------------ */
/* header */
/* ------------------------------ */

.header {
    background-color: var(--color-bg-dark);
}

.header-inner {
    height: 60px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .header-inner {
        height: 70px;
    }
}

@media screen and (min-width: 1200px) {
    .header-inner {
        position: relative;
    }
}

.header-logo {
    width: auto;
    font-weight: 600;
    font-size: 17px;
    color: var(--color-logo);
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .header-logo {
        font-size: 18px;
    }
}

.header-logo svg {
    fill: var(--color-logo);
}

.header-logo-link {
    display: block;
}

.header-logo-icon {
    margin: 0;
    padding: 0;
    position: relative;
    top: -2px;
}

.header-logo-img {
    width: auto;
    height: 13px;
    padding-right: 6px;
    vertical-align: middle;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .header-logo-img {
        height: 17px;
    }
}


/* ------------------------------ */
/* footer */
/* ------------------------------ */

.footer {
    height: 153px;
    text-align: center;
    background: var(--color-bg-dark2);
    color: var(--color-font-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .footer {
    }
}

@media screen and (min-width: 768px) {
    .footer-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.footer-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6px;
}

@media screen and (min-width: 768px) {
    .footer-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.footer-item {
    opacity: 0.7;
    font-size: 12px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .footer-item {
        font-size: 14px;
    }
}

.footer-item:not(:first-child)::before {
    content: "/";
    padding: 0 8px;
    opacity: 0.7;
}


.footer-copyright {
    margin-top: 24px;
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    .footer-copyright {
        margin-top: 0;
        margin-left: 120px;
        flex-shrink: 0;
    }
}

/* ------------------------------ */
/* top > kv */
/* ------------------------------ */

.top-kv {
    background-color: var(--color-bg-light);
    padding: 0;
    height: 44px;
    border-bottom: 1px solid #eae2df;
}

@media screen and (min-width: 768px) {
    .top-kv {
        padding: 0;
        height: 38px;
    }
}

.top-shopName {
    font-size: 13px;
    padding: 10px 0;
    font-weight: bold;
    background: var(--color-bg-light);
    border-bottom: 0px dashed #b4aba4;
    /* box-shadow: 0px 2px 15px -15px #897064; */
}

@media screen and (min-width: 768px) {
    .top-shopName {
        font-size: 16px;
        padding: 5px 0;
    }
}

.c-icon {
    margin-right: 5px;
    font-size: 13px;
    color: var(--color-bg-dark);
}

@media screen and (min-width: 768px) {
    .c-icon {
        font-size: 15px;
    }
}

/* ------------------------------ */
/* top > news */
/* ------------------------------ */

.top-news {
    padding: 20px 0;
}

.icon-level3 {
    margin: 10px 0 0;
    padding: 0;
}

.icon-level3-img {
    width: 55px;
    vertical-align: middle;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .icon-level3-img {
        width: 70px;
    }
}

.top-content {
    padding: 10px 0;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .top-content {
        font-size: 15px;
    }
}

.md_newsList {
    margin: 0;
}

    .md_newsList .news {
        position: relative;
        width: 100%;
        padding-bottom: 7px;
        margin-bottom: 7px;
        font-size: 12px;
    }

@media screen and (min-width: 768px) {
    .md_newsList .news {
        font-size: 13px;
    }
}

.md_newsList .news:not(:last-child) {
    border-bottom: 2px dotted var(--color-bg-dark);
}


.md_newsList .news .date {
    white-space: nowrap;
    /* padding: 0 5px; */
    font-weight: 600;
    color: var(--color-font-base);
    font-size: 14px;
    display: inline-block;
    /* border-left: 5px solid var(--color-bg-button); */
    line-height: 1.1;
}

@media screen and (min-width: 768px) {
    .md_newsList .news .date {
        font-size: 15px;
    }
}

.md_newsList .news .text {
    padding: 3px 0;
    line-height: 1.45;
    color: var(--color-font-base2);
}


/* ------------------------------ */
/* top > nav-botton */
/* ------------------------------ */

.nav-button {
    padding: 0px 0px 20px;
}

@media screen and (min-width: 768px) {
    .nav-button {
        padding: 20px 0px 20px;
    }
}

.top-content2 {
    padding: 10px 0;
    font-size: 13px;
}

@media screen and (min-width: 768px) {
    .top-content2 {
        font-size: 15px;
    }
}

.nav-button_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 280px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .nav-button_wrap {
        display: flex;
        max-width: none;
    }
}

.button-base {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    margin-bottom: 20px;
    color: var(--color-font-base);
    background: var(--color-bg-light);
    font-weight: 600;
    border: 1px solid var(--color-icon);
    transition: background .5s ease;
    position: relative;
    border-radius: 50px;
}

@media screen and (min-width: 768px) {
    .button-base {
        width: calc(100% / 3 - 20px);
        margin: 0 10px;
    }
}

.button-base:hover, .button-base_footer:hover, .button-reserve_list_detail:hover {
    animation: anima-button-030 1s;
}

@keyframes anima-button-030 {
    0% {
        box-shadow: 0 0 0 0 rgb(148 100 77 / 50%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(0 0 0 / 0%);
    }
}


.button-base::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s ease;
    will-change: transform;
}

.nav-button_login::before {
    background-image: url("../img/icon_login.svg?202303091100");
}

.nav-button_signUp::before {
    background-image: url("../img/icon_signUp.svg?202303091100");
}

.nav-button_reserve::before {
    background-image: url("../img/icon_reserve.svg?202303091100");
}

.nav-button_confirmation::before {
    background-image: url("../img/note.svg?202303091100");
}

.nav-button_change::before {
    background-image: url("../img/pen.svg?202303091100");
}

.button-base:hover::before {
    /* right: 15px; */
    /* transform: translateY(-50%) scale(1.5); */
}

/* ------------------------------ */
/* top > user */
/* ------------------------------ */
.top-user {
    padding: 15px 0 13px;
}

.top-user_name_display {
    margin-right: 1em;
}

/* ------------------------------ */
/* top > reserve */
/* ------------------------------ */
.top-reserve {
    padding: 0px 0;
    background: #fff;
    border-top: 1px solid #d2bab0;
    border-bottom: 1px solid #d2bab0;
}

@media screen and (min-width: 768px) {
    .top-reserve {
        padding: 5px 10px 0;
        background: #fff;
        border: 1px solid #d2bab0;
        max-width: 960px;
        border-radius: 5px;
        margin: 0 auto;
    }
}

.top-reserve_block {
    padding: 0px 0px 0;
    font-size: 13px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .top-reserve_block {
        font-size: 14px;
    }
}

.top-reserve_list_header {
    padding: 10px 0 10px 1.4em;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--color-bg-button);
}

    .top-reserve_list_header::before {
        background: url("../img/icon_reserve.svg");
        background-repeat: no-repeat;
        content: '';
        position: absolute;
        top: 50%;
        left: 1px;
        transform: translateY(-55%);
        width: 15px;
        height: 15px;
    }

@media screen and (min-width: 768px) {
    .top-reserve_list_header::before {
        transform: translateY(-57%);
    }
}

.top-reserve_list {
    padding: 10px 0px;
    color: var(--color-font-base2);
    font-size: 12px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .top-reserve_list {
        font-size: 13px;
    }
}

.top-reserve_list_wrap {
    position: relative;
    display: flex;
    /* background: linear-gradient(to bottom, #ffffff 0%,#faf5f1 100%); */
    padding: 10px 15px 10px;
    /* margin-bottom: 10px; */
    /* border-radius: 5px; */
    /* box-shadow: 0px 0px 1px 1px #e7d9cc; */
}

.top-reserve_list_item_left {
    width: 55px;
}

.top-reserve_list_item_right {
    width: 100%;
}

.top-reserve_list_wrap:not(:last-of-type) {
    border-bottom: 2px dotted var(--color-bg-dark);
    /* margin-bottom: 20px; */
    /* padding-bottom: 10px; */
}

/* ------------------------------ */
/* global footer button */
/* ------------------------------ */

.nav-global-footer-button {
    padding: 20px 0px 40px;
}

@media screen and (min-width: 768px) {
    .nav-global-footer-button {
        padding: 40px 0px 60px;
    }
}

.nav-global-footer-button-one_wrap {
    display: flex;
    justify-content: center;
}

    .nav-global-footer-button-one_wrap > a {
        width: 220px;
    }

@media screen and (min-width: 768px) {
    .nav-global-footer-button-one_wrap > a {
        width: 230px;
    }
}

.nav-global-footer-button_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .nav-global-footer-button_wrap {
        display: flex;
        max-width: 550px;
        /* justify-content: space-around; */
        flex-wrap: nowrap;
    }
}

.button-base_footer {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    margin-bottom: 20px;
    color: var(--color-font-light);
    background: var(--color-font-base2);
    font-weight: 600;
    border: var(--color-font-base);
    transition: background .5s ease;
    position: relative;
    border-radius: 50px;
    letter-spacing: 0.15em;
}

@media screen and (min-width: 768px) {
    .button-base_footer {
        margin: 0 10px;
        width: 200px;
    }
}

.button-base_footer.button_resize {
    width: 185px;
}

@media screen and (min-width: 768px) {
    .button-base_footer.button_resize {
        width: 250px;
    }
}

.button-base_footer::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s ease;
    will-change: transform;
}

.nav-button_back, .nav-button_agree {
    background: var(--color-bg-light);
    color: var(--color-font-base);
    border: 1px solid var(--color-font-base);
}

    .nav-button_back::before {
        left: 10px;
        background-image: url("../img/back.svg?202303091100");
    }

.nav-button_next::before {
    background-image: url("../img/next_white.svg?202303091100");
    right: 10px;
}

.nav-button_logout::before {
    background-image: url("../img/icon_login2.svg?202303091100");
}

.button-base_footer:hover::before {
    /* right: 15px; */
    /* transform: translateY(-50%) scale(1.25); */
}


/*top*/

/* ------------------------------ */
/* 「ログイン」「新規登録」 page */
/* ------------------------------ */
.page-login {
    padding: 35px 0 0px;
}

.page-signup {
    padding: 10px 0 0px;
}

.l-form__wrap {
    width: 100%;
    max-width: 550px;
    padding: 20px 0;
    margin: auto;
}

.l-form__wrap___2 {
    width: 100%;
    max-width: 550px;
    padding: 0px 5px 0px 5px;
    margin: auto;
}

.form-parts_wrap {
    margin-bottom: 15px;
}

.form-parts_wrap_checkbox {
    max-width: 550px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.form-parts_wrap_checkbox_form {
    max-width: 460px;
    padding: 0px 10px 20px;
}

@media screen and (min-width: 768px) {
    .form-parts_wrap_checkbox_form {
        padding: 20px 10px;
    }
}


/*インプット */
.form-label_number {
    font-size: 13px;
    color: var(--color-font-base);
    position: relative;
    display: block;
    padding-bottom: 5px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .form-label_number {
        font-size: 15px;
    }
}

.form-input_number {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: var(--color-font-base2);
    background-color: #fff;
    border: 1px solid var(--color-font-base);
    border-radius: 0px;
    transition: border-color .15s ease-in-out,box-shadow 0.15s ease-in-out;
    font-weight: 500;
    letter-spacing: 0.1em;
}

    .form-input_number:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgb(148 100 77 / 22%);
    }
/*エラーメッセージ*/
.errMsg {
    padding: 5px 0 0px;
    color: #f90000;
    display: block;
    font-size: 13px;
}

.c-caution-text {
    font-weight: 600;
    padding-bottom: 30px;
    /* text-align: center; */
    font-weight: normal;
}

.c-caution-text-table {
    font-weight: 600;
    padding-top: 5px;
    font-size: 11px;
    font-weight: normal;
    color: var(--color-font-base2);
}

@media screen and (min-width: 768px) {
    .c-caution-text-table {
        font-size: 13px;
    }
}

.c-caution-text_right {
    font-weight: 400;
    text-align: right;
    padding-top: 10px;
    color: var(--color-font-base2);
}

.c-caution-text_link {
    position: relative;
    padding: 2px 0;
    transition: opacity .3s ease-in;
}

    .c-caution-text_link::before, .c-caution-text_link::after {
        content: '';
        position: absolute;
        z-index: 1;
        bottom: -1px;
        left: 0;
        background: var(--color-font-base2);
        width: 100%;
        height: 1px;
        transition: all 0.2s ease-in-out;
    }

    .c-caution-text_link::after {
        width: 0;
        background: #faf5f1;
    }

    .c-caution-text_link:hover::after {
        width: 100%;
    }

    .c-caution-text_link:hover {
        opacity: 1;
    }

/*チェックボックス*/
.form-checkBox_input {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}

.form-checkBox_label {
    cursor: pointer;
    display: inline-block;
    padding: 4px 4px 0px 30px;
    position: relative;
    width: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-font-base);
    border-radius: 3px;
    vertical-align: middle;
}

    .form-checkBox_label::before {
        background: #fff;
        border: 1px solid var(--color-font-base);
        border-radius: 3px;
        content: '';
        display: block;
        height: 22px;
        left: 0;
        margin-top: 0;
        position: absolute;
        top: 5px;
        width: 22px;
        box-shadow: inset 0 0 3px 0px #d8c6c6;
    }

    .form-checkBox_label::after {
        border-right: 4px solid var(--color-font-base);
        border-bottom: 4px solid var(--color-font-base);
        content: '';
        display: block;
        height: 10px;
        left: 7px;
        opacity: 0;
        position: absolute;
        top: 7px;
        transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
        transition: transform .2s ease-in-out, opacity .2s ease-in-out;
        width: 4px;
        box-sizing: content-box;
    }

input[type=checkbox]:checked + .form-checkBox_label::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

/*警告メッセージエリア */
.m-warning-text {
    padding: 0px 0 20px;
    max-width: 580px;
    margin: 0 auto;
}

.m-warning-text_area {
    font-size: 12px;
    padding: 10px;
    border: 2px solid #f90000;
    background: var(--color-bg-light);
    color: #f90000;
    font-weight: 600;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .m-warning-text_area {
        font-size: 14px;
    }
}

/*ラジオボタン */
.col2__wrap {
    display: flex;
    flex-direction: row;
    color: var(--color-font-base2);
}

.col2__items {
    padding: 0 20px 0 0px;
}

.c-radio {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    width: auto;
    font-size: 15px;
}

@media (min-width: 768px) {
    .c-radio {
        font-size: 15px;
    }
}

.c-radio::before {
    background: #fff;
    border: 1px solid #94644d;
    border-radius: 50%;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    left: 5px;
    position: absolute;
    top: 3px;
    box-shadow: inset 0px 0px 4px 0px rgb(0 0 0 / 30%);
}

input[type=radio]:checked + .c-radio::before {
    border-color: #94644d;
}

.c-radio::after {
    background: #94644d;
    border-radius: 50%;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    left: 9px;
    opacity: 0;
    position: absolute;
    top: 7px;
    transform: scale3d(1,1,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

input[type=radio]:checked + .c-radio::after {
    opacity: 1;
}

.m-textIndent {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
}


/*セレクトボックス */

.m-selectbox_wrap {
    padding: 10px 0 20px;
}

.selectArea {
    width: 100%;
}

.selectWrap {
    font-size: 16px;
    position: relative;
    display: block;
}

    .selectWrap:before {
        content: "";
        position: absolute;
        top: 3px;
        bottom: 6px;
        margin: auto;
        right: 10px;
        width: 7px;
        height: 7px;
        border-top: 2px solid var(--color-font-base);
        border-right: 2px solid var(--color-font-base);
        transform: rotate(135deg);
        pointer-events: none;
        z-index: 1;
    }

@media screen and (min-width: 768px) {
    .selectWrap:before {
        top: 0px;
        bottom: 4px;
        right: 13px;
        width: 10px;
        height: 10px;
    }
}

.sentakuPtn001 {
    background: #fff;
    padding: 10px 20px 10px 10px;
    width: 100%;
    border-radius: 5px;
    border-top: 1px solid var(--color-font-base);
    border-bottom: 1px solid var(--color-font-base);
    border-left: 1px solid var(--color-font-base);
    border-right: 1px solid var(--color-font-base);
    cursor: pointer;
    outline: none;
    font-size: 16px;
    font-weight: normal;
    color: var(--color-font-base2);
    text-align: left;
}

@media screen and (min-width: 768px) {
    .sentakuPtn001 {
        font-size: 16px;
        padding: 10px 1em 10px 10px;
    }
}

.m-answer {
    margin: 0 0 -7px;
}

.sentakuPtn001:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgb(148 100 77 / 22%);
}

/*補足テキスト */
.m-text_box {
    padding: 15px 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-font-base);
}

@media screen and (min-width: 768px) {
    .m-text_box {
        font-size: 14px;
    }
}

.m-text_box > p {
}

@media screen and (min-width: 992px) {
    .m-text_box > p {
        max-width: 485px;
        margin: 0 auto;
    }
}

.m-info_box {
    padding: 25px 15px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #fffafa 0%,#f2e8e7 100%);
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: 600;
    border: 2px solid #94644d;
    box-shadow: 0px 2px #94644d;
    position: relative;
}

@media screen and (min-width: 768px) {
    .m-info_box {
        margin-bottom: 20px;
        padding: 25px 25px;
    }
}

.m-text-weight {
    font-weight: normal;
}

/* 利用規約 */
.l-Terms_of_UsePersonalInformation {
    background: #fff;
    line-height: 1.3em;
    height: 300px;
    overflow-y: scroll;
    padding: 15px 15px;
    margin-top: 20px;
    border: solid 1px #cec3bb;
    text-align: left;
    color: var(--color-font-base2);
    font-family: 'ヒラギノ角ゴシック',"ヒラギノ角ゴ Pro ","Hiragino Kaku Gothic Pro",'Hiragino Sans','メイリオ', Meiryo, sans-serif;
    font-weight: normal;
}

    .l-Terms_of_UsePersonalInformation::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
        border-radius: 7px;
        background-color: #f5f5f5
    }

    .l-Terms_of_UsePersonalInformation::-webkit-scrollbar {
        width: 7px;
        background-color: #f9f9f9;
    }

    .l-Terms_of_UsePersonalInformation::-webkit-scrollbar-thumb {
        border-radius: 7px;
        -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
        background-color: #caa990;
    }

.m-toupi_head {
    font-size: 10px;
    font-weight: normal;
    display: flex;
    justify-content: flex-end;
    padding: 0px 0 15px;
}

@media screen and (min-width: 768px) {
    .m-toupi_head {
        font-size: 13px;
    }
}

.m-toupi_content {
    font-size: 10px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .m-toupi_content {
        font-size: 13px;
    }
}

.m-toupi_content_header {
    font-size: 10px;
    padding: 5px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid;
    color: var(--color-font-base2);
    line-height: 1.7em;
}

@media screen and (min-width: 768px) {
    .m-toupi_content_header {
        font-size: 14px;
    }
}

.m-toupi_content_text {
    font-size: 10px;
    padding: 3px 3px;
}

@media screen and (min-width: 768px) {
    .m-toupi_content_text {
        font-size: 12px;
    }
}

.m-toupi_content_list {
    font-size: 10px;
    padding: 3px 0px 3px 20px;
    list-style: decimal;
}

@media screen and (min-width: 768px) {
    .m-toupi_content_list {
        font-size: 12px;
    }
}

.m-toupi_content_list_items {
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .m-toupi_content_list_items {
    }
}

.m-scroll_text {
    display: block;
    text-align: right;
    font-size: 10px;
    position: relative;
    top: 3px;
    color: var(--color-font-base2);
    font-family: 'ヒラギノ角ゴシック',"ヒラギノ角ゴ Pro ","Hiragino Kaku Gothic Pro",'Hiragino Sans','メイリオ', Meiryo, sans-serif;
    font-weight: normal;
}

.m-text_indent {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
}

.m-toupi_content_list_items > b {
    margin-bottom: 3px;
    display: block;
}

.m-toupi_content_contact {
    font-size: 10px;
    padding: 5px 10px 10px;
    border: 1px solid var(--color-font-base2);
    background-color: #f5f5f5;
    border-radius: 3px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .m-toupi_content_contact {
        font-size: 13px;
        padding: 5px 20px 10px;
    }
}

.c-link {
    color: #0094ff;
}

.m-toupi_content_flex {
    display: flex;
    margin-bottom: 3px;
}

.m-toupi_content_flex_items_left {
    width: 53%;
}

.m-toupi_content_flex_items_right {
    width: 47%;
}

/* ------------------------------ */
/* 「システムエラー」page */
/* ------------------------------ */
.page-system {
    padding: 40px 0;
}

.m-warning-text_area_long {
    font-size: 12px;
    padding: 15px 20px;
    border: 2px solid #c21313;
    background: var(--color-bg-light);
    color: var(--color-font-base2);
    font-weight: bold;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .m-warning-text_area_long {
        font-size: 14px;
    }
}

.m-warning_msg {
    text-align: center;
    padding: 5px 0 10px;
    border-bottom: 1px solid #c21313;
    margin-bottom: 10px;
    color: #c21313;
    display: flex;
}

.icon-fw {
    margin-right: 5px;
}

/* ------------------------------ */
/* 「パスワード再設定」 page */
/* ------------------------------ */
.enter-module--table {
    border: 1px solid #94644d;
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
}

@media screen and (min-width: 768px) {
    .enter-module--table {
        font-size: 15px;
    }
}

.enter-module--table th {
    background: #f2f2f2;
    border: 1px solid #94644d;
    padding: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.enter-module--table td {
    border: 1px solid #94644d;
    background: #fff;
    padding: 10px 20px 25px 20px;
}

.form-require {
    color: var(--color-font-light);
    background: #da2a1d;
    padding: 3px 10px;
    font-size: 11px;
    margin: 0 10px;
    border-radius: 3px;
}

.enter-module_wrap {
    display: flex;
    align-items: center;
    padding-top: 15px;
    color: var(--color-font-base2);
}

.form-label_enter {
    color: var(--color-font-base2);
    position: relative;
    display: block;
    font-weight: 600;
    width: 30px;
}

.form-input_enter {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: var(--color-font-base2);
    background-color: #fff;
    border: 1px solid var(--color-font-base);
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow 0.15s ease-in-out;
    font-weight: 500;
    letter-spacing: 0.1em;
}

    .form-input_enter:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgb(148 100 77 / 22%);
    }

.c-text_bg_white_complete {
    background: #fff;
    padding: 25px 20px;
    margin: 0px auto 30px;
    font-size: 14px;
    border-radius: 3px;
    max-width: 550px;
    border: 2px solid var(--color-font-base);
    border-radius: 10px;
    text-align: center;
    font-weight: normal;
    color: var(--color-font-base2);
    font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
}

@media (min-width: 768px) {
    .c-text_bg_white_complete {
        font-size: 16px;
    }
}

.c-text_bg_white_complete_img {
    display: block;
    width: 23px;
    height: auto;
    margin: 20px auto 0;
    opacity: 0;
    animation-name: fadein-right;
    animation-duration: 1.5s;
    animation-delay: 0s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation-fill-mode: forwards;
}

@keyframes fadein-right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.c-supplementary-text {
    max-width: 500px;
    margin: 0 auto 0px;
    font-weight: normal;
    color: var(--color-font-base2);
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .c-supplementary-text {
        font-size: 14px;
    }
}

/* ------------------------------ */
/* 「新規登録（個人情報規約）」 page  ？ */
/* ------------------------------ */
.c-text_bg_white {
    background: #fff;
    padding: 10px;
    margin: 0px 0 30px;
    font-size: 12px;
    border-radius: 3px;
}

@media screen and (min-width: 768px) {
    .c-text_bg_white {
        font-size: 15px;
    }
}

/* ------------------------------ */
/* 「新規登録（確認）」 page   */
/* ------------------------------ */
.c-title-level3_4_title {
    border: 3px double #fff;
    padding: 10px 0;
    letter-spacing: 0.1em;
    display: block;
    background: var(--color-font-base4);
    color: var(--color-bg-light);
    max-width: 550px;
    margin: 20px auto 10px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .c-title-level3_4_title {
        font-size: 17px;
    }
}

.m-title-level3_4_span {
    font-size: 12px;
    display: block;
    padding: 30px 0 0;
    font-weight: normal;
}

@media (min-width: 768px) {
    .m-title-level3_4_span {
        font-size: 15px;
    }
}

.c-data-list {
    display: flex;
    padding: 0;
    /* border: 1px solid #94644d; */
    letter-spacing: 0.1em;
    font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.c-data-list__ttl {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-size: 11px;
    -webkit-box-flex: 0;
    background: #f2f2f2;
    border-left: 1px solid #94644d;
    border-top: 1px solid #94644d;
    border-right: 1px solid #94644d;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .c-data-list__ttl {
        font-size: 14px;
    }
}

.c-data-list:last-child {
    /* border-bottom: 1px solid #94644d; */
}

.c-data-list__data {
    padding: 10px;
    font-size: 11px;
    background: #fff;
    border: 1px solid #94644d;
    border-top: 1px solid #94644d;
    border-right: 1px solid #94644d;
    width: 100%;
    color: var(--color-font-base2);
}

@media screen and (min-width: 768px) {
    .c-data-list__data {
        font-size: 14px;
        /* width: calc(100% - 60px); */
    }
}

.m-color_change {
    color: #fa1616;
    /*border-bottom: 1px solid #fa1616;*/
    padding: 2px 5px;
    vertical-align: top;
}

.m-complete_info_label {
    font-size: 13px;
    color: var(--color-font-base);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .m-complete_info_label {
        font-size: 15px;
    }
}

.m-complete_info {
    font-size: 13px;
    font-weight: normal;
    color: var(--color-font-base2);
    background: var(--color-bg-base2);
    padding: 10px 15px;
    border-radius: 0px;
}

@media screen and (min-width: 768px) {
    .m-complete_info {
        font-size: 15px;
    }
}

.m-thanks_box {
    border-top: 1px solid #ded2cb;
    margin: 50px auto 0;
    padding: 30px 0 0px;
    text-align: center;
    max-width: 550px;
    /* background: url("../img/blob7.svg?202303241000"); */
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: 50% 15%;
    background-size: 100px;
    /* filter: grayscale(1); */
    box-shadow: inset 0px 1px 0 0 #fff;
}

@media (min-width: 768px) {
    .m-thanks_box {
        padding: 50px 0 30px;
        background-size: 150px;
        background-position: 50% 30px;
    }
}

.m-thanks_box_text {
    font-size: 12px;
    color: #7a4c3e;
    font-weight: 600;
    padding: 30px 0 20px;
    /* text-shadow: 1px 1px #000; */
    /* background: #faf5f1; */
    /* mix-blend-mode: multiply; */
    /* box-shadow: 3px 3px #c2afa7; */
    /* border: 1px solid #dbd5d0; */
    /* border-radius: 10px; */
}

@media (min-width: 768px) {
    .m-thanks_box_text {
        font-size: 16px;
        padding: 40px 0 0px;
    }
}

.m-thanks_box_text_span {
    background: var(--color-bg-light);
    display: inline-block;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    /* box-shadow: 0px 0px 15px 0px #e9ddd3; */
    /* border: 1px solid #e9ddd3; */
    z-index: 10;
}

    .m-thanks_box_text_span:before {
        content: "";
        position: absolute;
        top: -27px;
        left: 50%;
        margin-left: -15px;
        border: 15px solid transparent;
        border-bottom: 15px solid #ffffff;
        z-index: 0;
        display: none;
    }

/* ------------------------------ */
/* step1「店舗選択」page */
/* ------------------------------ */
.step-up {
    padding: 0;
}

.l-step-up_wrap {
    display: flex;
    width: 100%;
    padding: 20px 10px 20px;
    max-width: 500px;
    margin: 0 auto 20px;
}

@media screen and (min-width: 768px) {
    .l-step-up_wrap {
        padding: 20px 0px 20px;
    }
}

.l-step-up_item {
    flex: 1 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    position: relative;
}

.l-step-up_item_bg {
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .l-step-up_item_bg {
        width: 55px;
        height: 55px;
    }
}

.l-step-up_item_bg.step1 {
    background: url("../img/step1_fill.svg");
}

.current .l-step-up_item_bg.step1 {
    background: url("../img/step1_b.svg");
}

.l-step-up_item_bg.step2 {
    background: url("../img/step2_fill.svg");
}

.current .l-step-up_item_bg.step2 {
    background: url("../img/step2_b.svg");
}

.l-step-up_item_bg.step3 {
    background: url("../img/step3_fill.svg");
}

.current .l-step-up_item_bg.step3 {
    background: url("../img/step3_b.svg");
}

.l-step-up_item_bg.step4 {
    background: url("../img/step4_fill.svg");
}

.current .l-step-up_item_bg.step4 {
    background: url("../img/step4_b.svg");
}

.l-step-up_item_bg.step5 {
    background: url("../img/step5_fill.svg");
}

.current .l-step-up_item_bg.step5 {
    background: url("../img/step5_b.svg");
}

.l-step-up_item::before {
    display: block;
    position: absolute;
    top: 19px;
    width: 100%;
    left: -50%;
    content: "";
    /* border-top: 2px solid #d3b9af; */
    z-index: 0;
}

@media screen and (min-width: 768px) {
    .l-step-up_item::before {
        top: 27px;
    }
}

.l-step-up_item:first-child::before {
    width: 50%;
    right: 0;
    left: auto;
}

.l-step-up_item:last-child::before {
    width: 100%;
    left: -50%;
}

.current.l-step-up_item::before {
    /* border-top: 2px solid #94644d; */
}

.m-step-up_label {
    font-size: 11px;
    padding: 10px 0 0;
    text-align: center;
    line-height: 1.2em;
    color: #b6978c;
}

@media screen and (min-width: 768px) {
    .m-step-up_label {
        font-size: 13px;
    }
}

.current .m-step-up_label {
    color: var(--color-font-base);
}


.l-step-up_content {
    width: 100%;
    padding: 0px 0;
    max-width: 600px;
    margin: 0 auto;
}

.l-step-up_content_staff_time {
    width: 100%;
    padding: 0px 0;
    /* max-width: 500px; */
    margin: 0 auto;
}

@media (min-width: 500px) {
    .l-step-up_content_staff_time {
        padding: 0px 10px;
    }
}

.m-shop-list {
    padding: 10px 5px 50px;
    margin: 0;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

.shop-list_item {
    width: 100%;
    font-size: 12px;
    color: var(--color-font-base2);
    border-bottom: 2px dotted var(--color-bg-dark);
    padding: 20px 10px 15px;
    margin: 0 auto 20px;
}

@media screen and (min-width: 650px) {
    .shop-list_item {
        font-size: 14px;
        width: 95%;
        padding: 20px;
    }
}

.shop-list_item_flex {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
}

.m-base_photo {
    width: calc(55% - 10px);
    min-height: 150px;
    background-image: url("../img/loading002.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
    aspect-ratio: 4 / 3;
    display: inline-block;
    overflow: hidden;
}

.base_photo_img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.m-base_info {
    width: calc(45% - 10px);
    padding: 0 0px 75px 0px;
    /* text-align: right; */
    position: relative;
    color: var(--color-font-base2);
}

.m-base-tel {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.base_tel_img {
    display: inline-block;
    width: 13px;
    height: auto;
    vertical-align: middle;
    margin-right: 3px;
}

.m-base_button {
    display: flex;
    width: 80px;
    height: 70px;
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    color: var(--color-font-light);
    background: var(--color-bg-dark2);
    border: 1px solid #767161;
    margin: 10px 0 0 auto;
    border-radius: 5px;
    font-family: 'Montserrat',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    transition: 0.5s ease;
    box-shadow: 0px 3px #767161;
    position: absolute;
    bottom: 3px;
    right: 0;
}

@media screen and (min-width: 768px) {
    .m-base_button {
        font-size: 13px;
    }
}

.m-base_button:hover {
    color: var(--color-bg-dark2);
    background: #fff;
}

.shop-list_item_detail {
    width: 100%;
    padding: 0;
}

.shop-list_item_detail_comment {
    padding-left: 20px;
    background: url("../img/comment.svg");
    background-size: 13px;
    background-position: left 5px;
    background-repeat: no-repeat;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .shop-list_item_detail_comment {
        background-position: left 5px;
    }
}

/* ------------------------------ */
/* step2「メニュー選択」page */
/* ------------------------------ */
.checkWrap {
    margin-bottom: 10px;
}

.checkBox_class {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}

.checkbox01 {
    cursor: pointer;
    display: inline-block;
    padding: 6px 4px 0px 35px;
    position: relative;
    width: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-font-base2);
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.75;
}

@media screen and (min-width: 768px) {
    .checkbox01 {
        padding: 5px 4px 0px 35px;
        font-size: 14px;
    }
}

.checkbox01::before {
    background: #fff;
    border: 1px solid #666;
    border-radius: 3px;
    content: '';
    display: block;
    height: 22px;
    width: 22px;
    left: 6px;
    margin-top: 0;
    position: absolute;
    top: 5px;
    box-shadow: inset 0 0 3px 0px #d8c6c6;
}

.checkbox01::after {
    border-right: 4px solid #94644d;
    border-bottom: 4px solid #94644d;
    content: '';
    display: block;
    height: 10px;
    left: 13px;
    margin-top: -16px;
    position: absolute;
    opacity: 0;
    top: 24px;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 4px;
    box-sizing: content-box;
}

input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

.m-treatmentTime_and_standardPrice {
    padding: 10px 10px;
    font-weight: 600;
    color: var(--color-font-base);
}

.m-border_setteing {
    border-top: 2px dotted var(--color-bg-dark);
    margin: 30px 0 20px;
    padding: 0px;
}
/* ------------------------------ */
/* step3「スタッフ選択」page */
/* ------------------------------ */
.l-staff_time__wrap {
    width: 100%;
    max-width: 600px;
    padding: 20px 0 70px;
    margin: auto;
    position: relative;
}

.staff_time {
    background: #fff;
    padding: 25px 20px;
    margin: 0px auto 0;
    font-size: 13px;
    border-radius: 0;
    border-top: 2px solid var(--color-font-base);
    border-bottom: 2px solid var(--color-font-base);
    font-weight: normal;
    color: var(--color-font-base);
    font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    position: relative;
    z-index: 1;
}

@media (min-width: 500px) {
    .staff_time {
        border: 2px solid var(--color-font-base);
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .staff_time {
        font-size: 15px;
        padding: 25px 20px;
    }
}

.m-text_box_fix {
    padding: 15px 25px !important;
}

@media screen and (min-width: 740px) {
    .m-text_box_fix {
        padding: 15px 5px !important;
    }
}

.staff_time_fix {
    padding: 25px 0px !important;
}

@media screen and (min-width: 740px) {
    .staff_time_fix {
        padding: 25px 20px !important;
    }
}

.staff_time_flex {
    display: flex;
    max-width: 400px;
    margin-left: 30px;
    margin-bottom: -2px;
}

.staff_time_flex_base {
    border-top: 2px solid #d6bcaf;
    border-left: 2px solid #d6bcaf;
    border-right: 2px solid #d6bcaf;
    border-bottom: 0px solid var(--color-font-base);
    color: #bd8f79;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    border-radius: 5px 5px 0 0;
    transition: border .5s ease;
}

    .staff_time_flex_base:hover {
        border-top: 2px solid var(--color-font-base);
        border-left: 2px solid var(--color-font-base);
        border-right: 2px solid var(--color-font-base);
        border-bottom: 0px solid var(--color-font-base);
    }

@media (min-width: 768px) {
    .staff_time_flex_base {
        font-size: 14px;
    }
}

.staff_time_select {
    padding: 7px 20px;
    display: block;
    transition: color .5s ease;
}

a.staff_time_select:hover {
    /* translate: 0px -1px; */
    color: var(--color-font-base);
}

.staff_time_flex_base.staff_time_current {
    border-top: 2px solid var(--color-font-base);
    border-left: 2px solid var(--color-font-base);
    border-right: 2px solid var(--color-font-base);
    border-bottom: none;
    position: relative;
    z-index: 10;
    color: var(--color-font-base);
}

.m-shop-list__staf {
    padding: 10px 10px 30px;
    margin: 0 auto;
    max-width: 550px;
}

.shop-list_item_flex__staff {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
}

.m-base_photo__staff {
    width: calc(50% - 10px);
    min-height: 150px;
    background-image: url("../img/loading002.svg");
    background-repeat: no-repeat;
    background-position: 60px center;
    background-size: 45px;
    /* aspect-ratio: 4 / 5; */
    display: inline-block;
    overflow: hidden;
}

@media screen and (min-width: 500px) {
    .m-base_photo__staff {
        width: calc(40% - 10px);
    }
}

@media screen and (min-width: 740px) {
    .m-base_photo__staff {
        /* width: calc(35% - 10px); */
        min-height: 180px;
    }
}

.m-base_info__staff {
    width: calc(50% - 10px);
    padding: 3px 0px 50px 10px;
    position: relative;
}

@media screen and (min-width: 500px) {
    .m-base_info__staff {
        width: calc(60% - 10px);
    }
}

@media screen and (min-width: 740px) {
    .m-base_info__staff {
        /* width: calc(65% - 10px); */
    }
}


.base_photo_img__staff {
    max-width: 100%;
    width: auto;
    border-radius: 4px;
}

.m-base_info__position {
    font-size: 10px;
    /* background-color: #af8080; */
    color: var(--color-font-base);
    border: 1px solid var(--color-font-base);
    padding: 1px 5px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .m-base_info__position {
        font-size: 12px;
    }
}

.base_info__message_flex {
    display: flex;
    align-items: flex-start;
}

.commnt_icon {
    color: var(--color-font-base4);
    padding-top: 6px;
}

.m-base_info__message {
    font-size: 10px;
    margin-top: 3px;
    color: var(--color-font-base2);
    font-weight: normal;
    position: relative;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .m-base_info__message {
        font-size: 13px;
    }
}
/*.m-base_info__message::before {
    background: url("../img/comment.svg");
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
}*/


.m-base_button__staff {
    display: flex;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    color: var(--color-font-light);
    background: var(--color-bg-dark2);
    border: 1px solid #767161;
    margin: 10px 0 0 auto;
    border-radius: 5px;
    font-family: 'Montserrat',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    transition: 0.5s ease;
    position: absolute;
    bottom: 3px;
    right: 0;
    width: calc(100% - 10px);
    box-shadow: 0px 3px #767161;
}

@media screen and (min-width: 740px) {
    .m-base_button__staff {
        font-size: 14px;
        padding: 9px 10px;
        width: 95%;
    }
}

.m-base_button__staff:hover {
    color: var(--color-bg-dark2);
    background: #fff;
}

/* 選択中のお店 */
.shop-list_item.selectedStore {
    background: #ebe0d6;
    padding: 25px 20px;
    border-bottom: none;
    border-radius: 10px;
    /* border: 1px solid #dbd1c9; */
    position: relative;
}

    .shop-list_item.selectedStore::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        border-bottom: 2px dotted var(--color-bg-dark);
        position: absolute;
        left: 50%;
        bottom: -23px;
        transform: translateX(-50%);
    }


/* ------------------------------ */
/* step3「予約時間選択」page */
/* ------------------------------ */
.l-table_day_select {
    width: 100%;
    padding: 20px 0px 10px;
}

@media screen and (min-width: 740px) {
    .l-table_day_select {
        padding: 20px 10px 10px;
    }
}

/*新しい「予約時間選択」テーブル */
.m-calendar {
    border-top: 2px solid var(--color-font-base3);
    border-left: 2px solid var(--color-font-base3);
    border-right: 1px solid var(--color-font-base3);
    border-bottom: 0px solid var(--color-font-base3);
    width: 100%;
    max-width: 97%;
    margin: 0 auto 30px;
    border-collapse: separate;
    border-spacing: 0px;
    color: var(--color-font-base2);
    font-size: 11px;
    /* box-shadow: 0 0 10px -6px #555; */
}

@media screen and (min-width: 740px) {
    .m-calendar {
        font-size: 13px;
        max-width: 100%;
    }
}

.m-calendar thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.m-calendar__item {
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--color-font-base3);
    border-bottom: 1px solid var(--color-font-base3);
    background: #fff;
    padding: 0px 0px;
    height: 35px;
    font-weight: 600;
    position: relative;
    z-index: 0;
}
    /*.m-calendar__item:not(:first-child) {
	border-left: 1px solid #ccc;
}*/
    .m-calendar__item:nth-child(n+9), .m-calendar__row--heading .m-calendar__item:nth-child(n+8) {
        display: none;
    }

@media screen and (min-width: 740px) {
    .m-calendar__item:nth-child(n+9), .m-calendar__row--heading .m-calendar__item:nth-child(n+8) {
        display: table-cell;
    }
}

.m-calendar__item--heading {
    border-bottom: 2px solid var(--color-font-base3);
    background: var(--color-bg-base2);
    color: #181b1c;
}


.m-calendar__item--time {
    background: var(--color-bg-base3);
    color: var(--color-font-base6);
}

.m-calendar__item--month {
    background: var(--color-bg-base2);
    color: #181b1c;
}

.m-calendar__item--date {
    /* background: var(--color-bg-base3); */
    padding: 3px 0;
    color: var(--color-font-base2);
    border-bottom: 2px solid var(--color-font-base3);
    position: relative;
}


.m-calendar__cell--link {
    text-decoration: none;
    color: #d00000;
    display: flex;
    height: 100%;
    padding: 0px 0;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (min-width: 740px) {
    .m-calendar__cell--link {
        font-size: 18px;
    }
}

.m-calendar__cell--link:hover {
    background-color: #ffe4e4;
}

.closeCell {
    background: #ededed;
    font-size: 15px;
    font-weight: normal;
}

@media screen and (min-width: 740px) {
    .closeCell {
        font-size: 14px;
    }
}

.closeCell2 {
    background: #fff;
    font-size: 15px;
    font-weight: normal;
}

@media screen and (min-width: 740px) {
    .closeCell2 {
        font-size: 14px;
    }
}

.m-calendar__item--saturday {
    background-color: #eff4f8;
    color: #4f5295;
}

.m-calendar__item--sunday, .m-calendar__item--holiday {
    background-color: #faf2f2;
    color: #b95442;
}

/*.m-calendar__row:nth-child(2n) th, .m-calendar__row:nth-child(2n) td {
	border-bottom: 2px solid var(--color-font-base3);
}*/
.separator_line th, .separator_line td {
    border-bottom: 2px solid var(--color-font-base3);
}

.m-calendar__row:not(:last-child) .gettingReady,
.m-calendar__row:not(:last-child) .regularHoliday,
.m-calendar__row:not(:last-child) .contactPhone {
    border-bottom: 0px solid var(--color-font-base3) !important;
}

.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="1"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="2"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="3"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="4"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="5"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="6"],
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="7"] {
    display: none;
}

@media screen and (min-width: 740px) {
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="1"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="2"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="3"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="4"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="5"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="6"],
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="7"] {
        display: table-cell;
    }
}

.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="8"] .item--month_year,
.m-calendar__row_thead .m-calendar__item--month:last-child[colspan="9"] .item--month_year {
    display: none;
}

@media screen and (min-width: 740px) {
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="8"] .item--month_year,
    .m-calendar__row_thead .m-calendar__item--month:last-child[colspan="9"] .item--month_year {
        display: inline;
    }
}


/* 縦一列「準備中」 */
.m-calendar__row:nth-child(9) .gettingReady:after {
    content: "準";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(11) .gettingReady:after {
    content: "備";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(13) .gettingReady:after {
    content: "中";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 縦一列「休業日」 */
.m-calendar__row:nth-child(9) .regularHoliday:after {
    content: "休";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(11) .regularHoliday:after {
    content: "業";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(13) .regularHoliday:after {
    content: "日";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


/* 縦一列「お電話にてお問い合わせください」 */

.m-calendar__row:nth-child(1) .contactPhone:after {
    content: "お";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(2) .contactPhone:after {
    content: "電";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(3) .contactPhone:after {
    content: "話";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(4) .contactPhone:after {
    content: "に";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(5) .contactPhone:after {
    content: "て";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(6) .contactPhone:after {
    content: "お";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(7) .contactPhone:after {
    content: "問";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(8) .contactPhone:after {
    content: "い";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(9) .contactPhone:after {
    content: "合";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(10) .contactPhone:after {
    content: "わ";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(11) .contactPhone:after {
    content: "せ";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(12) .contactPhone:after {
    content: "く";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(13) .contactPhone:after {
    content: "だ";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(14) .contactPhone:after {
    content: "さ";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.m-calendar__row:nth-child(15) .contactPhone:after {
    content: "い";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}







/*ページネーション　02（ページ送り型） */
.m-calendar-button-list__pagiNation {
    display: flex;
    width: 97%;
    padding: 0;
    justify-content: space-between;
    font-size: 10px;
    margin: 0px auto 25px;
    font-weight: 600;
}

@media screen and (min-width: 390px) {
    .m-calendar-button-list__pagiNation {
        font-size: 11px;
    }
}

@media screen and (min-width: 740px) {
    .m-calendar-button-list__pagiNation {
        font-size: 12px;
        /* max-width: 550px; */
        width: 100%;
    }
}

.calendar-button-list__pagiNation_flex {
    width: 24%;
}

.calendar-button-list__pagiNation_flex_center {
    width: 12%;
}

.m-calendar-button-list__pagiNation__button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #faf5f1 0%,#f4ebe3 100%);
    color: var(--color-font-base);
    padding: 5px 10px;
    border: 1px solid var(--color-icon);
    box-shadow: 0px 2px var(--color-font-base);
    border-radius: 3px;
    position: relative;
    transition: filter .3s ease-in-out;
    height: 30px;
}

@media screen and (min-width: 740px) {
    .m-calendar-button-list__pagiNation__button {
        height: 35px;
    }
}

.m-calendar-button-list__pagiNation__button:hover {
    filter: grayscale(1);
}

.m-calendar-button-list__button--primary {
    padding: 5px 0px;
    margin: 0 2px;
    background: var(--color-bg-light);
}

@media screen and (min-width: 740px) {
    .m-calendar-button-list__button--primary {
        padding: 5px 0px;
        margin: 0 10px;
    }
}

.m-calendar-button-back__pagiNation {
    padding: 5px 0px 5px 5px;
    margin-right: 10px;
}

@media screen and (min-width: 740px) {
    .m-calendar-button-back__pagiNation {
        padding: 5px 5px;
        margin-right: 10px;
    }
}

.m-calendar-button-next__pagiNation {
    padding: 5px 5px 5px 0px;
    margin-left: 10px;
}

@media screen and (min-width: 740px) {
    .m-calendar-button-next__pagiNation {
        padding: 5px 5px;
        margin-left: 10px;
    }
}

.m-calendar-button-list__pagiNation__button::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s ease;
    will-change: transform;
}

.m-calendar-button-back__pagiNation::before {
    background-image: url("../img/back.svg");
    left: 1px;
}

@media screen and (min-width: 740px) {
    .m-calendar-button-back__pagiNation::before {
        left: 10px;
    }
}

.m-calendar-button-next__pagiNation::before {
    background-image: url("../img/next.svg");
    right: 1px;
}

@media screen and (min-width: 740px) {
    .m-calendar-button-next__pagiNation::before {
        right: 10px;
    }
}

.m-staffSelect_box {
    display: flex;
    width: auto;
    /* background: var(--color-bg-base); */
    /* border: 1px solid #e6e1de; */
    font-size: 10px;
    /* box-shadow: 1px 1px #f1e9e3; */
    height: 27px;
    justify-content: flex-end;
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: -17px;
}

@media screen and (min-width: 740px) {
    .m-staffSelect_box {
        font-size: 12px;
        /* height: 30px; */
        padding: 0;
    }
}

.staffSelect_box_title {
    padding: 0px 7px 0px 5px;
    /* background: var(--color-bg-base); */
    /* border: 1px solid #cab9ab; */
    /* border-radius: 20px; */
    color: var(--color-font-base4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.staffSelect_box_name {
    padding: 0px 15px;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-base2);
    border: 1px solid #cab9ab;
    color: var(--color-font-base4);
    border-radius: 30px;
}

.icon_scissors {
    margin-right: 3px;
    line-height: 1.75 !important;
    font-size: 15px;
    color: #bea295;
}






/* ------------------------------ */
/* step4「予約確認」page */
/* ------------------------------ */
.m-title-level3_9_span {
    font-size: 12px;
    display: block;
    padding: 10px 10px 5px;
    font-weight: normal;
}

@media (min-width: 768px) {
    .m-title-level3_9_span {
        font-size: 14px;
        padding: 15px 20px 10px;
    }
}

.c-supplementary-text_footer {
    margin: 0 auto 0px;
    font-weight: normal;
    color: var(--color-font-base2);
    padding: 20px 20px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .c-supplementary-text_footer {
        font-size: 14px;
    }
}

.icon-tel {
    font-size: 15px;
}

@media screen and (min-width: 740px) {
    .icon-tel {
        font-size: 17px;
    }
}

.form-textarea_enter_wrap {
    padding: 10px 0;
}

.form-textarea_enter {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: var(--color-font-base2);
    background-color: #fff;
    border: 1px solid var(--color-font-base);
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow 0.15s ease-in-out;
    font-weight: 500;
    letter-spacing: 0.1em;
    min-height: 180px;
}

    .form-textarea_enter:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgb(148 100 77 / 22%);
    }

/* ------------------------------ */
/* step5「予約完了」page */
/* ------------------------------ */
.c-text_reservation_completed {
    display: inline-block;
    text-align: left;
    font-size: 13px;
    padding: 0 5px;
}

@media screen and (min-width: 768px) {
    .c-text_reservation_completed {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* ------------------------------ */
/* 「予約一覧」page */
/* ------------------------------ */
.top-reserve_list_detail_wrap {
    position: relative;
    display: block;
    font-size: 12px;
    background: #fffbfa;
    /* border-bottom: 2px solid var(--color-bg-dark); */
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 1px 1px 0px 2px #d2bab0;
    transition: background .5s;
}

@media screen and (min-width: 768px) {
    .top-reserve_list_detail_wrap {
        display: flex;
        font-size: 13px;
        padding: 20px 15px;
    }
}

@media screen and (min-width: 992px) {
    .top-reserve_list_detail_wrap {
        padding: 20px 15px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.top-reserve_list_detail_wrap:last-child {
    /* border-bottom: 2px dotted var(--color-bg-dark); */
    /* padding-bottom: 10px; */
    margin-bottom: 30px;
}

.top-reserve_list_detail_wrap:hover {
    background: var(--color-bg-light);
}

.reserve_list_detail {
    display: block;
    width: 100%;
    padding: 5px 10px 10px;
}

@media screen and (min-width: 768px) {
    .reserve_list_detail {
        width: 50%;
        padding: 5px 10px 0px;
    }
}

.reserve_list_detail_button {
    display: flex;
    width: 100%;
    padding: 5px 0 10px;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .reserve_list_detail_button {
        width: 50%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0;
    }
}

.reserve_list_detail_flex {
    display: flex;
    flex-wrap: wrap;
}

.reserve_list_detail_flex_left {
    width: 100px;
    padding: 2px 10px 7px 0px;
    border-bottom: 1px solid #e7d9cc;
    color: var(--color-font-base);
    margin-bottom: 5px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .reserve_list_detail_flex_left {
        width: 105px;
    }
}

.reserve_list_detail_flex_right {
    width: calc(100% - 100px);
    padding: 2px 2px 2px 0px;
    border-bottom: 1px solid #e7d9cc;
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .reserve_list_detail_flex_right {
        width: calc(100% - 105px);
    }
}

.button-reserve_list_detail {
    /* width: 145px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px 7px 12px;
    color: var(--color-font-light);
    background: var(--color-font-base4);
    font-weight: 600;
    /* border: 1px solid #985d41; */
    transition: background .5s ease;
    position: relative;
    border-radius: 5px;
    letter-spacing: 0.15em;
    font-size: 11px;
    box-shadow: 0 0 #555;
}

@media screen and (min-width: 768px) {
    .button-reserve_list_detail {
        font-size: 11px;
        /* width: 145px; */
        margin-left: 10px;
        padding: 7px 12px 7px 12px;
    }
}

@media screen and (min-width: 960px) {
    .button-reserve_list_detail {
        /* width: 155px; */
        margin-left: 10px;
        font-size: 12px;
        padding: 7px 12px 7px 12px;
    }
}

@media screen and (min-width: 1200px) {
    .button-reserve_list_detail {
        /* width: 160px; */
        margin-left: 20px;
        font-size: 12px;
        padding: 7px 12px 7px 12px;
    }
}

.c-reserve-text {
    max-width: 600px;
    margin: 0 auto 0px;
    font-weight: 600;
    color: #b0181c;
    padding: 40px 30px 10px;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .c-reserve-text {
        font-size: 14px;
        padding: 50px 30px 0px;
    }
}

.icon_reserve {
    font-size: 13px;
    margin-right: 10px;
    border-right: 1px solid var(--color-bg-dark);
    padding-right: 7px;
}




/* ------------------------------ */
/* モーダルウインドウ */
/* ------------------------------ */
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.modal__bg_dialog {
    background: rgba(0,0,0,0.7);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content_dialog {
    background: transparent;
    left: 50%;
    padding: 0px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    height: auto;
    /* overflow-y: auto; */
}

.dialogArea {
    padding: 20px;
    font-size: 16px;
    background: var(--color-bg-base2);
    border-radius: 5px;
}

.dialogWrap {
    display: flex;
    padding: 0px 10px 0;
    border: 1px solid #c5c5c5;
    background: var(--color-bg-light);
    margin-bottom: 20px;
    height: 150px;
    box-shadow: 0 2px 1px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 5px;
}

.cautionTextArea {
    font-size: 13px;
    padding: 20px 10px;
    display: grid;
    justify-content: center;
    text-align: left;
    align-items: center;
    place-items: center;
    overflow-y: auto;
    max-height: 148px;
    width: 100%;
    color: var(--color-font-base2);
}

@media screen and (min-width: 740px) {
    .cautionTextArea {
        font-size: 16px;
    }
}

.flexWrap2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.popUpButton002 {
    background: var(--color-bg-dark2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 40px;
    padding: 5px;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    margin: 10px 10px 0px;
    transition: all .3s ease;
    font-weight: 600;
    /* padding-right: 20px; */
    position: relative;
}

.popUpButton001 {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 40px;
    padding: 5px;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--color-font-base6);
    margin: 10px 10px 0px;
    transition: all .3s ease;
    font-weight: 400;
    /* padding-right: 20px; */
    position: relative;
    border: 1px solid var(--color-bg-dark2);
}

@media screen and (min-width: 740px) {
    .popUpButton001, .popUpButton002 {
        width: 150px;
        height: 45px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        font-family: 'Montserrat',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    }
}

.popUpButton001:hover, .popUpButton002:hover {
    animation: anima-button-031 1s;
}

@keyframes anima-button-031 {
    0% {
        box-shadow: 0 0 0 0 rgb(64 52 52 / 50%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(0 0 0 / 0%);
    }
}

/* ------------------------------ */
/* 電話をかける(SP・タブレット) */
/* ------------------------------ */
a[href^="tel:"] {
    pointer-events: auto;
}

@media screen and (min-width: 1200px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}




/*----------------------------------------------------
               ナビゲーション（ドロワー）メニュー （SP版）
----------------------------------------------------*/

/*----------------------------------------------------

               P_1.　「トップ」ページ（SP版）

----------------------------------------------------*/


/* ====        （tab版）740px ～ 991px　　　ここから↓↓↓  ==== */
@media (min-width: 768px) {

    /*----------------------------------------------------

               P_1.　「トップ」ページ（tab版）740px ～ 991px

----------------------------------------------------*/


}
/* ====       （tab版）740px ～ 991px　     ここまで ↑↑↑===== */



/* ====        （PC（小）版）992px ～ 1199px　　ここから↓↓↓  ==== */
@media (min-width: 992px) {
    /*----------------------------------------------------

               P_1.　「トップ」ページ（PC（小）版）992px ～ 1199px

----------------------------------------------------*/


}
/* ====        （PC（小）版）992px ～ 1199px       ここまで ↑↑↑===== */


/* ====        （PC版（中））1200px ～　　ここから↓↓↓  ==== */
@media (min-width: 1200px) {

    /*----------------------------------------------------
               ナビゲーション（ドロワー）メニュー （PC版（中））1200px ～
----------------------------------------------------*/

    /*----------------------------------------------------

               P_1.　「トップ」ページ（PC版（中））1200px ～

----------------------------------------------------*/


}
/* ====        （PC版（中））1200px ～       ここまで ↑↑↑===== */


/* ====        （PC版（大））1380px ～ 　　　ここから↓↓↓　　　==== */
@media (min-width: 1360px) {
    /*----------------------------------------------------

               P_1.　「トップ」ページ（PC版（大））1380px ～ 

----------------------------------------------------*/


}
/* ====       （PC版（大））1380px ～      ここまで ↑↑↑===== */

