/*===================
ページタイトル
===================*/

.page_title {
    width: 100%;
    height: 35vh;
    position: relative;
    margin-bottom: 4rem;
}

.page_title img {
    width: 100%;
    height: 35vh;
    object-fit: cover;
    object-position: center;
}

.page_title .title {
    position: absolute;
    top: calc(35vh - 5rem);
    left: 50%;
    transform: translatex(-50%);
    background-color: var(--green-2rgba);
    width: clamp(250px, 60vw, 400px);
    padding: 2rem;
    line-height: 2;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    text-align: center;
}



@media screen and (min-width:550px) {
    .page_title {
        height: 25vh;
        margin-bottom: 8rem;
    }

    .page_title .title {
        left: auto;
        right: 0;
        transform: none;
    }
}

/*========min-width:400px========*/


@media screen and (min-width:960px) {
    .page_title {
        width: 100%;
        position: relative;
        margin-bottom: 3rem;
    }

    .page_title img {
        width: 100%;
        height: 25vh;
        object-fit: cover;
        object-position: center;
    }

    .page_title .title {
        top: calc(25vh - 8.5rem);
    }
}

/*===================
セクション
===================*/
section.workshop {
    padding: 1.4rem;
}

section .inner img {
    width: 50%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: 0 auto;
}

section .inner img.left {
    border-radius: 0.5rem 0 0 0;
}

section .inner img.right {
    border-radius: 0 0.5rem 0 0;
}

section .inner {
    display: flex;
    column-gap: 0.4rem;
    justify-content: center;
    margin-bottom: 0.4rem;
    align-items: center;
}

section .inner.reverse {
    background-color: rgba(255, 255, 255, .9);
    display: block;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

section .work {
    background-color: var(--lightgreen-rgba);
    border-radius: 0.5rem;
    padding: 1.2rem 1rem;
    text-align: center;
}

section .work:not(:last-child) {
    margin-bottom: 2rem;
}

section .work h3 {
    padding-bottom: 0.8rem;
    margin-bottom: 0.6rem;
    border-bottom: 3px solid #fff;
}

section .work p {
    text-align: start;
}

section p {
    text-align: center;
}

section p span {
    font-size: 1rem;
    font-weight: 500;
}



@media screen and (min-width:600px) {

    section p {
        text-align: start;
    }

    section .work {
        text-align: start;
    }

    section .work .work_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: start;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
    }

    section .inner {
        margin-bottom: 0;
        column-gap: 0;
    }

    section .inner img {
        width: 50%;
    }

    section .inner.reverse {
        margin-bottom: 1rem;
        background-color: rgba(255, 255, 255, .9);
    }


    section .inner.reverse img {
        width: 5.5rem;
        height: auto;
    }
}

/*========min-width:600px========*/

/*===================
会員種別について
===================*/


.sub-section {
    background-color: var(--lightgreen);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.sub-section h3 {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--black);
    text-align: center;
}

@media screen and (min-width:600px) {
    .sub-section {
        padding: 2.2rem;
    }

    .sub-section h3 {
        text-align: start;
    }

    .sub-section .inner_wrap {
        display: flex;
        justify-content: center;
        column-gap: 1rem;
    }

}

@media screen and (min-width: 1000px) {
    .sub-section {
        padding: 1.5rem 3rem 1rem;
    }
}

@media screen and (min-width: 1100px) {
    .sub-section {
        padding: 1.5rem 5rem 1rem;
    }
}

/*========min-width:600px========*/
/*===================
会員詳細
===================*/

.info {
    padding: 0.5rem;
}

.info .info_inner {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 0.3rem;
    border-bottom: 1px dashed var(--lightgreen);
}

.info h4 {
    text-align: center;
}

.info .info_inner dt,
.info .info_inner dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.3rem;
    line-height: 1.5;
}

.info .info_inner dt {
    width: 30%;
    border-radius: 0.2rem;
    background-color: var(--lightgreen);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.info .info_inner dd {
    width: 70%;
    font-size: 0.9rem;
}

.info p {
    font-size: 0.8rem;
    margin-bottom: 0;
    margin-top: 0.2rem;
    line-height: 1.6;

}

@media screen and (min-width:600px) {
    .info {
        background-color: transparent;
        padding-left: 0.8rem;
    }
}

/*========min-width:600px========*/


/*===================
申し込みフォーム
===================*/
form.application {
    width: 100%;
    text-align: center;
}

form.application dl {
    width: 100%;
    margin: 0 auto 2rem;
}

form.application dl dt {
    text-align: start;
    font-weight: 500;
    line-height: 1.6;
}

form.application dl dt span {
    font-size: 0.8rem;
    color: var(--green-1);
}

form.application dl dd {
    width: 100%;
    margin-bottom: 0.8rem;
}

form.application dd.mb {
    margin-bottom: 0.2rem;
}

form.application input[type="text"],
textarea {
    display: block;
    width: 100%;
}

form.application dd.mb textarea {
    line-height: 1.8;
    font-size: 0.9rem;
}

form.application .radio_flex {
    display: flex;
    text-align: start;
}

form.application .radio_flex dd {
    width: 30%;
    font-weight: 500;
}

form.application select {
    font-weight: 500;
    height: 2.2rem;
    width: 100%;
}

form.application select.number {
    width: 50%;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

form.application p {
    line-height: 1.5;
    font-size: 0.8rem;
}

form.application dl dd input.green_line,
form.application dl dd textarea.green_line,
form.application dl dd select.green_line {
    border-radius: 0.3rem;
    border: 3px solid var(--lightgreen);
}

form.application dl dd input.green_line:focus,
form.application dl dd textarea.green_line:focus,
form.application dl dd select.green_line:focus {
    outline: 0;
    border: 3px solid var(--green-1);
}



@media screen and (min-width:600px) {
    section .work {
        padding: 1.8rem 5rem;
    }

    form.application {
        width: 100%;
        text-align: center;
    }

    form.application input[type="text"].name,
    form.application input[type="text"].mail {
        width: 70%;
    }

    form.application .radio_flex dd {
        width: 20%;
    }

    form.application dd.mb textarea {
        min-height: 8rem;
        border-radius: 1px;
    }


    form.application select {
        width: 50%;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }

    form.application select.number {
        width: 35%;
    }
}

/*========min-width:600px========*/

/* ラジオボタン */

input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid var(--green-1);
    border-radius: 50%;
    vertical-align: -2px;
    appearance: none;
    margin-right: 0.3rem;
}

input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-1);
    content: '';
}