/* フォーム追加に伴うCss一式 202306 */

/* TEL */
/* ======================= */
.add202306-tel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.add202306-tel__col1 {
    width: 84px;
}

.add202306-tel__col2 {
    padding-left: 19px;
    box-sizing: border-box;
}

.add202306-tel__link {
    display: flex;
    pointer-events: none;
}

.add202306-tel__icon {
    display: inline-block;
    width: 40px;
}

.add202306-tel__icon img {
    width: 100%;
}

.add202306-tel__num {
    display: inline-block;
    text-align: center;
    font-weight: 700;
    letter-spacing: .1em;
    font-size: 36px;
    color: #006bed;
    line-height: 1;
    padding-left: 12px;
    box-sizing: border-box;
}

.add202306-tel__note {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0;
    display: block;
}

.add202306-tel__catch {
    color: #006bed;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    padding: 5px;
    border: 1px solid #006bed;
}

@media (max-width:743px) {
    .add202306-tel__num {
        font-size: 24px;
    }

    .add202306-tel__note {
        font-size: 14px;
    }

    .add202306-tel__col1 {
        width: auto;
    }

    .add202306-tel__col2 {
        padding-left: 0;
        margin-top: 10px;
    }

    .add202306-tel {
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
    }

    .add202306-tel__catch {
        font-size: 16px;
    }

    .add202306-tel__catch br {
        display: none;
    }

    .add202306-tel__link {
        pointer-events: auto;
    }

}

/* アコーディオン */
/* ======================= */
.add202306-accordion {
    margin: 38px 0 55px;
}

.add202306-accordion__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: #e53170;
    color: #fff;
    max-width: 624px;
    width: 100%;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .1em;
    border-radius: 90px;
    height: 78px;
    position: relative;
}

.add202306-accordion__btn::before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 23px;
    bottom: 0;
    left: 50%;
    line-height: 1;
    transform: translateX(-50%);
    transition: .35s ease;
}

.add202306-accordion__btn.is-active::before {
    transform: translateX(-50%) rotate(-180deg);
}

/* アコーディオン（中身） */
.add202306-accordion__body-in {
    padding-top: 50px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width:743px) {
    .add202306-accordion {
        margin: 18px 0 25px;
    }

    .add202306-accordion__btn {
        font-size: 15px;
        height: 60px;
        max-width: 300px;
    }

    .add202306-accordion__btn::before {
        font-size: 18px;
        bottom: 3px;
    }
}


/* フォーム */
/* ======================= */
.add202306-form__item {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0;
}

.add202306-form__item:first-child {
    margin-top: 0;
}

.add202306-form__item-head {
    font-weight: 700;
    width: 150px;
}

.add202306-form__item-head.add202306-form__item-head--requir::before {
    content: "*";
    color: #ff4d4d;
    margin-right: 5px;
}

.add202306-form__item-body {
    width: calc(100% - 150px);
}

.add202306-form__radio-wrap {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0 0 0 15px;
    position: relative;
}

.add202306-form__radio-txt::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 90px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.add202306-form__radio:checked + .add202306-form__radio-txt::before {
    background: #3273f6;
    border-color: #3273f6;
    box-shadow: inset 0 0 0 2px #fff;
}

.add202306-form__input-txtarea,
.add202306-form__input-txt {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    padding: 0.7em;
    background: #fff;
    border: 2px solid #111;
    border-radius: 6px;
    display: block;
}

.add202306-form__input-txtarea {
    max-width: 100%;
    height: 200px;
}

.add202306-form__input-txtarea::placeholder,
.add202306-form__input-txt::placeholder {
    color: #999;
}

.add202306-form___privacy {
    text-align: center;
}

.add202306-form___privacy a {
    color: #265da5;
    text-decoration: underline;
}

.add202306-form__btn-wrap {
    margin: 30px 0 0;
    text-align: center;
}

.add202306-form___btn {
    box-shadow: #e6cb00 0 3px 0;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 200px;
    margin: 15px 5px;
    border-radius: 5px;
    font-weight: bold;
    background: #ffe200;
    text-decoration: none;
    text-align: center;
    color: #111;
    letter-spacing: .1em;
    border: none;
}

.add202306-form___btn.add202306-form___btn--return {
    background: #004095;
    color: #fff;
    box-shadow: #01306e 0 3px 0;
}

@media (hover:hover) {
    .add202306-form___btn:hover {
        opacity: .7;
    }
}

@media (max-width:743px) {
    .add202306-form__item {
        display: block;
    }

    .add202306-form__item-head {
        margin-bottom: 8px;
    }

    .add202306-form__item-body,
    .add202306-form__item-head {
        width: 100%;
    }

    .add202306-form__radio-wrap {
        display: block;
    }

    .add202306-form__radio-wrap + .add202306-form__radio-wrap {
        margin-top: 8px;
    }

    .add202306-form__input-txtarea {
        height: 150px;
    }

    .add202306-form___btn {
        margin: 8px 5px;
    }
}

/* 確認画面、完了画面（テキスト位置調整） */
/* ======================= */
div.fv.under h2 p.double-text.add202306-fv-text-center {
    top: 50%;
    transform: translateY(-50%);
}

/* 確認画面、完了画面（レイアウト） */
/* ======================= */
.add202306-cont {
    max-width: 940px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

@media (max-width:743px) {
    .add202306-cont {
        padding: 20px 20px 50px;
    }

    .add202306-cont p:not([class]) {
        font-size: 14px;
    }
}

/* アコーディオン */
/* ======================= */
@keyframes openAccordion {
    0% {
      height: 0px;
    }
    99% {
      height: var(--accordion-height);
    }
    100% {
      height: auto;
    }
}

@keyframes closeAccordion {
    0% {
      height: var(--accordion-height);
    }
    100% {
      height: 0px;
    }
}

.add202306-accordion__body {
    height: 0px;
    overflow: hidden;
}

.add202306-accordion__body.is-open {
    animation: openAccordion 0.5s forwards;
}

.add202306-accordion__body.is-close {
    animation: closeAccordion 0.5s forwards;
}
