@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


:root {

    /* テーマカラー */
    --light-purple: #EDECFF;
    --purple: #6859B2;
    --accent-purple: #492DB2;
    --sub-purple: #8E8FFA;

    --alert: #E53939;
    --alert-base: #E2BEBE;
    --link: #377BFF;

    --white: #FFFFFF;
    --gray: #7E7E7E;
    --light-gray: #D9D9D9;
    --white-gray: #F7F7F7;
    --black: #3C3C3C;



    /* 鑑定ステータス */
    --status-now: #F24370;
    --status-busy: #C89BDE;
    --status-comming: #E5AE5C;
    --status-rest: #6C8BD9;
    --status-off: #999999;

}

button#status--ok{
    border: 2px solid #F24370;
    background:#F24370;
      color:#F24370;
}

button#status--busy {
    border: 2px solid #C89BDE;
    color: #C89BDE;
}

button#status--coming {
    border: 2px solid #E5AE5C;
    color: #E5AE5C;
}

button#status--rest {
    border: 2px solid #6C8BD9;
    color: #6C8BD9;
}
button#status--off {
    border: 2px solid #999999;
    color: #999999;
}

body {
    background-color: darkgrey;
    font-family: "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #3C3C3C;
}

.main {
    /* bodyが100vh未満の場合、footerの位置を調整 */
    min-height: 100vh;
    position: relative;
    /* footerの幅 */
    /* padding-bottom: 337.94px; */
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    max-width: 430px;
    background-color: #F7F7F7;
    margin: 0 auto;
    overflow-x: hidden;
}

.main-wrapper {
    width: 100%;
    overflow-x: hidden;
}


.main--nonFotter {
    padding-bottom: 0;
}

/* デフォルトcss リセット */
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
}

a {
    /* デフォルトcss リセット */
    color: inherit;
    text-decoration: none;
}

.pdLR {
    box-sizing: border-box;
    padding-right: 2%;
    padding-left: 2%;
}

.pdTB {
    box-sizing: border-box;
    padding-top: 4%;
    padding-bottom: 4%;
}


.pdTB--large {
    box-sizing: border-box;
    padding-top: 8%;


    padding-bottom: 8%;
}

.marginTB {
    box-sizing: border-box;
    margin-top: 5%;
    margin-bottom: 5%;
}

.align-left {
    text-align: left;
}

.bold {
    font-weight: bold;
}

.under-line {
    text-decoration: underline;
}

.blue {
    color: #492DB2;
}

.sub-title {
    color: var(--sub-purple);
    font-weight: 700;
    font-size: 15px;
}

.margin0auto {
    margin: 0 auto;
}

.title {
    font-size: 18px;
    font-weight: bold;

    padding: 24px 16px;
}

.link {
    color: var(--link);
    text-decoration: underline;
}

.alert-color {
    color: var(--alert);
}

.point-alert {
    display: block;
    /* width: 90%; */
    font-size: 15px;
    text-align: center;
    color: var(--alert);
    font-weight: 700;
    box-sizing: border-box;
    /* border: 1px solid #E53939; */
    display: flex;
    justify-content: center;
}

.point-alert::before {
    content: "!";
    display: block;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: var(--alert);
    margin-right: 10px;
    text-align: center;
}

.title--borderBottom {
    border-bottom: 1px solid rgb(233, 233, 233);
}

.title--topPadding {
    padding-top: 25px;
}

.viewDetail {
    width: 100%;

    display: inline-block;

    text-align: end;
    font-size: 16px;
    text-decoration: underline;
    color: #377BFF;

    padding-top: 6%;
    padding-bottom: 10%;
}

.error {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    color: #E53939;
}

p .error::before {
    content: "・";
}

.p-lg {
    padding: 40px 20px;
}

.text-center {
    text-align: center !important;
}

.text-gray {
    color: #7E7E7E;
}

.radius-text-box {
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--accent-purple);
    border-radius: 4px;
    background-color: var(--white);
    padding: 10px;
    box-sizing: border-box;

    font-size: 14px;
}

.radius-text-box--w90 {
    width: calc(100% - 15px * 2);
}





/* -----------------------------------------------------
    HEADER
----------------------------------------------------- */
.header {
    position: relative;
    width: 100%;
    height: 52px;
    background-color: #6859B2;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
}

.header__left {
    width: auto;
    height: 100%;

    box-sizing: border-box;
    padding-left: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.header__right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    box-sizing: border-box;
    gap: 2px;
}


.header__pointFrame {
    width: auto;
    min-width: 100px;
    height: 70%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2px;

    font-size: 16px;
    font-weight: bold;

    box-sizing: border-box;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);

    padding: 0 5px;

    cursor: pointer;

    position: relative;
}

