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

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

svg {
    fill: #aaa;
}

.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) { }



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

body {

    /* 固定ヘッダーバー */
    padding-top: 56px;
}

@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: -ms-flexbox; /* IE11とIE10対応 */
        display: flex;
        flex-flow: row-reverse; /* 左右入れ替え */
        gap: 0 20px; /* 行・列の間隔 */
        margin-left: -.75rem;
    }

    .container-main-col2 > main {
        -ms-flex-positive: 1; /* IE10対応 */
        flex: 1 1 auto;
        padding-bottom: 3em;
    }

    .container-main-col2 > aside {
        width: 260px; /* IE10対応 */
        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
*******************************************************************************/

/* 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%;
}


/* ドロップダウンメニューをマウスオーバーで開く
******************************************************
.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;
}

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









