@charset "UTF-8";
/**
* Creative Net Door.
* Basic Css Reset Formatter
**/

.tab-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.btn {
    /*flex-basis: 30%;*/
    text-align: center;
}
.btn a {
    display: block;
    position: relative;
    font-size: 16px;
    padding: 8px;
    text-decoration: none;
    line-height: 1.2;
    color: #181716;
    background-color: #fff;
    cursor: pointer;
}
.btn a.active {
    background-color: #ececec;
}

/* クチコミ一覧ボタン */
.btn-ichiran {
    transition: all 0.3s ease;
    border: 1px solid #25ACE5;
    background-color: #ffffff;
    color: #626262 !important;
    border-radius: 10rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    width: auto;
    text-decoration: none !important;
}
.btn-ichiran:hover {
    opacity: 0.6;
    border-color: #25ACE5;
    color: #626262 !important; /* 文字色は維持（またはお好みで） */
}
.ichiran {
    display: block;
    height: 80px;
    margin-top: -80px;
    visibility: hidden;
    pointer-events: none;
}

.tab-contents-item {
    display: none;
    width: 100%;
    height: auto;
    /*justify-content: center;*/
    padding: 15px;
}
.tab-contents-item.active {
    display: flex;
    background-color: #F4F6F7;

}
.tab-contents-item>p {
    margin: auto;
    height: 40px;
    opacity: 0;
}
.tab-contents-item.active>p {
    animation:  fadeinAnime 2s forwards;
}

.tab-contents-item2 {
    display: none;
    width: 100%;
    height: 600px;
    /*justify-content: center;*/
    padding: 15px;
}
.tab-contents-item2.active {
    display: flex;
    background-color: #F4F6F7;

}
.tab-contents-item2>p {
    margin: auto;
    height: 40px;
    opacity: 0;
}
.tab-contents-item2.active>p {
    animation:  fadeinAnime 2s forwards;
}

@keyframes fadeinAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.radio-3 {
    border: none;
}

.radio-3 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 200px;
    margin-bottom: .4em;
    padding: .5em .7em;
    border: 1px solid #0b13f9;
    border-radius: 3px;
    background-color: #0b13f926;
    cursor: pointer;
}

.radio-3 label:has(:checked) {
    background-color: #0b13f9;
    color: #fff;
}

.radio-3 label::before,
.radio-3 label:has(:checked)::after {
    border-radius: 50%;
    /*content: '';*/
}

.radio-3 label::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.radio-3 label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: calc(7px + .7em);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: #0b13f9;
}

.radio-3 input {
    display: none;
}

.inline-block_t {
    display:  inline-block;     /* インラインブロック要素にする */
    max-width: 200px;               /* 幅指定 */
}


.ECM_RadioInput {
    padding: 12px 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.ECM_RadioInput-Input {
    opacity: 0;
    width: 0;
    margin: 0;
}
.ECM_RadioInput:hover > .ECM_RadioInput-DummyInput{
    border: dashed 2px #333333;
}
.ECM_RadioInput-Input:focus + .ECM_RadioInput-DummyInput {
    background: #FFFFFF;
}
.ECM_RadioInput-Input:checked + .ECM_RadioInput-DummyInput {
    background: #333333;
}
.ECM_RadioInput-Input:checked + .ECM_RadioInput-DummyInput::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
}
.ECM_RadioInput-DummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #DDDDDD;
    border: dashed 2px transparent;
}
.ECM_RadioInput-LabelText {
    margin-left: 12px;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
}


.chk_label {
    display: inline-block;
    padding: 10px;
    background-color: #ddd; /* 未チェック時の背景色 */
    color: #333; /* 未チェック時のテキスト色 */
    cursor: pointer;
    margin: 3px;
    border-radius: 25px;
    font-size: 1.4rem;
    transition: background-color 0.3s ease; /* 背景色の変化をスムーズにする */
}

.chk_label input[type="checkbox"] {
    display: none; /* チェックボックスを隠す */
}

.chk_label:has(input[type="checkbox"]:checked) {
    background-color: #007BFF; /* チェックされた時の背景色 */
    color: #fff; /* チェックされた時のテキスト色 */
}

.type-tab-size {
    width: 16% !important;
}

.type-tab-size2 {
    width: 19% !important;
}

@media screen and (max-width: 767px) {
    .type-tab-size {
        width: 50% !important;
    }
    .type-tab-size2 {
        width: 50% !important;
    }
}

.comments-notice {
    border: 1px solid #009952;
    margin: 8px;
}
.comments-notice p {
    color: #009952;
    font-weight: bold;
    padding: 1.5rem 2.4rem;
}