@charset "UTF-8";

/** ===================================

基本

=================================== */

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    background-size: 9px;
}

a {
    transition: .3s;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

img{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    touch-callout:none;
    user-select:none;
}

/** ===================================

ナビ

=================================== */
.l-navbar {

    background-size: 9px;
}

.l-navbar .navbar-brand {
    /*color: #fff;*/
}

.l-navbar .navbar-brand:hover {
    /*color: #fff;*/
    opacity: .8;
}

.l-navbar .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, .8);
    font-weight: normal;
}

.l-navbar .navbar-nav .nav-item .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background-color: #3f4449;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-customer_name {
    font-size: 0.8em;
    width: 120px;
}


/** ===================================

ボタン

=================================== */

.btn-gray {
    color: #fff; /* ボタン内のテキスト色 */
    background-color: #999; /* 背景色 */
    border-color: #999; /* 枠線の色 */
}

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
    color: #fff;
    background-color: #888; /* ホバー時は少し濃い色に変更 */
    border-color: #888;
}

.btn-purple {
    color: #fff; /* ボタン内のテキスト色 */
    background-color: #5f38c3; /* 背景色 */
    border-color: #5f38c3; /* 枠線の色 */
}

.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active,
.btn-purple.active,
.open > .dropdown-toggle.btn-purple {
    color: #fff;
    background-color: #47249c; /* ホバー時は少し濃い色に変更 */
    border-color: #47249c;
}

/** ===================================

テキスト

=================================== */
.text-purple {
    color: #5f38c3;
}

.text-purple:hover,
.text-purple:focus,
.text-purple:active,
.text-purple.active {
    color: #47249c;
}

