@charset "UTF-8";

/*----------------------------------------------------------
	bootstrapカスタマイズ
--------------------------------------------------------- */
html {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif!important;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    color: #333;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif!important;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    color: #333;

}

.tooltip {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif!important;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    color: #333;
}

.popover {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif!important;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    color: #333;
}

.form-control::placeholder {
    color: #C7C7C7;
}

.btn {
    border-radius: 4px;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: .3s;
}

.form-label {
    font-weight: bold;
}

.form-label span {
    color: #1E1E1E;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 5px;
}

.btn-main {
    color: #FFF;
    background-color: #0047BB;
}

.btn-main:hover {
    color: #FFF;
    background-color: #0047BB;
    opacity: .8;
}

.btn-second {
    color: #FFF;
    background-color: #BB0E00;
}

.btn-second:hover {
    color: #FFF;
    background-color: #BB0E00;
    opacity: .8;
}

.btn-re {
    color: #FFF;
    background-color: #333;
    width: 130px;
}

hr {
    color: #858585;
    margin: 0 calc(50% - 50vw);
}

.form-check-input:checked {
    background-color: #0047BB;
    border-color: #0047BB;
}

.invalid-feedback {
    color: #E4002E;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    color: #E4002E;
}

/*----------------------------------------------------------
	見出し.h-style
--------------------------------------------------------- */
.h-style1 {
    color: #0047BB;
    font-size: 20px;
    font-weight: 600;
}

.h-style2 {
    color: #0047BB;
    font-size: 18px;
    font-weight: 600;
}

.h-style3 {
    color: #BB0E00;
    font-size: 18px;
    font-weight: 600;
}

.h-style4 {
    font-size: 18px;
    font-weight: 700;
    padding: 6px 10px;
    margin-bottom: 30px;
    border-left: 6px solid #0047BB;
}

.h-style5 {
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: 700;
    border-bottom: 2px solid #0047BB;
}

.h-style6 {
    font-size: 18px;
    font-weight: bold;
    padding: 4px 0  4px 10px;
    border-left: 6px solid #0047BB;
    margin-bottom: 1rem;
}

.h-style7 {
    color: #0047BB;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    gap: 1em;  /* 線とテキストの間隔 */
}

.h-style7::before,
.h-style7::after {
    content: '';
    height: 3px;
    background: #4c9ac0;
    flex-grow: 1;  /* 残りのスペースを埋めるように伸縮 */
    max-width: 100％;  /* 線の最大長を制限（必要に応じて調整） */
}

.hr {
    background-color: #C7C7C7;
    height: 2px;
    margin-bottom: 1.5rem;
}
/*----------------------------------------------------------
	背景色.bg-
--------------------------------------------------------- */
.bg-main {
    background-color: #0047BB;
}

.bg-gray {
    background: #EDEFF4;
}

/*----------------------------------------------------------
	navigation
--------------------------------------------------------- */
.overlay {
    display: none;
    position: fixed;
    background: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .7s;
}

.overlay {
    z-index: 1000;
}

.open .overlay {
    display: block;
}


/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 89px;
    padding-left: 0;
    clear: both;
    background: #FFF;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index: 100;
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #333;
    opacity: 0;
    transition: 0.5s;
    padding: 16px;
    display: block;
}

.menu .menu-in {
    border-top: 1px solid #858585;
    opacity: 0;
    transition: 0.5s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu .menu-in.arrow,
.menu-acco,
#links01 li, .link-arrow a {
    position: relative;
}

.menu .menu-in.arrow a::after,
#links01 li a::after, .link-arrow a::after {
    content: "\F285";
    font-family: bootstrap-icons;
    font-weight: bold;
    width: 1.4em;
    height: 1.4em;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(17%) sepia(70%) saturate(3800%) hue-rotate(212deg) brightness(92%) contrast(103%);
}

.menu .menu-in.arrow.up-right a::after {
    content: "\F1C5";
}

.menu-acco::after {
    content: "";
    width: 1.4em;
    height: 1.4em;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/svg/ico_toggle_p.svg);
    filter: invert(94%) sepia(6%) saturate(25%) hue-rotate(197deg) brightness(105%) contrast(105%);
}

.menu-btn.show:checked+.menu-acco::after {
    background-image: url(../img/svg/ico_toggle_m.svg);
}

.menu-btn {
    display: none;
}

.menu-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -19px;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
    background-color: #FFF;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.member .navicon {
    background-color: #FFF;
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #FFF;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.member .navicon:before,
.member .navicon:after {
    background-color: #fff;
}

.navicon:before {
    top: 9px;
}

