@charset "UTF-8";
/**
 * カスタマイズ CSS
 *
 * @var 2022-04-10
 */

/* bootstrap を使わないとき
.d-none {
    display: none !important;
}
*/

/*******************************************************************************
    color
*******************************************************************************/

svg {
    fill: #aaa;
}

svg.fill-white {
    fill: #fff;
}

.icon-fa-up-right-from-square {
    position: relative;
    top: -1px;
}

/*******************************************************************************
    bootstrap 5.1.3
*******************************************************************************/

/* sm スマートフォン */
@media (max-width: 575.98px) { }

/* md タブレット */
@media (min-width: 576px) { }
@media (max-width: 767.98px) { }
@media (min-width: 576px) and (max-width: 767.98px) { }

/* lg PC 狭め */
@media (min-width: 768px) { }
@media (max-width: 991.98px) { }
@media (min-width: 768px) and (max-width: 991.98px) { }

/* xl PC 標準 */
@media (min-width: 992px) { }
@media (max-width: 1199.98px) { }
@media (min-width: 992px) and (max-width: 1199.98px) { }

/* xxl PC 広め */
@media (min-width: 1200px) { }
@media (max-width: 1399.98px) { }
@media (min-width: 1200px) and (max-width: 1399.98px) { }

/* xxl PC 全開 */
@media (min-width: 1400px) { }

@media (max-width: 1100px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
}

/* html
-----------------------------------------------------*/

/* 固定ヘッダーバー */
body.has-fixed-header {
    padding-top: 56px;
}

body {
    padding-top: 60px;
}

@media (max-width: 991px) {
    #header-main .navbar-dark .navbar-nav .nav-link {
        color: rgba(0,0,0,.55);
    }
}

/*---------------------------------------------------------------------------
    間隔
---------------------------------------------------------------------------*/
h1:first-child ,
h2:first-child ,
h3:first-child ,
h4:first-child ,
h5:first-child ,
h6:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

/*---------------------------------------------------------------------------
    画像
---------------------------------------------------------------------------*/

.img-square {
    object-fit: cover;
}

.img-square-120 { width: 120px; height: 120px; }
.img-square-128 { width: 128px; height: 128px; }


/*---------------------------------------------------------------------------
    フォーム
---------------------------------------------------------------------------*/

.input-group .form-control-plaintext ,
.col-preview .form-control-plaintext {
    display: inline-block;
    width: auto;
}

.input-group-preview .input-group-text {
    background-color: transparent;
    border-width: 0;
}

.input-group-preview .input-group-text-before {
    padding-left: 0;
}

.input-group-preview .input-group-text-after {
    padding-right: 0;
}


/*******************************************************************************
    2カラム
*******************************************************************************/

/* メインカラム
-----------------------------------------------------*/

@media (max-width: 767.98px) {
    .container-main-col2 > aside {
        margin-top: 1em;
    }
}

@media (min-width: 768px) {
    .container-main-col2 {
        display: flex;
        flex-flow: row-reverse;
        gap: 0 20px;
        margin-left: -.75rem;
    }

    .container-main-col2 > main {
        flex: 1 1 auto;
        padding-bottom: 3em;
    }

    .container-main-col2 > aside {
        flex: 0 0 260px;
        background-color: #f8f9fa;
    }
}


/*******************************************************************************
    form
*******************************************************************************/

/* 任意 / 必須 / 使用有無付き入力欄
-----------------------------------------------------*/
.optional:after ,
.required:after ,
.use-input-label:after {
    font-size: 12px;
    font-weight: normal;
    margin-left: .25em;
    margin-right: .25em;
    letter-spacing: 0;
}

/* 任意 */
.optional:after {
    content: '【任意】';
    color: #555;
}

/* 必須 */
.required:after {
    content: '【必須】';
    color: #f00;
}

/* 使用有無付き入力欄 */
.use-input-label:after {
    content: '【使用する場合、チェックして入力】';
    color: darkorange;
}

/* flatpickr
-----------------------------------------------------*/
/* 日曜日：赤 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7n + 1),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n + 1) {
    color: #f00;
}

/* 土曜日：青 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n) {
    color: #00f;
}

/* 年月を入れ替え */
.flatpickr-current-month {
  display: flex;
  justify-content: center;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    order: 2;
}

.flatpickr-current-month .numInputWrapper {
    order: 1;
    width: 86px;
}