/** ===================================

ヘッダー

=================================== */
.l-header {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2d2d2d+0,515151+100 */
    background: #2d2d2d; /* Old browsers */
    background: -moz-linear-gradient(top, #2d2d2d 0%, #515151 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2d2d2d 0%, #515151 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2d2d2d 0%, #515151 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2d2d2d', endColorstr='#515151', GradientType=0); /* IE6-9 */

    color: #fff;

}

.l-header__container {
    width: 100%;
    color: #fff;
    padding: 50px 50px;
}

.l-header__container_sub {
    width: 100%;
    color: #fff;
    padding: 20px 20px;
}

.l-header__container_sub .page_title {
    font-size: 20px;
    /*font-weight: bold;*/
}

.l-header__container .catch {

    font-size: 40px;

    line-height: 1.6;
    text-align: center;

}


.l-header__container .desc {
    font-size: 18px;
    line-height: 1.8;
    padding: 0 80px;
    text-align: center;
}

.l-header__container .desc .name {
    font-size: 0.8em;
}


@media screen and (max-width: 900px) {
    .l-header__container .desc {
        padding: 0 10px;
    }

    .l-header__container .desc {
        font-size: 14px;
    }

}


@media screen and (max-width: 600px) {
    .l-header__container {
        padding: 30px 0;
    }

    .l-header__container .catch {
        font-size: 40px;
    }

    .l-header__container_sub {
        padding: 20px 10px;
    }

    .l-header__container_sub .page_title {
        font-size: 20px;
        /*font-weight: bold;*/
    }

}


/** ===================================

メイン

=================================== */


.l-main {
    min-height: calc(100vh - 140px);
}

/*@media screen and (max-width: 768px) {*/
/*    .l-main {*/
/*        min-height: calc(100vh - 140px);*/
/*    }*/
/*}*/


/** ===================================

フッタ

=================================== */
.l-footer {
    color: #FFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2d2d2d+0,515151+100 */
    background: #2d2d2d; /* Old browsers */
    background: -moz-linear-gradient(top, #2d2d2d 0%, #515151 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2d2d2d 0%, #515151 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2d2d2d 0%, #515151 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2d2d2d', endColorstr='#515151', GradientType=0); /* IE6-9 */

    padding: 25px;
}

@media screen and (max-width: 520px) {
    .l-footer {
        /*margin-top: 20px;*/
    }
}

@media screen and (max-width: 768px) {
    .l-footer {
        /*margin-top: 20px;*/
    }
}

.l-footer .copy {
    color: #FFF;
    font-size: 16px;
    margin: 0;

}


/** ===================================

エラー

=================================== */
ul.error_messages {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

ul.error_messages li {
    display: block;
    box-sizing: border-box;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    border-radius: .25rem;
    color: #721c24;
    font-weight: bold;
    background-color: #f8d7da;
}


/** ===================================

パンくず

=================================== */
.breadcrumb {
    padding: 1rem;
    background-color: #f8f8f8;
    margin-bottom: 0;
}


/** ===================================
placeholder
=================================== */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #CCC !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #CCC !important;
}

::placeholder { /* Others */
    color: #CCC !important;
}


/**
 * select2
 =========================== */
.select2-container--default .select2-selection--multiple {
    border: solid #e4e7ea 1px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e4e7ea;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    color: #5c6873;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 0;
    color: #5c6873;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    /*height: 35px;*/
}

/** ===================================

調整

=================================== */


.topic-box {
    min-height: 50vh;
}


.bg-own {
    background-color: #F2F2F2 !important
}

a {
    color: #37a1d6;
}

.text-purple {
    color: #6f42c1 !important;
}

.font-catch {
    font-family: 'Oswald', sans-serif;
}

.font-color-catch {
    color: #e4be09;
}

.grid-view .btn-dark table th a {
    color: #fff;
}


/**
 * search-card
 =========================== **/
.search-card {
    border-radius: 6px;
    background-color: #f6f6f6;
    padding: 30px 30px;
    margin-bottom: 15px;
}

.search-card__row {
    display: inline-flex;
    width: 100%;
}

.search-card__row .search-card__label {
    margin-bottom: 3px;
    margin-right: 10px;
}

.search-card__row .search-card__input {
    margin-right: 10px;
}

/**
 * form
 =========================== **/

div.required label.col-form-label:before {
    content: " *";
    color: red;
    margin-right: 5px;
}

.carousel-indicators li {
    border-radius: 50%;
    margin: 1px 3px;
    height: 10px;
    max-width: 10px;
    background-color: gray;
}

.carousel-indicators {
    position: static;
}

.carousel-control-prev {
    /*left: 0px;*/
    /*top: -17%;*/
    /*color: grey;*/
    /*z-index: 5;*/
    margin-bottom: 32px;
}

.carousel-control-next {
    /*right: 0px;*/
    /*color: grey;*/
    /*top: -17%;*/
    /*z-index: 5;*/
    margin-bottom: 32px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23grey' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23grey' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.plan-favorite .fa-star {
    color: #343a40 !important;
}

.bg-grey {
    background-color: grey;
}

.bg-grey-light {
    background-color: #c0c0c0;
}

/**
 * table関連
 */

.grid-view table th a {
    color: #212529;
}

.grid-view table th .btn-dark {
    color: #fff;
}

.circle-icon i {
    display: inline-block;
    background: #212529;
    /*color: #fff;*/
    /*border: solid 1px #fff;*/
    border-radius: 50%;
    padding: 0.3em; /* adjust padding */
    line-height: initial !important; /* reset line-height */
    height: 1rem;
    width: 1rem;
    z-index: 1;
}

.circle-icon i {
    margin: 0 auto;
    /*color: #fff;*/
    z-index: 10;
    background-color: white;

}

.border-btm-dark {
    border-bottom: 3px solid #343a40;
}

.enq-tab .enq-tab-item.show .enq-tab-link,
.enq-tab .enq-tab-link.active {
    border-color: #343a40 !important;
}

.enq-tab .enq-tab-link {
    border-radius: 0;
}

.enq-tab {
    padding-bottom: 10px;
}

/** カウンタ */
.enq-tab {
    counter-reset: count 0;
}
.enq-tab-item .enq-tab-link:before {
    content: "[" counter(count) "]";
    counter-increment: count 1;
    padding-right: 0.5em;
}

.enq-tab-item {
    font-size: 13px;
    display: table;
    width: 16.6%;
    min-height: 59px;
}


.enq-tab-link {
    display: table-cell;
    vertical-align: middle;

}
.enq-tab-item {
    background: #cccccc;
    position: relative;
    clip-path: polygon(0 0,80% 0, 100% 50%, 80% 100%,0 100%);
    -webkit-clip-path: polygon(0 0,80% 0, 100% 50%, 80% 100%,0 100%);
    margin-bottom: 10px;
}

.enq-tab-link {
    text-align: left;
    background: lightgrey;
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    padding-right: -12px;
    clip-path: polygon(0 0,80% 0, 99% 50%, 80% 100%,0 100%);
    -webkit-clip-path: polygon(0 0,80% 0, 99% 50%, 80% 100%,0 100%);
}

@media screen and (min-width: 769px) {

    /*.enq-tab {*/
    /*    min-height: 37px;*/
    /*}*/
    /*.enq-tab-link {*/
    /*     height: auto;*/
    /*     display: block;*/
    /*     min-height: 37px;*/
    /* }*/
    .enq-tab-link br {
        display: none;
    }


}

@media screen and (max-width: 520px) {
    .enq-tab-item {
        width: calc(100% / 3);
    }

    .enq-tab-link {
        /*height: auto;*/
        vertical-align: middle;
    }
}

.login-bg {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}

.log-form-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
}

@media screen and (max-width: 400px) {
    .log-form-area .log-info-area {
        height: 250px;
        overflow-y: scroll;
    }
}


.log-form-title {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.log-form-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.log-form-icon__search {
    position: absolute;
    left: -5px;
    top: 2px;
    font-size: 30px;
}

.log-form-icon__house {
    position: absolute;
    left: 2px;
    top: 11px;
    width: 8px;
    height: 8px;
}

.login_side {
    background-image: url(../images/login-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

.login_side img {
    max-width: 100%;
    /*max-height: 100px;*/
}

@media screen and (max-width: 670px) {
    .login_side {
        display: none;
    }
}


.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 24px;
    height: 22px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 20px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b6b6b6;
    border-radius: 2px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 10px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 520px) {
    .menu-trigger {
        margin-right: 0;
    }
}

.menu-trigger:focus {
    outline: none;
}

.toggle-nav-menu {
    display: none !important;
    margin-top: 10px;
    padding-bottom: 15px;
    box-sizing: content-box;
    height: calc(100vh - 90px);
    overflow-y: scroll;
}

.toggle-nav-menu::-webkit-scrollbar {
    visibility: hidden;
}

.toggle-nav-menu.active {
    display: block !important;
}

.header-title-area {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    box-sizing: border-box;
    height: 50px;

}

.header-title-area.active {
    background: rgb(149, 149, 149);
    background: linear-gradient(331deg, rgba(149, 149, 149, 1) 0%, rgba(102, 101, 101, 1) 100%);
    background-clip: padding-box;
}

.nav-fixed-origin {
    height: 50px;
    position: sticky; /*固定する*/
    position: -webkit-sticky; /*Safari用ベンダープレフィックス*/
    top: 0; /*ブラウザの上からの距離はゼロ*/
    z-index: 10;
}

.nav-fixed-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    background-color: #343a40;
}

@media screen and (max-width: 520px) {
    .nav-fixed-content {
        position: fixed;
        width: 100%;
    }
}

/* ヘッダ虫眼鏡 */
.nav-fixed-header-right {
    position: absolute;
    right: 18px;
    z-index: 20;
}

.nav-fixed-header-right .fa-search {
    font-size: 30px;
}

.nav-fixed-header-right:hover {
    cursor: pointer;
}

@media screen and (max-width: 520px) {
    .nav-fixed-header-right {
        position: fixed;

    }
}

/* ヘッダロゴ */
.nav-fixed-header-right-logo {
    position: absolute;
    right: 0;
    margin-right: 80px;
    z-index: 20;
}

.nav-fixed-header-right-logo img {
    max-height: 40px;
    max-width: 100px;
    border-radius: 10px;
    vertical-align: bottom;
}

@media screen and ( max-width: 765px) {
    .nav-fixed-header-right-logo {
        display: none !important;
    }
}


.header-search-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    color: #343a40;
    z-index: 25;
    overflow-y: auto;
    padding-bottom: 30px;
}

.search-top-area {
    align-items: center;
    height: 66px;

}

.search-top-right-buttons {
    margin-top: 20px;
}

.search-top-right-buttons .search-card__input {
    width: 180px;
    margin-right: 20px;
}

@media screen and (max-width: 520px) {
    .search-top-right-buttons .search-card__input {
        width: 140px;
    }

    .search-top-right-buttons {
        margin-top: 0;
    }
}

.close-search-menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}

.search-menu-modal .close-search-menu {
    top: 66px;
}


.close-search-menu:hover {
    cursor: pointer;
}

.close-search-menu-icon {
    font-size: 50px;
    height: 50px;
    line-height: 50px;
    width: 50px;
    display: inline-block;

}


.navbar-nav .nav-item {
    margin-left: 20px;
    color: rgba(255, 255, 255, .6);
    padding-right: 20px;
    box-sizing: border-box;

}

.navbar-nav .nav-item .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-top: 15px;
    padding-bottom: 15px;

}