.navicon:after {
    bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
    top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.nav-h {
    background-color: #2F4262;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    padding: 6px 10px;
}

.logo-area {
    padding-top: 30px;
    padding-bottom: 12px;
}

.logo-area .img-fluid {
    height: 47px;
}

.main-area {
    margin-top: 89px;
    padding-top: 1.5rem;
    margin-bottom: 40px;
}

.account {
    padding-top: 30px;
}

.error-text {
    color: #E4002E;
    font-size: 12px;
}

span.label-g {
    color: #858585;
    font-size: 14px;
    display: block;
}

.ol-safe {
    padding-left: 1.3rem;
}

.ol-safe li > ol {
    padding-left: 2rem;
}

.ol-safe li > ol li {
    list-style-type: none;
    counter-increment: cnt;
}

.ol-safe li > ol li::before {
    content: "(" counter(cnt) ")";
    display:inline-block;
    margin-left: -2.5rem;
    width: 2.5rem;
    text-align: center;
}

.card {
    border-radius: 20px;
}

.card > .list-group {
    border-top: transparent;
    border-bottom: transparent;
    padding: 0 16px;
}

.list-group-item {
    color: #333;
    background-color: #E2EDFF;
    border: none;
    padding: 0 16px;
}

.list-group-item.active {
    background-color: #2F4262;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    padding: 7px 0 8px;
}

/* 未払い */
.unpaid .list-group-item.active {
    background-color: #E4002E;
    
}

.unpaid .list-group-item {
    background-color: #FFF;
}

.list-group-flush > .list-group-item:last-child {
    padding-bottom: 16px;
}

.list-inner {
    display: flex;
    align-items: center;
    font-weight: 500;
    border-bottom: 1px solid #858585;
    padding: 10px 0;
}

.list-inner.red {
    border-bottom: 4px double #858585;
}

.list-inner.red, .list-inner.red span:first-child {
    color: #E4002E;
}

.list-inner.red span:first-child {
    font-weight: bold;
    font-size: 18px;
}

.list-inner.red span {
    font-weight: bold;
    font-size: 18px;
}

.list-inner span:first-child {
    color: #858585;
    font-size: 12px;
    font-weight: 400;
    width: 100px;
    margin-right: 20px;
}

.list-inner.red .price {
    width: 115px;
}

.list-inner .price {
    width: 115px;
    text-align: right;
}


.card-header {
    background-color: #0047BB;
    padding: 1rem;
}

.card-header:first-child {
    border-radius: 20px 20px 0 0;
}

.syomei-cd {
    color: #FFF;
    display: flex;
    font-size: 14px;
    font-weight: bold;
}

.inner-seaf {
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    display: flex;
}

.inner-seaf span:first-child {
    font-size: 12px;
    font-weight: 400;
    width: 3rem;
}

.amount {
    color: #FFF;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
}

.conf {
    display: flex;
    align-items: center;
    justify-content: center;
}

.conf::before, .conf.not-conf::before {
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    border: 1px solid #FFF;
    border-radius: 4px;
    padding: 3px 6px;
    margin-right: 10px;
}

.conf::before {
    content: "確定";
}

.conf.not-conf::before {
    content: "未確定";
}

.conf::after {
    content: "円";
    font-size: 18px;
    font-weight: 400;
    margin-top: 6px;
    margin-left: 5px;
}

.not_amount {
    color: #FFF;
    font-weight: bold;
    font-size: 18px;
    padding: 8px;
}

.card-cat {
    font-size: 14px;
    font-weight: bold;
    padding: 16px 0;
}

.card-title {
    color: #0047BB;
    font-size: 16px;
    font-weight: bold;
}

.list-msg {
    color: #FFF;
    background-color: #0047BB;
    text-align: center;
    padding: 7px 0 8px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.list-msg span {
    font-size: .9rem;
    font-weight: normal;
    display: block;
}

.list-single {
    text-align: center;
}

.single-error {
    color: #E4002E;
    margin-bottom: 1rem;
    font-size: .875em;
    border: 1px solid #E4004E;
    padding: 6px 1rem;
    border-radius: 5px;
}

.comp-area {
    color: #3d9d22;
    margin-bottom: 1rem;
    font-size: .875em;
    border: 1px solid #3d9d22;
    padding: 6px 1rem;
    border-radius: 5px;
}

.collapse-inner {
    padding: 16px;
}

.more-box {
    background-color: #E2EDFF;
    padding: 16px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.more-btn {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    background-color: #FFF;
    padding: 8px 32px;
    display: inline-block;
    border-radius: 17px;
}

/* カルーセル */
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-left: 0;
}

.dots-wrap li {
    width: 12px;
    height: 12px;
    margin: 0 12px;
    background: #858585;
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #0047BB;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.link-txt {
    color: #333;
    /* font-size: clamp(0.7rem, 2.5vw, 1rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.link-txt:hover {
    text-decoration: none;
}

.link-txt .kaigyo {
    display: none;
}
@media (max-width: 400px) {
    .link-txt .kaigyo {
        display: block;
    }
}