.flatpickr-current-month .numInputWrapper span {
    opacity: 1;
}

.flatpickr-current-month .numInputWrapper:after {
    content: '年';
    position: absolute;
    top: 5px;
    right: 18px;
}

/* 年月を太字 */
.flatpickr-current-month .flatpickr-monthDropdown-months ,
.flatpickr-current-month .numInputWrapper ,
.flatpickr-current-month .numInputWrapper input {
    font-weight: bold;
}

/*******************************************************************************
    utility
*******************************************************************************/

/*
    <button type="button" id="btn-save-settings" class="btn btn-primary">
        <span class="spinner-border spinner-border-sm" aria-hidden="true"></span>
        <span role="status">保存</span>
    </button>
 */
.btn:not(:disabled) {
    > .spinner-border ,
    > .spinner-grow {
        display: none;
    }
}

/* iframe video
-----------------------------------------------------*/
.iframe-auto-size,
.iframe-auto-size-16x9 {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.iframe-auto-size iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ===================================================================
  Action Bar（フロント共通）
=================================================================== */
.action-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1030; /* ハンバーガーメニュー考慮 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 70px 8px 12px;
    }

    .btn-icon {
        padding: 0;
        min-width: auto;
    }

    .btn-icon:hover {
        svg {
            fill: #0d6efd;
        }
    }

    /* 左端アイコン */
    .action-left {
        display: flex;
        gap: 0.5rem;
    }

    /* 中央ボタン群 */
    .action-center {
        position: relative;
        flex: 1;
        text-align: center;
        line-height: 1;
        .page-title {
            display: inline-block;
            font-size: 22px;
            font-weight: bold;
            line-height: 1;
            margin: 0;
            span {
                line-height: 1;
            }
        }

        .btn-prev {
            display: inline-block;
            margin: 0 20px 0 0;
        }

        .btn-next {
            display: inline-block;
            margin: 0 0 0 20px;
        }
    }

    /* 右端スペース（ハンバーガーメニュー用） */
    .action-right {
        /* width: 104px; /* ハンバーガーの幅分だけ空ける */
        flex-shrink: 0;
        text-align: center;
        line-height: 1;

        .btn {
            min-width: 90px;
        }
    }

    /*
    .action-left {
        background-color: #ffffe0;
    }
    .action-center {
        background-color: #d8bfd8;
    }
    .action-right {
        background-color: #e0ffff;
    }
    */
}

@media (max-width: 576px) {
    .action-bar {

        .action-center {
            .page-title {
                font-size: 14px;
                line-height: 1.2;
            }

            .btn-prev ,
            .btn-next {
                position: absolute;
                top: 20px;
                top: 0;
                margin: 0;
                padding: 0 8px;
                line-height: 1;
            }

            .btn-prev {
                left: 0;
            }

            .btn-next {
                right: 0;
            }
        }

        .action-right {
            position: relative;
            .btn {
                min-width: auto !important;
            }
        }
    }
}

/* カレンダーページ */
.page-reservation-calendar {

    @media (max-width: 670px) {
        #calendar-title {
            /*
            font-size: 18px !important;
            */
        }
    }

    @media (max-width: 576px) {
        .action-bar {
            .action-center {
            }
            .action-right {
                /*
                width: 52px;

                #calendar-title {
                    position: absolute;
                    top: 33px;
                    left: 120px;
                    font-size: 12px !important;
                    margin: 0 !important;
                }
                .btn-prev ,
                .btn-next {
                    position: relative;
                    top: -5px;
                    padding-top: 3px;
                    padding-bottom: 3px;
                }
                */
            }
        }
    }
}