.navbar-nav .nav-item .nav-link-last {
    border-bottom: none;
}


.navbar-nav .nav-item .nav-link .arrow-icon {
    /*float: right;*/
    padding-right: 10px;
    padding-left: 10px;
    color: #939292;
}


.carousel-indicators li {
    border-radius: 50%;
    margin: 1px 3px;
    height: 10px;
    max-width: 10px;
}

.foldtl {
    position: relative;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

.foldtl:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #C7C7C7;
    border-left: 60px solid transparent;
    -webkit-box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.3);
}

.foldtl.active:before {
    border-top: 60px solid #fff;

}

.foldtl:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 59px solid #F2F2F2;
    border-right: 59px solid transparent;
}

.plan-detail-title-area ,
.plan-index-title-area {
    position: relative;
}
.plan-detail-title-buttons,
.plan-index-title-buttons {
    right: 5px;
}

@media screen and (max-width: 960px) {
    .plan-detail-title-buttons,
    .plan-index-title-buttons {
        position: absolute;
        width: auto !important;
    }

    .plan-detail-title-buttons {
        right: 20px;
        top: 10px;
    }

    .plan-index-title-buttons {
        top:0;
        right: 10px;
    }
}

.plan-detail-img-area {
    width: 100%;
    aspect-ratio: 4 / 3;
}