.header__pointLink {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.header__point::after {
    content: "pt";
}

.header__point--minus {
    color: #E53939;
}

.header__pointPlusIcon {
    width: 18px;
    aspect-ratio: 1/1;
}

.header__icon {
    width: 50px;
    height: 100%;

    font-size: 8px;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.header__iconImage {
    width: 50%;
    height: 50%;
}

.header__menu.open {
    display: flex;
    color: #6859B2;
    background-color: #FFFFFF;
}

.header__menuIcon {
    width: 40%;
    height: 60%;
}

.header__menuIcon--open {
    display: none;
}

.header__menuIcon--default.open {
    display: none;
}

.header__menuIcon--open.open {
    display: flex;
}

.wait_status {
    text-align: center;
    padding-top: 2%;
    padding-bottom: 2%;
    border: 4px solid var(--alert);
    background: #FFF2F2;
    font-weight: bold;
    display: none;
}


/* ヘッダー右側ナビ（ul） */
.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 各ボタンの当たり判定を揃える */
.header__support,
.header__menu {
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}


.header__supportLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* アイコンはpxで統一 */
.header__supportIcon,
.header__menuIcon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* テキストも揃える */
.header__support p,
.header__menu p {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1;
}

.header__support p,
.header__menu p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}


/* -----------------------------------------------------
    GROBAL MENU
----------------------------------------------------- */

.gMenu {
    position: absolute;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    max-width: 430px;
    height: 100vh;
    height: 100dvh;

    box-sizing: border-box;

    background-color: #F7F7F7;
    font-size: 14px;
}

.gMenu__innner {
    height: 90%;
    overflow-y: scroll;

    display: flex;
    flex-direction: column;
}

.gMenu__closeButton {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 20px;
    height: 20px;

    display: block;

    margin-left: auto;

    cursor: pointer;
}

.gMenu__batsu::before,
.gMenu__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 2px;
    height: 20px;
    background: #7E7E7E;
    border-radius: 30px;
}

.gMenu__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.gMenu__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.gMenu__head {
    width: 100%;
    height: auto;

    /* display: flex;
    justify-content: center;
    align-items: center; */

    box-sizing: border-box;
    border-bottom: 1px solid var(--light-gray);
    padding: 50px 20px 10px;
    gap: 10px;
}

.gMenu__headContainer {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.gMenu__reserve {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 46px;
    color: var(--accent-purple);
    background-color: var(--white);
    text-align: center;

    cursor: pointer;

    margin: 10px auto;

    box-shadow: 0px 2px 2px 0px #0000001A;
}


.gMenu__data {
    max-width: 50%;
}

.gMenu__hidden {
    visibility: hidden;
}

.gMenu__text {
    /* font-family: "Sawarabi Mincho", serif; */
    color: #7E7E7E;
}

.gMenu__groupTitle {
    padding: 20px 0 0;
    color: rgb(182, 159, 245);
    font-weight: bold;
}

.gMenu__userName {
    width: 100%;
    height: auto;

    font-size: 18px;

    white-space: nowrap;
    /* overflow: hidden; */
    text-overflow: ellipsis;
}


.gMenu__userName::after {
    content: "様";
}


.gMenu__group {
    border-bottom: 1px solid var(--light-gray);
    box-sizing: border-box;
    padding: 0 5%;
}

.gMenu__item {
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 14px;

    box-sizing: border-box;
    padding: 0 5%;
}

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

    .gMenu__item {
        height: 44px;
    }

    .gMenu__group {
        padding: 0 5%;
    }
}

.gMenu__item::after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--black);
    border-right: 1px solid var(--black);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gMenu__logOut {
    padding: 20px 0;
    text-align: center;
    color: var(--alert);
    text-decoration: underline;
}



/* -----------------------------------------------------
    FOOTER
----------------------------------------------------- */

/* .footer {
    position: absolute;
    bottom: 0;
    height: auto;
} */

.footer__top {
    border-top: 1px solid #D9D9D9;
    padding: 6% 5% 5%;
}

.footer__top_noborder {
    padding: 6% 5% 5%;
}

.footer__logo {
    width: 30%;
    height: 50px;
    object-fit: contain;
}

.footer__text {
    width: 100%;
    font-size: 14px;
    text-align: justify;
}

.footer__pageTop {
    width: 35%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    margin: 0 auto;
    cursor: pointer;
}

.footer__pageTop::after {
    content: "↑";

    display: flex;
    justify-content: center;
    align-items: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;
    color: #6859B2;
    background-color: white;

    margin: 0 2%;
}

.footer__infoList {
    display: flex;
    justify-content: space-between;
    color: white;
    padding-top: 2%;
    align-items: center;
}

.footer__infoItem {
    width: 100%;
    text-align: center;

    box-sizing: border-box;
    border-right: 1px solid rgb(187, 187, 187);
}

.footer__infoItem:last-child {
    border-right: none;
}

.footer__copyright {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
}

.footer__infoList li {
    border-bottom: 1px white;
    padding: 5px 0;
    height: 20px;
}

.footer__infoList li:nth-child(2) .footer__infoinner {
  display: inline-block;
  transform: translateY(-5px);
}

/* -----------------------------------------------------
    MODAL
----------------------------------------------------- */