/* ドロップダウンメニューをマウスオーバーで開く
******************************************************
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* トップ見出し
******************************************************
.jumbotron {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* 複数行対応パンクズ
******************************************************

.breadcrumbs .breadcrumb:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
}

.breadcrumb {
    background-color: transparent;
}

/* テーブルの罫線を消す
******************************************************
.table-no-border th ,
.table-no-border td {
    border-width: 0
}

/* 上に戻るボタン
******************************************************
#to-page-top {
    position: fixed;
    bottom: -50px;
    right: 50px;
    line-height: 1;
    z-index: 1;
}
#to-page-top a {
    display: block;
    font-size: 50px;
}

/* フォーム
******************************************************
*/
/*
select.form-control {
    width: auto;
    display: inline-block;
}

.after-text {
    margin-left: .5em;
}

/* 入力画面、年月日 *
.date-ymd {
    display: inline-block;
}
.date-ymd .input-wrap {
    margin-left: 1em;
}
.date-ymd .input-wrap:first-child {
    margin-left: 0;
}

/* 確認画面、チェックボックスコンポーネント *
.box-group .preview:before {
    content: '/';
    margin-left: 1em;
    margin-right: 1em;
}
.box-group .preview:first-child:before {
    content: '';
    margin-left: 0;
    margin-right: 0;
}


/* フォームスタイル / デフォルト
******************************************************
.form-style-default {

}

.form-style-default .control-label {
    font-weight: bold;
}

@media (min-width: 768px) {

    .form-style-default .control-label {
        text-align: right;
    }

}



/* ログインフォーム
******************************************************
.form-signin {
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.form-signin .form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-signin .form-label-group > input,
.form-signin .form-label-group > label {
    height: 3.125rem;
    padding: .75rem;
}

.form-signin .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    cursor: text;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.form-signin .form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-signin .form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-signin .form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-signin .form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-signin .form-label-group input::placeholder {
    color: transparent;
}

.form-signin .form-label-group input:not(:placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-signin .form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

/* Fallback for Edge
-------------------------------------------------- *
@supports (-ms-ime-align: auto) {
    .form-signin .form-label-group > label {
        display: none;
    }
    .form-signin .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

/* Fallback for IE
-------------------------------------------------- *
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-signin .form-label-group > label {
        display: none;
    }
    .form-signin .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}




/* 設定したテキストをコピーして target に貼り付ける
******************************************************
.aulta-action-copy:hover {
    cursor: pointer;
    text-decoration: underline;
}


/* パスワードのトグル表示
******************************************************
.aulta-action-toggle-password {
    position: relative;
    display: inline-block;
}

.aulta-action-toggle-password input[type="password"] + .toggle-button .bi-eye ,
.aulta-action-toggle-password input[type="text"] + .toggle-button .bi-eye-slash {
    display: none;
}

.aulta-action-toggle-password .toggle-button {
    position: absolute;
    top: 50%;
    right: 1px;
    margin-top: -13px;
    background-color: transparent;
    border: 0;
}


/* フッター
******************************************************

.copyrights-block {
    background-color: #f5f5f5;
    padding: 1em;
    margin-top: 3em;
}



/*************************************************************************
    アプリコンポーネント : YouTube動画
*************************************************************************
.app-com-youtube-video {
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0px;
    position: relative;
}
.app-com-youtube-video iframe {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*************************************************************************
    アプリコンポーネント : SNSシェアボタン
*************************************************************************

.app-com-sns-buttons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: right;
    height: 22px;
}
.app-com-sns-buttons ul li {
    display: inline-block;
    margin: 0 0 0 .5em;
    padding: 0;
    line-height: 1;
    vertical-align: top;
}


/*************************************************************************
    アプリコンポーネント : Googleマップ
*************************************************************************

.a-com-google-map {
    margin: 1em 0;
}

.a-com-google-map iframe {
    box-sizing: border-box;
    display: block;
    border: 0;
    width: 100%;
    height: 300px;
}


/*************************************************************************
    モーダル
*************************************************************************

@media (min-width: 768px) {

    #modal-menu ,
    #modal-search {
        display: block;
        opacity: 1;
        width: 370px;
        height: auto;
        position: fixed;
        top: 68px;
        box-shadow: 0 10px 20px #555;

        .modal-dialog {
            transform: none;
            margin: 0;
        }

        .modal-content ,
        .list-group-item {
            background-color: transparent;
        }

        .modal-body {
            max-height: calc(100svh - 68px - 47px - 30px);
            overflow: auto;

            h2 {
                font-size: 22px;
            }
        }
    }

    #modal-menu:hover ,
    #modal-search:hover {
        .modal-content {
            background-color: #fff;
        }
    }

    #modal-menu {
        left: calc(50% + (400px / 2) + 50px);
    }

    #modal-search {
        left: calc(50% - (400px / 2) - 370px - 50px);
    }

    #bottom-navi .col:nth-child(1) ,
    #bottom-navi .col:nth-child(2) {
        display: none;
    }
}

/*************************************************************************/