/*@media screen and (max-width: 520px) {*/
/*    .plan-detail-img-area {*/
/*        width: 300px;*/
/*        height: 225px;*/

/*    }*/
/*}*/

/*@media screen and (min-width: 521px) and (max-width: 768px) {*/
/*    .plan-detail-img-area {*/
/*        width: 360px;*/
/*        height: 270px;*/
/*    }*/
/*}*/

/*@media screen and (min-width: 769px) and (max-width: 1024px) {*/
/*    .plan-detail-img-area {*/
/*        width: 480px;*/
/*        height: 360px;*/
/*    }*/
/*}*/

.email-form-area {
    /*width: 500px;*/
    /*height: 500px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*flex-direction: column;*/
}

.page-link {
    color: #343A40;
}

@media screen and ( max-width: 520px) {
    .page-link {
        padding: 0.5rem;

    }
}

.page-item.active .page-link {
    background-color: #343A40;
    border-color: #343A40;
}

.hit-number-area {
    font-weight: bold;
    font-size: 25px;
}

.hit-number {
    font-size: 35px;
    margin: 0 6px;
}

.page-number-area {
    font-size: 20px;
    margin-left: 2rem;
}

.page-number {
    margin: 0 6px;
}

.shared-group-item {
    border: 2px solid #D5D3D3;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #fff;
    font-size: 14px;

}

