@charset "utf-8";

.section__title--ja {
    font-family: "Zen Maru Gothic";
    line-height: 1.5;
}

/* ===============
pageHeader
=============== */
.desc__txt {
    flex-direction: column;
    justify-content: center;
}

.desc__ps {
    font-size: clamp(12px, .75vw, 14px);
    margin-top: clamp(28px, 3vw, 60px);
    position: relative;
    z-index: 10;
}

/* ===============
tel
=============== */
.section--detail {
    margin: clamp(-200px, -10vw, -140px) auto 0;
    padding: clamp(260px, 20vw, 400px) 0 calc(1000px - 259vw);
}

.detail__inner {
    margin: 0 auto;
}

.detail__content {
    margin: clamp(20px, 3vw, 60px) auto 0;
}

.tel__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 60px);
}

.tel__item {
    width: 50%;
    padding: clamp(20px, 2vw, 40px) 0;
    border-radius: clamp(12px, 1vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp();
    background-color: var(--brown-tel);
    color: #fff;
}

.tel__item a {
    color: #fff;
}

.tel__item__num--tel,
.tel__item__num--fax {
    font-size: clamp(22px, 2vw, 40px);
}

.tel__item__num--tel::before,
.tel__item__num--fax::before {
    display: inline-block;
    content: '';
    width: clamp(16px, 1.6vw, 32px);
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon--tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 calc(clamp(2px, .3vw, 6px) * -1) calc(clamp(1px, .1vw, 2px) * -1) 0;
}

.tel__item__num--fax::before {
    width: clamp(22px, 1.9vw, 38vw);
    margin-bottom: calc(clamp(2px, .15vw, 3px) * -1);
    background-image: url(../img/icon--fax.svg);
}

.telInfo {
    margin-top: clamp(12px, 1vw, 20px);
    font-family: "Zen Maru Gothic";
    font-weight: 400;
}

.telInfo__item {
    margin-top: clamp(8px, .6vw, 12px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 20px);
}

.telInfo__item:first-of-type {
    margin-top: 0;
}

.telInfo__item dt {
    width: clamp(62px, 4vw, 80px);
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .tel__list {
        flex-direction: column;
    }

    .tel__item {
        width: 100%;
    }
}

/* ===============
table
=============== */
.section--contact {
    margin: clamp(40px, 3vw, 60px) auto 0;
    font-family: 'Zen Maru Gothic';
}

.table {
    margin-top: clamp(20px, 3vw, 60px);
    --bs-table-bg: initial;
    --bs-table-border-color: transparent;
    --bs-table-color: initial;
}

.table tr td::after {
    display: block;
    content: '';
    width: 100%;
    height: clamp(1px, .1vw, 2px);
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    background-image: url(../img/line.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.table tr:last-child td::after {
    display: none;
}

.table th {
    width: clamp(180px, 14vw, 280px);
    padding: clamp(20px, 2vw, 40px) 0;
    vertical-align: middle;
}

th.th--large {
    padding: calc(clamp(20px, 2vw, 40px) + clamp(6px, .6vw, 12px)) 0;
    vertical-align: initial;
    line-height: 1.75;
}

.table td {
    position: relative;
    padding: clamp(20px, 2vw, 40px) 0;
    font-size: clamp(14px, .8vw, 16px);
}

.red {
    color: var(--orange-bg);
    margin-left: 4px;
}

/* radio */
.container--radio {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 2vw, 40px);
}

label {
    display: flex;
    align-items: center;
    gap: clamp(6px, .4vw, 8px);
    cursor: pointer;
}

input[type=radio] {
    appearance: none;
    width: clamp(14px, .8vw, 16px);
    height: clamp(14px, .8vw, 16px);
    margin: 0;
    background-color: #fff;
    border: 1px solid var(--orange-bg);
    border-radius: 50%;
    position: relative;
}

input[type=radio]::before {
    content: "";
    width: 70%;
    aspect-ratio: 1 / 1;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--orange-bg);
    border-radius: 50%;
    opacity: 0;
}

input[type="radio"]:checked::before {
    opacity: 1;
}

/* textbox */
.textbox {
    width: 100%;
    padding: clamp(6px, .6vw, 12px) clamp(8px, .6vw, 12px);
    background-color: #fff;
    border: 1px solid #e9e1db;
    border-radius: 6px;
}

::placeholder {
    color: #e9e1db;
    font-size: clamp(13px, .75vw, 15px);
}

/* select */
select {
    padding: clamp(6px, .6vw, 12px) calc(clamp(12px, .8vw, 16px) + clamp(10px, .6vw, 12px)) clamp(6px, .6vw, 12px) clamp(8px, .8vw, 12px);
    background-color: #fff;
    border: 1px solid #e9e1db;
    border-radius: 6px;
    color: var(--black-txt);
}

.container--select {
    display: inline-block;
    position: relative;
}

.container--select::before {
    content: '';
    width: clamp(6px, .4vw, 8px);
    height: clamp(6px, .4vw, 8px);
    border: 0;
    border-bottom: solid 2px var(--black-txt);
    border-right: solid 2px var(--black-txt);
    transform: rotate(45deg);
    position: absolute;
    top: -2px;
    right: 8%;
    bottom: 0;
    margin: auto;
}

/* check */
.container--check {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

input[type="checkbox"] {
    appearance: none;
    width: clamp(16px, .9vw, 18px);
    aspect-ratio: 1 / 1;
    margin: 0;
    background-color: #fff;
    border: 1px solid var(--orange-bg);
    position: relative;
}

input[type="checkbox"]::before {
    display: block;
    content: "";
    width: 90%;
    aspect-ratio: 2 / 1;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -68%;
    transition: .3s;
    opacity: 0;
}

input[type="checkbox"]:checked::before {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--orange-bg);
}

/* file */
input[type="file"] {
    width: 100%;
}

input[type="file"]::-webkit-file-upload-button {
    margin-right: clamp(8px, .6vw, 12px);
}

/* textarea */
textarea {
    width: 100%;
    height: 200px;
    padding: clamp(6px, .6vw, 12px) clamp(8px, .6vw, 12px);
    background-color: #fff;
    border: 1px solid #e9e1db;
    border-radius: 6px;
    line-height: 1.75;
    resize: none;
}



@media screen and (max-width: 767px) {

    .table th,
    .table td {
        display: block;
        width: 100%;
    }

    .table td {
        padding-top: 0;
    }

    th.th--large {
        padding: clamp(20px, 2vw, 40px) 0;
    }

    .container--radio label {
        margin-top: clamp(12px, .8vw, 16px);
    }

}

/* ===============
agree
=============== */
.agree {
    line-height: 1.75;
}

.agreeBox {
    margin-top: clamp(28px, 3vw, 60px);
    text-align: center;
}

.label--doi {
    margin: 0;
    justify-content: center;
}

.privacy__detail {
    margin-top: clamp(20px, 2vw, 40px);
}

.ttl_policy {
    display: inline-block;
    width: 100%;
    padding: clamp(12px, .8vw, 16px) clamp(16px, 1.4vw, 28px);
    border-radius: clamp(6px, .6vw, 12px) clamp(6px, .6vw, 12px) 0 0;
    background-color: var(--black-txt);
    font-size: clamp(13px, .75vw, 15px);
    color: #fff;
    text-align: center;
}

.privacy__scroll {
    height: 280px;
    padding: clamp(16px, 1.4vw, 28px);
    border-radius: 0 0 clamp(6px, .6vw, 12px) clamp(6px, .6vw, 12px);
    background-color: #fff;
    font-size: clamp(12px, .7vw, 14px);
    overflow: hidden scroll;
}

.privacyBox {
    margin-top: clamp(24px, 2vw, 40px);
}

.privacyBox p {
    margin-top: clamp(12px, 1vw, 20px);
}

.privacyBox ol li {
    list-style: auto;
    margin-left: clamp(16px, 1vw, 20px);
}

/* formBtn */
.formBtn {
    margin-top: clamp(16px,.6vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--submit {
    margin: 0 auto;
    padding: clamp(12px, .8vw, 16px) clamp(20px, 1.2vw, 24px);
    border-radius: 6px;
    background-color: var(--orange-bg);
    font-size: clamp(14px, 1vw, 20px);
    color: #fff;
    letter-spacing: .1em;
}

/* btn--send */
.formBtn--send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn--submitBack {
    padding: 12px 24px;
    border: 1px solid var(--orange-bg);
    border-radius: 6px;
    background-color: #fff;
    color: var(--orange-bg);
    font-size: clamp(14px, 1vw, 20px);
}

.btn--submitSend {
    padding: 12px 24px;
    border-radius: 6px;
    background-color: var(--orange-bg);
    color: #fff;
    font-size: clamp(14px, 1vw, 20px);
}