.modal {
    display: none;
    position: fixed;
    transition: .3s;
    z-index: 9998;
    inset: 0;
    margin: auto;

    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal.open {
    display: block;
    animation-name: fadeInAnime;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.no-scroll {
    overflow: hidden;
}

.modal--forMenu {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    z-index: 10001;
}

.modal--forProfile {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    overflow: hidden;
}

.modal--forPoint {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--forSendEmail {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--forCall {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--forCallErr {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    overflow: hidden;
}


.modal--first {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--first2 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--forPayment {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal--forTransfer {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.modal--deleteFavorite {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.modal--deleteFavoConfirmed {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.modal--success {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.modal--pointSummary {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}





/* -----------------------------------------------------
    WRAPPER
----------------------------------------------------- */

/* .wrapper {


} */

.wrapper--white {
    background-color: white;
}

.wrapper--border {
    border-top: 1px solid rgb(219, 219, 219);
    border-bottom: 1px solid rgb(219, 219, 219);
}

.wrapper--purple {
    background-color: #6859B2;
    ;
}

.wrapper--purple2 {
    background-color: var(--light-purple);
    ;
}

/* -----------------------------------------------------
    BREAD CRUMB
----------------------------------------------------- */

.breadcrumb {
    height: 30px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;

    padding: 0 15px;

    border-bottom: 1px solid #D9D9D9;

    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb__item {
    font-size: 13px;
    color: #6859B2;

    display: flex;
    gap: 5px;
    align-items: center;

    white-space: nowrap;
}

.breadcrumb__item::after {
    content: ">";
}

.breadcrumb__item:last-child:after {
    content: "";
}

.breadcrumb__item:last-child {
    color: #7E7E7E;
}


/* -----------------------------------------------------
    PAGE
----------------------------------------------------- */
.page {
    box-sizing: border-box;
}

.page__title {
    font-size: 18px;
    font-weight: 700;

    padding: 20px 15px;

    border-bottom: 1px solid #D9D9D9;
}


.page__text {
    font-size: 15px;
    padding: 15px 15px;
    text-align: justify;
}

.page__text--error {
    font-weight: 700;
    padding: 15px 30px;
}

.page__text--center {
    text-align: center;
}

.page__text--marginB15 {
    margin-bottom: 15px;
}

.page__text--gray {
    color: #7E7E7E;
}

.page__text--white {
    margin: 15px 0;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 26px;
}

.page__button {
    margin: 30px auto;
}


/* -----------------------------------------------------
    GUIDE(メール再送信案内)
----------------------------------------------------- */

.guide {
    border-top: 1px solid #D9D9D9;
    box-sizing: border-box;
    padding: 15px;
}

.guide--noborder {
    border: none;
}

.guide__head {
    font-size: 15px;
    color: #8E8FFA;
    font-weight: bold;
}

.guide__link {
    font-size: 15px;
    font-weight: 700;
    color: #492DB2;
    text-decoration: underline;
}

.guide__button {
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    margin: 15px auto;

    box-sizing: border-box;
    padding: 10px;

    border-radius: 4px;
    border: 1.5px solid #492DB2;

    font-size: 15px;
    /* font-weight: 700; */
    color: #492DB2;
    text-align: center;
    line-height: normal;
}

.guide__button--white {
    font-weight: normal;
    border: none;
    background-color: #492DB2;
    color: #FFFFFF;
}

/* -----------------------------------------------------
    カテゴリ別 占い師紹介タブ
----------------------------------------------------- */

.title-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
}

/* .title {
    margin-right: 16px;
    font-size: 22px;
} */

.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-item img {
    width: 24px;
    height: 24px;
}

.tab {
    width: 100%;
    position: relative;
}

#serv-point-tab {
    white-space: nowrap;
    font-size: 13px;
    overflow-x: visible;
}

.tab__buttons span {
    display: block;
    width: 25%;
    height: 40px;
    float: left;
    text-align: center;
    color: #7E7E7E;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

#tab__under-bar {
    width: 25%;
    height: 3px;
    display: block;
    box-sizing: border-box;
    background: #492DB2;
    position: absolute;
    top: 40px;
    left: 0;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
}

#tab__under-bar.tab__content1 {
    left: 0%;
}
#tab__under-bar.tab__content2 {
    left: 25%;
}
#tab__under-bar.tab__content3 {
    left: 50%;
}
#tab__under-bar.tab__content4 {
    left: 75%;
}
/* -----------------------------------
    占い師パネルリスト
----------------------------------- */


.pay-later-alert a {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}


p.pay-later-alert {
    border: 2px solid #6859B2;
    padding: 6px;
    font-size: 14px;
    color: #6859B2;
    margin: 2%;
}

.scheduleCard__description {
    padding-left: 10%;
    padding-top: 4%;
    padding-bottom: 4%;
}


img.item__icon {
    width: 22px;
}

img.item-icon.fortune--call {
    width: 22px;
    vertical-align: middle;
}

.item__price {
    display: flex;
    align-items: center;
    /* gap: 6px; */
}

.item__iconRow {
    padding-bottom: 4%;
    height: 1.7em;
}

.itemList {
    display: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.item {
    position: relative;

    width: 33%;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 15px 5px;
    box-sizing: border-box;

    border-bottom: 1px solid #D9D9D9;
    font-weight: bold;

    cursor: pointer
}

.item__imageFrame {
    width: 88px;
    height: 88px;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    border-radius: 50%;
}

.item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item__image--squere {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.item__imageFrame--circle {
    border-radius: 50%;
}

.item__name {
    width: 100%;

    text-align: center;
    font-size: 16px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item__price {
    font-weight: bold;
    font-size: 15px;
    color: #7E7E7E;

    padding: 5px 0;
}

.item__status {
    width: 100%;
    padding: 5% 0;
    text-align: center;
    border-radius: 5px;
    font-weight: normal;
    color: rgb(255, 255, 255);
}

/* 今すぐ相談可 */
.item__status--ok {
    background-color: #F24370;
}

/* 相談中 */
.item__status--busy {
    background-color: #C89BDE;
}

/* 待機予定 */
.item__status--coming {
    background-color: #E5AE5C;
}

/* 準備中 */
.item__status--rest {
    background-color: #6C8BD9;
}

/* 待機時間外 */
.item__status--off {
    background-color: #999999;
}

/* 非会員 */
.item__status--entry {
    background: linear-gradient(90deg, #4C4C8A 0%, #8485F0 100%);
}



.item__link {
    position: absolute;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/* -----------------------------------------------------
    メール再送信完了モーダル
----------------------------------------------------- */
.sendNotice {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;

    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 100px;


    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

.sendNotice__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    margin-left: auto;
    cursor: pointer;
}

.sendNotice__batsu::before,
.sendNotice__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.sendNotice__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sendNotice__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* -----------------------------------------------------
    ステータスボタン
----------------------------------------------------- */

.status-button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;

    border-radius: 5px;
    font-size: 16px;
    font-weight: normal;
    color: white;

    cursor: pointer;
}

.status-button--white {
    color: #6859B2;
    background-color: white;
    border: 1px solid #6859B2;
}


.status-button--ok {
    background-color: #F24370;

}

.status-button--busy {
    background-color: #C89BDE;
    cursor: default;
    pointer-events: none;
}

.status-button--coming {
    background-color: #E5AE5C;
    cursor: default;
    pointer-events: none;
}

.status-button--rest {
    background-color: #6C8BD9;
    cursor: default;
    pointer-events: none;
}

.status-button--off {
    background-color: #999999;
    cursor: default;
    pointer-events: none;
}

.status-button--entry {
    background: linear-gradient(90deg, #4C4C8A 0%, #8485F0 100%);
}


.status-button--purple {
    color: white;
    background-color: #6859B2;
}

.status-button--hidden {
    display: none;
}






/* -----------------------------------------------------
    メインボタン
----------------------------------------------------- */

.color-button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    padding: 8px 16px 8px 16px;
    box-sizing: border-box;

    border-radius: 4px;
    background-color: var(--accent-purple);
    color: var(--white);
    font-size: 16px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    margin: 0 auto;
}

.border-button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    padding: 8px 16px 8px 16px;
    box-sizing: border-box;

    border-radius: 4px;
    background-color: var(--white);
    color: var(--accent-purple);

    border: 1.5px solid;
    font-size: 16px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.gradient-button {
    width: 100%;
    height: 60px;

    box-sizing: border-box;
    padding: 10px;

    font-size: 16px;
    font-weight: 700;
    color: var(--white);

    border-radius: 4px;
    background: linear-gradient(to bottom, #8e90fa, rgb(114, 115, 204));
    box-shadow: 0px 2px 2px 0px #0000001A;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.disable-button {
    background-color: var(--light-gray);
    pointer-events: none;

}

/* -----------------------------------------------------
    ポイント購入（電話番号未登録時） モーダル
----------------------------------------------------- */

.pointNotice {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;

    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 80%;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

@media screen and (max-height: 610px) {
    .pointNotice {
        inset: 0 0 0 0;
        margin: auto;
        max-height: 95%;
    }
}

.pointNotice__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.pointNotice__batsu::before,
.pointNotice__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.pointNotice__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pointNotice__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.pointNotice__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.pointNotice__desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.pointNotice__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.pointNotice__button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    margin: 0 auto 10px;
    padding: 8px 16px 8px 16px;

    border-radius: 4px;
    background-color: #492DB2;
    color: #fff;
    font-size: 16px;

}

.pointNotice__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

.pointNotice__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .pointNotice {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .pointNotice {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}



/* -----------------------------------------------------
    モーダル 使いまわし用
----------------------------------------------------- */

.modal-card {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;

    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 80%;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

.modal-card--flexClm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal-closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.modal-closeButton__batsu::before,
.modal-closeButton__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.modal-closeButton__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-closeButton__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

p.modal-cancel.js-closeModalFirst {
    padding-bottom: 10%;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.modal-text {
    font-size: 14px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.modal-desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.modal-caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.modalbutton {
    width: 100%;
    max-width: 400px;
    height: 46px;

    margin: 0 auto 10px;
    padding: 8px 16px 8px 16px;

    border-radius: 4px;
    background-color: #492DB2;
    color: #fff;
    font-size: 16px;

}

.modal-cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;
}

@media screen and (min-width: 481px) {
    .modal-card {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .modal-card {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal-error {
    font-size: 15px;
    background-color: #e539392c;
    padding: 15px;
    margin-top: 15px;
    text-align: justify;
}


/* -----------------------------------------------------
    SSL証明欄　（SECOMリンク）
----------------------------------------------------- */

.secom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    width: 100%;
    height: auto;
    background-color: var(--white);

    border: 1px solid var(--accent-purple);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 8px 16px;

    text-align: justify;
}

.secom__img {
    width: 56px;
}

.secom__text {
    font-size: 14px;
}


/* -----------------------------------------------------
   注意事項
----------------------------------------------------- */

.notice {
    padding: 15px;
}

.notice__title {
    padding: 10px 0;
}

.notice__list {
    list-style-type: disc;
    margin-left: 24px;
    /* リストの左側に余白 */
    text-align: left;
    font-size: 14px;
}

.notice__item {
    padding: 0 0 10px;
    text-align: justify;
    line-height: 1.6;
}

.notice__link {
    padding: 0;
}


.paymentNotice__button {
    margin: 15px auto;
    font-size: 16px;
}

.paymentNotice__cancel {
    font-size: 16px;
}


/* -----------------------------------------------------
    PAGE NATION　
----------------------------------------------------- */
.page_list li,
.page_list2 li,
.page_list3 li {
    display: none;
}

.page_list .scheduleCard.on {
    display: block;
}

.page_list .scheduleBlock-wrapper.on {
    display: block;
}

.page_list .logTable__item.on,
.page_list2 .logTable__item.on,
.page_list3 .logTable__item.on {
    display: flex;
}

.page_list .item.on {
    display: block;
}

.pagination .number>a.active,
.pagination2 .number>a.active,
.pagination3 .number>a.active {
    background-color: var(--accent-purple);
    color: #fff;
}

/* .page_list {
        border-top: 1px solid #000;
        margin-bottom: 20px;
    } */

.pagination,
.pagination2,
.pagination3 {
    width: 80%;
    margin: 30px auto;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pagination .number,
.pagination2 .number,
.pagination3 .number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.pagination a,
.pagination2 a,
.pagination3 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /* border-radius: 100%; */

    position: relative;
}

.pagenation__text,
.pagenation2__text,
.pagenation3__text {
    position: absolute;
    /* top: 4px; */
}

.pagenation__next-arrow,
.pagenation__prev-arrow {
    background-color: var(--white);
}

.pagenation__prev-arrow:before,
.pagenation2__prev-arrow:before,
.pagenation3__prev-arrow:before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #3C3C3C;
    border-right: 1px solid #3C3C3C;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}


.pagenation__next-arrow:before,
.pagenation2__next-arrow:before,
.pagenation3__next-arrow:before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #3C3C3C;
    border-right: 1px solid #3C3C3C;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* -----------------------------------------------------
   LOG TABLE ポイント履歴、利用履歴、予約履歴表
----------------------------------------------------- */
.logTable {
    width: 100%;
    font-size: 14px;
}

.logTable__margin {
    height: 60px;
}

.logTable__item {
    background-color: var(--white);
    color: var(--gray);
    width: 100%;
    display: flex;
    justify-content: center;
    /* gap: 15px; */
    box-sizing: border-box;
    padding: 5px 15px;

    border-bottom: 1px solid var(--light-gray);
}

.logTable__item--head {
    background-color: var(--light-purple);
    color: var(--purple);
    font-weight: 700;

    justify-content: space-between;
    gap: 0
}

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

.logTable__text--XS {
    width: 20%;
}

.logTable__text--S {
    width: 25%;
}

.logTable__text--M {
    width: 35%;
}

.logTable__text--L {
    width: 40%;
}


/* -----------------------------------------------------
    INPUT
----------------------------------------------------- */
input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: 2px solid #8E8FFA;
}


.inputContainer {
    padding: 15px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    list-style: none;
}

/* .inputArea {
} */

.input-head {
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.common-input {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-size: 15px;
}


.common-textarea {
    width: 100%;
    max-width: 100%;
    height: 125px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-size: 15px;
}

.common-checkbox {
    cursor: pointer;
}

.common-checkbox input[type="checkbox"] {
    position: relative;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    cursor: pointer;
}

.common-checkbox input[type="checkbox"]:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 1px solid #ffff;
    border-bottom: 1px solid #ffff;
}

.common-checkbox input[type="checkbox"]:checked {
    background-color: #6859B2;
}

.common-dropdown {
    position: relative;
    width: 100%;
    height: 46px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    box-sizing: border-box;
    background-color: var(--white);
    font-size: 16px;
    margin-bottom: 4%;
}

.common-dropdown::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    pointer-events: none;
}

.common-select-tag {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
}



/* 利用規約・プライバシーポリシーなど */
.common-desc {
    width: 100%;
    height: auto;
    max-height: 150px;
    overflow-y: scroll;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 10px;
}

/* バリデーションエラー時 */
.common-input.error {
    background-color: #e2bebe;
}

.common-textarea.error {
    background-color: #e2bebe;
}

.common-checkbox input[type="checkbox"].error {
    background-color: #e2bebe;
}

/* error */

.settingErr {
    font-size: 15px;
    color: #E53939;
    box-sizing: border-box;
    padding: 15px 15px 0;
}

.settingErr__head {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.75;
}

.settingErr__text {
    line-height: 1.75;
}

.settingErr p::before {
    content: "・";
    line-height: 1.2;
}

/* -----------------------------------------------------
    バナー
----------------------------------------------------- */

.banner {
    width: 100%;
    margin: 0 auto;
}

.banner__link {
    width: auto;
}

.banner__img {
    width: 100%;
}

/* -----------------------------------------------------
    予約内容確認 モーダル
----------------------------------------------------- */

.reservConfirm {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 550px;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

@media screen and (max-height: 610px) {
    .reservConfirm {
        inset: 0 0 0 0;
        margin: auto;
        max-height: 95%;
    }
}

.reservConfirm--header {
    width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0;
}

.reservConfirm__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.reservConfirm__batsu::before,
.reservConfirm__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.reservConfirm__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.reservConfirm__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.reservConfirm__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.reservConfirm__desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.reservConfirm__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.reservConfirm__button {
    margin: 4% auto 10px;
}

.reservConfirm__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .reservConfirm {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .reservConfirm {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal--reservConfirm {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* background-color: #ffffff; */
    z-index: 10001;
}



/* -----------------------------------------------------
    予約する モーダル
----------------------------------------------------- */

.reservTeller {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 550px;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

@media screen and (max-height: 610px) {
    .reservTeller {
        inset: 0 0 0 0;
        margin: auto;
        max-height: 95%;
    }
}

.reservTeller__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.reservTeller__batsu::before,
.reservTeller__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.reservTeller__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.reservTeller__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.reservTeller__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.reservTeller_desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.reservTeller__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.reservTeller__button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    margin: 0 auto;
    padding: 8px 16px 8px 16px;

    border-radius: 4px;
    background-color: #492DB2;
    color: #fff;
    font-size: 16px;

}

.reservTeller__button_disable {
    background-color: var(--light-gray);
    pointer-events: none;
}

.reservTeller__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .reservTeller {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .reservTeller {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal--reservTeller {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.reservTeller__desc {
    width: auto;
    max-width: 400px;
    height: auto;
    padding: 5%;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.reservation-form__group.reservation-form__group--mb-2 {
    text-align: left;
    padding-top: 15px;
}

.reservation-form__date {
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    margin-top: 2%;
}

select.reservation-form__select {
    width: 100%;
    height: 46px;
    font-size: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    color: #3c3c3c;
    padding: 10px;
    margin-top: 2%;
}

label.reservation-form__label.reservation-form__label--fw-bold {
    font-weight: bold;
}

.select_wrapper {
    position: relative;
}

.select_wrapper::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #3C3C3C;
    border-bottom: 1px solid #3C3C3C;
    transform: rotate(45deg);
}

select {
    -webkit-appearance: none;
    appearance: none;
    background: #ffffff;
}

/* -----------------------------------------------------
    予約キャンセル モーダル
----------------------------------------------------- */

.reservCancel {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 550px;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

@media screen and (max-height: 610px) {
    .reservCancel {
        inset: 0 0 0 0;
        margin: auto;
        max-height: 95%;
    }
}

.reservCancel__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.reservCancel__batsu::before,
.reservCancel__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.reservCancel__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.reservCancel__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.reservCancel__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.reservCancel_desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.reservCancel__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.reservCancel__button {
    margin: 4% auto;
}

.reservCancel__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .reservCancel {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .reservCancel {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal--reservCancel {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.eservCancel__desc {
    width: auto;
    max-width: 400px;
    height: auto;
    padding: 5%;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

span.text-purple {
    color: #6859B2;
}

.reservConfirm__lead {
    font-size: 12px;
    font-weight: bold;
}

.reservConfirm__number {
    font-size: 16px;
    background: #F7F7F7;
    padding: 2%;
    margin: 2%;
}

.text-bold {
    font-weight: bold;
}

.reservConfirm__contents {
    text-align: left;
    padding: 2%;
    padding-top: 6%;
}

p.reservConfirm__tellerName {
    font-size: 14px;
    padding-bottom: 4%;
}

p.reservConfirm__reservDate {
    font-size: 14px;
    padding-bottom: 4%;
}

p.reservConfirm__start {
    font-size: 14px;
    padding-bottom: 4%;
}

.bg-gray {
    background: #F7F7F7;
}

.pt-sm {
    padding-top: 4%;
}

.mg-sm {
    margin-top: 4%;
}

.pd-sm {
    padding: 4%;
}

.pt-sm {
    padding: 4%;
}

.text-red {
    color: #E53939;
}

h1.eservCancel__title.text-red.text-bold {
    font-size: 14px;
}


/* -----------------------------------------------------
    予約キャンセル確定 モーダル
----------------------------------------------------- */

.cancelConfirmed {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 500px;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

.cancelConfirmed__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.cancelConfirmed__batsu::before,
.cancelConfirmed__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.cancelConfirmed__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.cancelConfirmed__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.cancelConfirmed__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.cancelConfirmed_desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.cancelConfirmed__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.cancelConfirmed__button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    margin: 0 auto 10px;
    padding: 8px 16px 8px 16px;

    border-radius: 4px;
    background-color: #492DB2;
    color: #fff;
    font-size: 16px;

}

.cancelConfirmed__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .cancelConfirmed {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .rcancelConfirmed {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal--cancelConfirmed {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

/* .eservCancel__desc {
    width: auto;
    max-width: 400px;
    height: auto;
    padding: 5%;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
} */

/* -----------------------------------------------------
    予約を確定する押下時 モーダル
----------------------------------------------------- */

.bookingConfirmed {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 550px;

    overflow-y: scroll;

    box-sizing: border-box;
    border-radius: 4px;

    background-color: white;

    padding: 40px 20px;
    text-align: center;
}

.bookingConfirmed__closeButton {
    width: 20px;
    height: 20px;

    display: block;
    position: absolute;
    top: 10px;
    right: 10px;

    margin-left: auto;

    cursor: pointer;
}

.bookingConfirmed__batsu::before,
.bookingConfirmed__batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 15px;
    background: #7E7E7E;
    border-radius: 30%;
}

.bookingConfirmed__batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bookingConfirmed__batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.bookingConfirmed__title {
    font-size: 16px;
    font-weight: 700;
    color: #6859B2;
    text-align: center;
    margin-bottom: 10px;
}

.bookingConfirmed_desc {
    width: auto;
    max-width: 400px;
    height: auto;

    padding: 5%;

    background-color: #F7F7F7;

    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.75;
}

.bookingConfirmed__caution {
    width: auto;
    max-width: 400px;
    /* max-height: 30%; */
    /* overflow-y: scroll; */
    margin: 0 auto 10px;
    font-size: 14px;
    color: #E53939;
    text-align: justify;
    line-height: 1.75;

}

.bookingConfirmed__button {
    width: 100%;
    max-width: 400px;
    height: 46px;

    margin: 0 auto 10px;
    padding: 8px 16px 8px 16px;

    border-radius: 4px;
    background-color: #492DB2;
    color: #fff;
    font-size: 16px;

}

.bookingConfirmed__cancel {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    color: #7E7E7E;
    cursor: pointer;

}

@media screen and (min-width: 481px) {
    .bookingConfirmed {
        max-height: 600px;
    }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
    .bookingConfirmed {
        top: 0;
        bottom: 0;
        margin: auto;

        height: 90%;
    }
}

.modal--bookingConfirmed {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

/* div#dayTable\ can-scroll {
    width: 100%;
    height: 500px;
    overflow: auto;
} */

.can-scroll {
    width: 100%;
    height: 500px;
    overflow: auto;
}

/* -----------------------------------------------------
    リダイレクト時　登録完了メッセージ
----------------------------------------------------- */
.success {
    /* margin: 40px auto; */
    box-sizing: border-box;
    padding: 40px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.success__iconFrame {
    width: 50px;
    height: 50px;

    margin: 20px auto;
}

.success__iconImage {
    width: 100%;
    height: 100%;
}

.success__text {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    padding: 0 35px;
    text-align: center;
    padding-bottom: 4%;
}

.success--non-border {
    border: none;
}

.success--non-padding {
    padding: 0;
}


/* -----------------------------------------------------
    絞り込み
----------------------------------------------------- */
.filter {
    padding: 10px;
}

.filter__accordion {
    padding: 10px;
    color: var(--gray);
    /* border-bottom: 1px solid var(--light-gray); */
    display: flex;
    justify-content: space-between;
    position: relative;
    height: auto;

    font-size: 16px;
    color: var(--accent-purple);
}

.filter__accordion::before {
    display: inline-block;
    content: "";
    /* width: 20px; */
    /* height: 10px; */
    /* background-image: url(../images/icon/icon_acr-arw_payment.svg); */
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto 0;
    -webkit-transition: 0.5s ease-in;
    transition: 0.3s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;

    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    border-radius: 10px;
    background: var(--accent-purple);
    display: block;
}

.filter__accordion::after {
    display: inline-block;
    content: "";
    width: 20px;
    height: 10px;
    /* background-image: url(../images/icon/icon_acr-arw_payment.svg); */
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto 0;
    -webkit-transition: 0.5s ease-in;
    transition: 0.3s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;


    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1px;
    height: 20px;
    border-radius: 10px;
    background: var(--accent-purple);
    display: block;
    transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.filter__accordion.show::after {
    transform: translate(-50%, 0%);
    opacity: 0;
}


.filter__body {
    display: none;
}

/* -----------------------------------------------------
    通話鑑定中アラート表示
----------------------------------------------------- */

.call_alert {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    box-sizing: border-box;
}


/* -----------------------------------------------------
    注意書き（赤）common
----------------------------------------------------- */
.ad-notice {
    width: 100%;
    margin: 10px auto;

    border: 5px solid var(--alert);
    box-sizing: border-box;
}

.ad-notice--w90 {
    width: 90%;
}

.ad-notice__title {
    color: var(--white);
    background-color: var(--alert);
    padding: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}


.ad-notice__title--call {
    display: flex;
    justify-content: center;
}

.icon_alert {
    width: 15px;
    height: 15px;
    margin: 5px;
    background-image: url(../images/icon/icon_alert.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.blinking {
    -webkit-animation: blink 0.8s ease-in-out infinite alternate;
    -moz-animation: blink 0.8s ease-in-out infinite alternate;
    animation: blink 0.8s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* .ad-notice__title--call::after {
    width: 15px;
    height: 15px;
    background-image: url(../images/icon/icon_alert.svg);
} */

.ad-notice__text-box {
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}


.ad-notice__text1 {
    font-size: 15px;
    font-weight: 700;
}



.highlight {
    text-decoration: underline;
    text-underline-offset: -0.3em;
    text-decoration-thickness: 0.8em;
    text-decoration-color: #FFFF00;
    text-decoration-skip-ink: none;
}

.ad-notice__text2 {
    font-size: 14px;
    margin: 10px 0;
    text-align: justify;
}

.ad-notice__text3 {
    font-size: 15px;
    margin: 10px 0;
    text-align: justify;
    font-weight: 600;
}

.ad-notice__link-area {
    text-align: end;
    margin: 10px 0;
    width: 100%;
}

.ad-notice__link {
    background-color: var(--alert);
    color: var(--white);
    border-radius: 100px;
    padding: 4px 16px;
    text-align: center;
}

.ad-notice__link--call {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    height: 30px;
    font-size: 16px;
    font-weight: 600;
}


span.fontBold {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}


html,
body {
    /* width: 100%;
    max-width: 100%; */
    overflow-x: hidden;
}

.obtained_coupons {
    width: 100%;
    background: #FFFCD5;
    text-align: center;
    vertical-align: center;
    align-items: center;
}

.obtained_coupons_btn {
    width: 70%;
    height: 56px;
    background: #D9527A;
    color: #ffffff;
    margin-top: 4%;
    margin-bottom: 4%;
    border-radius: 6px;
    font-size: 16px;
}

.image-badge {
    position: absolute;
    top: 16%;
    left: 16%;
    background-color: #D9527A;
    color: white;
    font-size: 12px;
    padding: 6px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 2;
}

.center-btn{
    padding: 4%;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font30 {
    font-size: 30px;
}

.font14 {
    font-size: 14px;
}

.font11 {
    font-size: 11px;
}


.scheduleCard__price {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.scheduleCard__price img {
  width: 19px;
  margin-right: 8px;
  flex-shrink: 0;
}

.scheduleCard__price .js-number {
  display: inline-block;
  min-width: 40px;
  text-align: right;
}

.obtained_coupons {
  position: relative;
}

.disabled{
    pointer-events: none; /* クリック無効 */
    filter: grayscale(100%); /* optional: 白黒化 */
}
p.waiting{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #5C37E2;
    padding-top: 2%;
    padding-bottom: 2%;
}
/* -----------------------------------------------------
    順番待ち
----------------------------------------------------- */

.waiting-notice{
    text-align: center;
    font-weight: bold;
}

img.callTeller__image{
  width: 100%;
  height: auto;
}

.userData__link {
    display: block;          /* ブロック化 */
    text-align: center;      /* 横中央 */
    color: #1a73e8;          /* 青 */
    text-decoration: underline;
    margin-top: 8px;
}

footer.footer {
    background: #F7F7F7;
}

/* -----------------------------------------------------
    精算金額の注意アラート
----------------------------------------------------- */


span.center {
    display: block;
    text-align: center;
}

.pointStatus__payLimit {
    display: block;
    width: 90%;
    font-size: 16px;
    text-align: center;
    color: #E53939;
    box-sizing: border-box;
    border: 1px solid #E53939;
}

.pointStatus__payLimit--over {
    font-size: 19px;
    font-weight: 700;
    border: 2px solid #ff6b6b;
    background-color: #FFF2F2;
    padding: 12px;
    width: 70%;
    border-radius: 8px;
}

.pointStatus {
    background-color: var(--white);
    box-sizing: border-box;
    padding: 5%;
}

.pointStatus__link, .payment_postpay-pricing__link ,.payment_point_reflection__link {
    width: 100%;
    display: inline-block;
    text-align: end;
    text-decoration: underline;
    color: #377BFF;
    font-size: 14px;
    padding: 5px 0;
    box-sizing: border-box;
    padding: 2%;
}


.divider {
    display: block;
    border-top: 1px solid #ff6b6b;
    margin: 1px 0;
}

span.pointStatus__title.center.font12 {
    font-weight: lighter;
    font-size: 0.9em;
}
span.text-small {
    font-size: 0.8em;
}

span.text-left {
    text-align: left;
    display: block;
}

.bank_pay_button{
    background: #E53939;
    color: #FFFFFF;
    padding: 4%;
    width: 90%;
}
.text-black{
    color: #333;
}
.inquiry_button {
    background: #492DB2;
    color: #FFFFFF;
    padding: 4%;
    width: 90%;
}