.shared-group-item .fa-times {
    color: #D5D3D3;
    margin-left: 5px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

.mypage-news-title {
    border-bottom: 2px solid #F2F2F2;
}

.pagination {
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.choice-view-area {

}

.choice-view-area li a {
    color: #C7C7C7;
    text-decoration: none;
}

.choice-view-area li a.active {
    color: #373A3D;
}

.gallery-panel-content.back {
    transform: rotateY(-180deg);
}

.gallery-panel-conent {
    /*-webkit-font-smoothing: antialiased;*/
    /*-webkit-backface-visibility: hidden;*/
    /*backface-visibility: hidden;*/
}

.plan-gallery-panel.active {
    transform: rotateY(180deg);
}

.plan-gallery-panel {
    position: relative;
    font-weight: bold;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.56, .56, .46, .47);
}

.plan-gallery-panel table tr {
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.plan-gallery-left-bottom {
    position: absolute;
    width: 59px;
    height: 59px;
    left: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0;
}

.search-menu-modal {
    /*position: fixed;*/
    left: 0;
    top: 69px;
    right: 0;
    bottom: 0;
    background: #fff;
    width: 100%;
    /*height: 100vh;*/
    /*overflow-y: scroll;*/
    z-index: 15;
    padding-bottom: 30px;
    margin-bottom: 50px;

}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

.search-modal-2-title {
    overflow: hidden;
    font-size: 16px;
}

.search-modal-2-title span {
    display: inline-block;
    padding: 0 0.5em 0 0;
    position: relative;
}

.search-modal-2-title span:after {
    border: none;
    height: 3px;
    background-color: #F2F2F2;
    content: "";
    position: absolute;
    top: 50%;
    width: 99em;
}

.search-modal-2-title span:after {
    left: 100%;
}

.square-radio-buttons input[type=checkbox] {
    display: none; /* ラジオボタンを非表示にする */
}

/*.square-radio-buttons label.active {*/
/*    background: #343A40; !* マウス選択時の背景色を指定する *!*/
/*    color: #ffffff; !* マウス選択時のフォント色を指定する *!*/
/*}*/

.square-radio-buttons .c-check {
    width: 32%;
    height: 45px; /* ボックスの高さを指定する */
    margin-bottom: 1rem;
    font-size: 11px;
}

.square-radio-buttons .c-check label {
    display: block;
    border: 2px solid #E6E6E6; /* ラベルの境界線を実線で指定する */
    color: #424447; /* フォントの色を指定 */
    line-height: 45px; /* 行の高さを指定する */
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    background-color: #F2F2F2;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.square-radio-buttons .c-check input:checked + label {
    background: #343A40; /* マウス選択時の背景色を指定する */
    color: #ffffff; /* マウス選択時のフォント色を指定する */
}

@media screen and (max-width: 520px) {
    .square-radio-buttons .c-check {
        width: 49%; /* ボックスの横幅を指定する */
    }

    .square-radio-buttons .c-check label {
        font-size: 9px;
    }
}


.search-modal-2-md-title {
    color: #707070;
    font-weight: 600;
    font-size: 14px;
}

.square-radio-buttons.d-flex.justify-content-between::after {
    display: block;
    content: '';
    width: 32%;
}

.square-search-1-checkbox label {
    display: block;
    border: 2px solid #E6E6E6; /* ラベルの境界線を実線で指定する */
    width: 140px; /* ボックスの横幅を指定する */
    height: 45px; /* ボックスの高さを指定する */
    color: #424447; /* フォントの色を指定 */
    line-height: 45px; /* 行の高さを指定する */
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    background-color: #F2F2F2;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    margin-right: 20px;
}


@media screen and ( max-width: 768px) {
    .square-search-1-checkbox label {
        margin-right: 10px;
    }

}

@media screen and ( max-width: 520px) {
    .square-search-1-checkbox label {
        width: 49%;
        margin-right: 0;
    }

}

.square-search-1-checkbox input[type=checkbox] {
    display: none; /* ラジオボタンを非表示にする */
}

/*.square-search-1-checkbox label.active {*/
/*    background: #343A40; !* マウス選択時の背景色を指定する *!*/
/*    color: #ffffff; !* マウス選択時のフォント色を指定する *!*/
/*}*/

.search-modal-submit-area {
    padding-bottom: 550px;
}

.breadcrumb-item a {
    color: #373A3B;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.search-top-area label {
    margin-bottom: 0;
}


.planbook-message-area {
    overflow-y: scroll;
    white-space: normal;
    min-height: 80px;
    border: 2px solid #E9E9E9;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 1000px;
}

@media screen and (max-width: 768px) {
    .planbook-message-area {
        width: 600px;
    }
}

@media screen and (max-width: 520px) {
    .planbook-message-area {
        width: 300px;
    }
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: #fff;
}

.dropdown-menu {
    left: -100px;
}

.global-nav-menu {
    position: absolute;
    left: 400px;
    font-size: 0.8em;
}

@media screen and ( max-width: 800px) {
    .global-nav-menu {
        display: none !important;
    }
}


.global-nav-menu a {
    color: #fff;
    padding: 5px 10px;
    margin-right: 20px;
    text-decoration: none;

}

.global-nav-menu span {
    color: #fff;
    padding: 5px 10px;
    margin-right: 20px;
    text-decoration: none;

}

.form-control {
    padding: .25rem .35rem;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
}


/*プラン一覧の画像モーダル*/

#bg {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 9;
}

#photo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#image-name {
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 15px;
}

@media (max-width: 767px) {
    #image-name {
        font-size: 13px;
        padding: 5px 15px;
    }
}

/*プラン一覧の画像サイズ*/

.carousel-inner-adjast:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.carousel-item-adjast {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #e9ecef;
}

.carousel-item-adjast > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*画像スライダーの矢印*/
.carousel-control-next, .carousel-control-prev {
    width: 10%;
}

/*矢印の色*/
.material-icons {
    color: #000000;
}


.flex-trend-box {
    width: 20%;
}

@media screen and ( max-width: 767px) {
    .flex-trend-box {
        width: 50%;
    }
}

.trend-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trend-img:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.trend-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}


/*物件詳細ページ*/
.plan_image_download_wrap {
    width: 100%;
    text-align: center;
}

.plan_image_download_btn {
    width: 40%;
    padding: 15px 0;
    border-radius: 30px;
}

@media screen and ( max-width: 767px) {
    .plan_image_download_btn {
        width: 70%;
    }
}

@media screen and (max-width: 520px) {
    .sp-none {
        display: none;
    }
}


/*スライダーの矢印クリックしたときの色*/
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #6c757d;
}

/*営業ストック・お気に入りのチェックボックス*/
.checkbox {
    display: none;
}

.checkbox-fontas {
    position: relative;
    vertical-align: middle;
    font-size: 33px;
}

@media (max-width: 768px) {
    .checkbox-fontas {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .checkbox-fontas {
        font-size: 25px;
    }
}

.checkbox + .checkbox-fontas:before {
    font-family: "Font Awesome 5 Free";
    content: '\f0c8';
}

.checkbox:checked + .checkbox-fontas:before {
    /*font-weight: 900;*/
    font-family: "Font Awesome 5 Free";
    content: '\f14a';
    color: #3399FF;
}

/*プラン詳細の履歴欄の調整*/
.history_td_width {
    width: 25%;
}

.stock-btn-area {
    border-width: 3px !important;
    cursor: pointer;
    height: 50px;
}

.sortable-icon {
    display: block;
    width: 30px;
}

.btn-favorite-operate {
    color: #fff;
    background-color: #0ba29a;
    border-color: #0ba29a;
}

.btn-favorite-operate.disabled {
    color: #fff;
    background-color: #0ba29a;
    border-color: #0ba29a;
}

@media screen and (max-width: 520px) {
    .btn-max-width {
        width: 100%;
    }
}

.nav-item .nav-link .arrow-icon .fas.none {
    display: none;
}

.nav-item .nav-account-lists.none {
    display: none;
    animation: hide 1s linear 1s;
}

.navbar-nav .nav-account-lists {
    display: block;
    animation: show 1s linear 0s;
}

@keyframes show {
    from {
        display: none;
    }
    to {
        display: block;
    }
}

@keyframes hide {
    from {
        display: block;
    }
    to {
        display: none;
    }
}

.navbar-nav .nav-account-lists .nav-account-item {
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 20px;
    box-sizing: border-box;
}

.navbar-nav .nav-account-lists .nav-account-item .account-sub-title {
    font-size: 13px;
    color: #00A1E9;
}

.slide-change-icon {
    font-weight: bold;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    background-color: rgb(0 0 0 / 38%);
    color: #fff;
}

.slide-change-icon.right-arrow {
    right: 40px;
}
.slide-change-icon.right-arrow:after {
    content: '>';
}

.slide-change-icon.left-arrow {
    left: 40px;
}
.slide-change-icon.left-arrow:after {
    content: '<';
}

@media screen and (max-width: 767px) {
    .slide-change-icon.right-arrow {
        right: 10px;
    }

    .slide-change-icon.left-arrow {
        left: 10px;
    }
}

@media screen and (max-width: 600px) {
    .plan-modal-img img {
        width: 300px;
    }
}
/*まとめてお気に入り★追加 Modalのcustomer-list表示のため*/
.ui-autocomplete {
    z-index: 1051;
}

.dropdown-item.selected {
    background-color: #2f353a;
    color: #fff;
}

/*公開アンケート・期間選択のフォームのアイコン*/
.modal-body .form-control.datepicker {
    background: url(../images/icon_calendar.png) no-repeat right ;
    background-position: right 10px center;
    background-size: 1rem;
}

.modal-body .form-search-control {
    background: none;
}

.login-form-label {
    color: #777;
    font-weight: 500;
}


@media (min-width: 576px) {
    .position-sm-static {
        position: static !important;
    }
    .position-sm-relative {
        position: relative !important;
    }
    .position-sm-absolute {
        position: absolute !important;
    }
    .position-sm-fixed {
        position: fixed !important;
    }
    .position-sm-sticky {
        position: sticky !important;
    }
}

@media (min-width: 768px) {
    .position-md-static {
        position: static !important;
    }
    .position-md-relative {
        position: relative !important;
    }
    .position-md-absolute {
        position: absolute !important;
    }
    .position-md-fixed {
        position: fixed !important;
    }
    .position-md-sticky {
        position: sticky !important;
    }
}

@media (min-width: 992px) {
    .position-lg-static {
        position: static !important;
    }
    .position-lg-relative {
        position: relative !important;
    }
    .position-lg-absolute {
        position: absolute !important;
    }
    .position-lg-fixed {
        position: fixed !important;
    }
    .position-lg-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1200px) {
    .position-xl-static {
        position: static !important;
    }
    .position-xl-relative {
        position: relative !important;
    }
    .position-xl-absolute {
        position: absolute !important;
    }
    .position-xl-fixed {
        position: fixed !important;
    }
    .position-xl-sticky {
        position: sticky !important;
    }
}

.overflow-scroll {
    overflow-x: scroll;
}
.horizontal-tb{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    writing-mode: vertical-lr;
    text-align: right;
}
.horizontal-tb th{
    text-align: left;
}
.horizontal-tb th, .horizontal-tb td{
    writing-mode: horizontal-tb;
}
.horizontal-tb-striped th:nth-child(2n), .horizontal-tb-striped td:nth-child(2n) {
    background-color: rgba(0, 0, 0, 0.05);
}

.help-btn {
    float: right;
    margin-top: -3em;
    margin-right: 1rem;
    color: white !important;
}
.layout--help-block {
    position: absolute;
    top: 80px;
    left: auto;
    right: 15px;
    width: 450px;
}
.help-link {
    cursor: pointer;
}
.help-block-body, .help-block-body-search-wait, .help-block-body-search-result {
    min-height: 70vh;
}
.help-block-body-search-wait .spinner-area {
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}
.help-block-body-search-wait .spinner-border {
    width: 3rem;
    height: 3rem;
}
.help-filter-btn, .help-filter-clear-btn {
    cursor: pointer;
}
.help-link div {
    display: table-cell;
    vertical-align: middle;
}
.help-block-footer {
    background-color: gray;
}
.ai-recommend-area {
    background-color: #f9f5bf;
}

.feature-tag-area .feature-tag-item {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 400;
    border: 1px solid #afafb0;
    border-radius: 0.5em;
    margin: 2px 3px;
    padding: 2px 3px;
    height: 28px;
    line-height: 24px;
}

.enquete_analyzing {
    font-weight: bold;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.similar-group-tag {
    white-space: nowrap;
    background-color: #353434;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #afafb0;
    border-radius: 0.5em;
    box-sizing: border-box;
    line-height: 24px;
    padding: 2px 6px;
    display: inline-block;
    height: 28px;
}

.target-pointer:hover {
    cursor: pointer;
}

.bg-lightGray {
    background-color:#B5B6B7 !important;
}

.modal-tag-area {
    width: 300px;
}

.delivery-collection-add-btn {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.btn__ex {
    background: rgb(255,150,39);
    background: linear-gradient(30deg, rgba(255,150,39,1) 0%, rgba(240,70,40,1) 60%, rgba(240,70,40,1) 100%);
    color: white; /* 文字色 */
    padding: 10px 30px; /* ボタンのパディング */
    border: none; /* 枠線をなくす */
    border-radius: 4px; /* 角を丸く */
    font-size: 16px; /* 文字のサイズ */
    font-weight: bold; /* 文字を太く */
    cursor: pointer; /* ホバー時のカーソルを指マークに */
    display: inline-block;
    text-align: center;
}

.btn__ex:hover {
    color: white; /* 文字色 */
    text-decoration: none; /* 下線を消す */
    background: rgb(255,150,39);
    background: linear-gradient(210deg, rgba(255,150,39,1) 0%, rgba(240,70,40,1) 60%, rgba(240,70,40,1) 100%);
}

.btn__ex2 {
    background: rgb(64,201,136);
    background: linear-gradient(30deg, rgba(64,201,136,1) 0%, rgba(0,143,117,1) 70%, rgba(0,143,117,1) 100%);
    color: white; /* 文字色 */
    padding: 10px 30px; /* ボタンのパディング */
    border: none; /* 枠線をなくす */
    border-radius: 4px; /* 角を丸く */
    font-size: 16px; /* 文字のサイズ */
    font-weight: bold; /* 文字を太く */
    cursor: pointer; /* ホバー時のカーソルを指マークに */
    display: inline-block;
    text-align: center;
}

.btn__ex2:hover {
    color: white; /* 文字色 */
    text-decoration: none; /* 下線を消す */
    background: rgb(64,201,136);
    background: linear-gradient(210deg, rgba(64,201,136,1) 0%, rgba(0,143,117,1) 70%, rgba(0,143,117,1) 100%);
}

.mypage-site-btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 35%);
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    text-align: center;
    align-items: stretch;
    word-break: break-all;
}
.mypage-site-btn-grid a {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mypage-site-btn-grid a p {
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 820px) {
    .mypage-site-btn-grid{
        display: block;
    }
    .mypage-site-btn-grid a {
        margin-bottom: 1rem;
    }
}


/* ==============================================================
   border‑box‑nav  ――  レスポンシブ対応タブ（薄い線 & 1 px）
   -------------------------------------------------------------- */

/* ―― 共通カラーを変数風にまとめておくと調整しやすい ―― */
:root{
    --bbn-border: 1px solid #ced4da;   /* 薄いグレー ＝ Bootstrap card と同色 */
}

/* ---------- UL ---------- */
.border-box-nav{
    display:flex;
    flex-wrap:wrap;                /* 狭くなれば自動折返し           */
    padding:0;margin:0;list-style:none;
    border:var(--bbn-border);      /* 外枠                           */
    border-radius:.25rem;
}

/* ---------- LI ---------- */
.border-box-nav .nav-item{
    flex:1 1 auto;                 /* 幅を均等配分（縮小可）          */
    min-width:110px;               /* 極端に潰れないように（任意）    */
    position:relative;             /* 仕切り線の基点                  */
}

/* 縦仕切り線（横並び時のみ表示） */
.border-box-nav .nav-item + .nav-item::before{
    content:'';
    position:absolute;
    left:0;top:0;bottom:0;
    width:1px;
    background:#ced4da;            /* 外枠と同じ薄さ                 */
}

/* ---------- A タグ ---------- */
.border-box-nav .nav-link{
    display:block;
    text-align:center;
    padding:.45rem 1rem;
    text-decoration:none;
    color:#000;
    font-weight:400;               /* 太字オフ                        */
    /* ★ 下線は付けない：外枠と二重になるのを防ぐ                  */
    border:none;
}

/* アクティブ */
.border-box-nav .nav-link.active{
    background:#9fa1a4;
    color:#fff;
}

/* ホバー（任意） */
.border-box-nav .nav-link:not(.active):hover{
    background:#f8f9fa;
}

/* ---------- スマホ幅：縦並び ---------- */
@media (max-width:575.98px){
    .border-box-nav{
        flex-direction:column;
    }
    /* 縦線は不要 */
    .border-box-nav .nav-item + .nav-item::before{
        display:none;
    }
    /* 横仕切り線（li の下）―― 最後の要素以外に付与 */
    .border-box-nav .nav-item:not(:last-child)::after{
        content:'';
        position:absolute;
        left:0;right:0;bottom:0;
        height:1px;
        background:#ced4da;
    }
}
