@charset "utf-8";

:root {
    --section_margin: 160px;
    --block_margin: 80px;
    --title_margin: 50px;
    --list_margin: 30px;
    --base_font: clamp(13px, 11.923px + .256vw, 15px);
    --small_font: clamp(11px, 9.923px + .256vw, 13px);
    --brand-color01: #1C1C1C;
    --brand-color02: #B0B2AF;
    --brand-color03: #EEF0F2;
    --brand-color04: #ECEBE4;
}

@media screen and (max-width: 768px) {
    :root {
        --section_margin: 80px;
        --block_margin: 40px;
        --title_margin: 35px;
        --list_margin: 20px
    }
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.wrapper section {
    width: 100%;
    height: auto;
}

.wrapper h1 {
    font-size: clamp(35px, 29.516px + 1.29vw, 45px);
    line-height: 1;
}

.wrapper h2 {
    font-size: clamp(28px, 25.806px + .516vw, 32px);
    line-height: 1;
}

.wrapper h3 {
    font-size: clamp(24px, 22.923px + .256vw, 26px);
    letter-spacing: 1.5px;
    transition: color .35s;
}

.wrapper h4 {
    font-size: clamp(16px, 14.903px + .258vw, 18px);
    transition: color .35s;
}

.wrapper small {
    font-size: clamp(11px, 9.923px + .256vw, 13px);
    display: block;
}

.wrapper .container {
    width: 93%;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper .titleArea {
    padding: var(--section_margin) 0 0;
}

.wrapper .titleArea .mainTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: var(--title_margin);
}

.wrapper .titleArea .mainTitle h1 {
    color: #B0B2AF;
    margin-bottom: var(--base_font);
}

.wrapper .titleArea .mainTitle span {
    font-size: clamp(15px, 13.903px + .258vw, 17px);
}

.wrapper .titleArea .flow {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--list_margin);
}

.wrapper .titleArea .flow li.current {
    background-color: #1C1C1C;
    color: #fff;
}

.wrapper .titleArea .flow li {
    position: relative;
    display: block;
    white-space: nowrap;
    padding: 7px 3px 7px 9px;
    line-height: 1;
    font-size: var(--small_font);
    background-color: #EEF0F2;
    margin-right: calc(var(--base_font) + 2px);
}

.wrapper .titleArea .flow li.current::after {
    border-left: clamp(12px, 11.452px + .129vw, 13px) solid #1C1C1C;
}

.wrapper .titleArea .flow li::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 100%;
    top: 0;
    left: 100%;
    border-style: solid;
    border-top: clamp(12px, 11.452px + .129vw, 13px) solid transparent;
    border-bottom: clamp(12px, 11.452px + .129vw, 13px) solid transparent;
    border-left: clamp(12px, 11.452px + .129vw, 13px) solid #EEF0F2;
    border-right: 0;
}

.wrapper .mainForm {
    margin-bottom: var(--block_margin);
}

.wrapper .mainForm .formImage {
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 100%;
        max-width: 300px;
        height: auto;
        object-fit: cover;
    }

}

.wrapper .mainForm .reminderInfo {
    width: 93%;
    margin: 15px auto 0;
    font-size: 12px;
    text-align: center;
}

.wrapper .mainForm .container {
    padding: var(--block_margin) 0;
    border-top: solid 1px #DADDD8;
    border-bottom: solid 1px #DADDD8;
}

.wrapper .mainForm .formContent:first-of-type {
    margin-bottom: 35px;
}

.wrapper .mainForm .formContent {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 38.1% 61.9%;
}

.wrapper .mainForm .formContent .personalInfo h2 {
    margin-bottom: 7px;
}

.wrapper .mainForm .formContent .personalInfo span {
    display: block;
    font-size: clamp(12px, 10.903px + .258vw, 14px);
}

.wrapper .mainForm .formContent .formArea .lump {
    width: 100%;
    border-bottom: solid 1px #DADDD8;
}

.wrapper .mainForm .formContent .formArea .lump.ng .headline {
    background-color: #FFDBDB;
}

.wrapper .mainForm .formContent .formArea .lump.ng .input_area {
    background-color: #FFF2F2;
}

.wrapper .mainForm .formContent .formArea .lump.ok .headline {
    background-color: #DBF0FF;
}

.wrapper .mainForm .formContent .formArea .lump.ok .input_area {
    background-color: #F2F9FF;
}

.wrapper .mainForm .formContent .formArea .lump.ng #err_name,
.wrapper .mainForm .formContent .formArea .lump.ng #err_email,
.wrapper .mainForm .formContent .formArea .lump.ng #err_product,
.wrapper .mainForm .formContent .formArea .lump.ng #err_post,
.wrapper .mainForm .formContent .formArea .lump.ng #err_pref,
.wrapper .mainForm .formContent .formArea .lump.ng #err_address,
.wrapper .mainForm .formContent .formArea .lump.ng #err_address2 {
    display: block;
    font-size: 11px;
    color: #cc1414;
}

.wrapper .mainForm .formContent .formArea .lump .headline {
    padding: var(--list_margin) 10px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    transition: background-color .3s;
}

.wrapper .mainForm .formContent .formArea .lump .headline .required {
    display: block;
    padding: 3px 5px;
    font-size: 9px;
    color: #fff;
    background-color: #B0B2AF;
    line-height: 1;
    margin-right: 5px;
}

.wrapper .mainForm .formContent .formArea .lump .input_area:has(input[type=text]),
.wrapper .mainForm .formContent .formArea .lump .input_area:has(input[type=email]) {
    display: block;
}

.wrapper .mainForm .formContent .formArea .lump .input_area {
    padding: 10px 10px var(--list_margin) 10px;
    background-color: #fff;
    transition: background-color .3s;
    /* display: flex; */
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 10px;
}

.wrapper .mainForm .formContent .formArea .lump .input_area small {
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.wrapper input[type=text],
.wrapper input[type=email],
.wrapper select,
.wrapper textarea {
    width: 100%;
    border: #DADDD8 solid 1px;
    border-radius: 3px;
    padding: 4px 7px;
    margin-bottom: clamp(15px, 12.258px + .645vw, 20px);
}

.wrapper .selectWrap select {
    padding: 8px 20px 8px 8px;
    line-height: 1.2;
}

.wrapper input[name=post] {
    max-width: 8em;
}

.selectWrap {
    position: relative;
    display: inline-block;
}

.selectWrap:after {
    content: '';
    display: inline-block;
    height: 0;
    width: 0;
    border-width: 6px 4px 0;
    border-style: solid;
    border-color: #1C1C1C transparent transparent;
    position: absolute;
    right: .6em;
    top: 25%;
    right: 6%;
}

/* button submit */
.confirirmation {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: var(--section_margin);
}

.confirirmation p {
    margin-bottom: var(--title_margin);
}

.confirirmation .base_btn {
    display: block;
    width: 100%;
    max-width: 256px;
    padding: 25px 0;
    background-color: #1C1C1C;
}

.confirirmation .base_btn span {
    color: #fff;
    font-size: clamp(13px, 11.923px + .256vw, 15px);
}

.confirirmation .base_btn::after {
    background-color: #fff;
}

.confirirmation .base_btn:hover span {
    color: #1C1C1C;
}

.confirirmation button[type=button] {
    line-height: 1;
    font-size: var(--base_font);
    text-decoration: underline;
    transition: opacity .35s;
}

.otherButton {
    display: flex;
    width: 100%;
    max-width: 600px;
}

#backButton,
#submitButton {
    display: none;
}

input[type="text"][disabled],
input[type="email"][disabled],
textarea[disabled],
select[disabled] {
    color: grey;
    background-color: #efefef;
}

/* button submit */

/* modal */
.modal-inner.personal.current {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: var(--title_margin) var(--list_margin);
}

.wrapper .modal .personal h4 {
    margin-bottom: var(--list_margin);
}

.wrapper .modal .personal ul {
    width: 100%;
    max-width: 800px;
    border-top: #DADDD8 1px solid;
    border-bottom: #DADDD8 1px solid;
    padding: var(--list_margin) 0;
    margin: var(--list_margin) 0;
}

.wrapper .modal .personal button {
    padding: 14px 45px;
    background-color: #1C1C1C;
    color: #fff;
    border-radius: 5px;
    transition: background-color .35s;
}

.wrapper .modal .personal button:hover {
    background-color: #B0B2AF;
}

/* modal */

/* thanksPage */

.wrapper .thanksPage>p {
    font-size: 14px;
    margin: 0px auto var(--block_margin);
    width: fit-content;
    width: -webkit-fit-content;
}

.wrapper .thanksInfo {
    background-color: #f6f7f8;
    padding: 50px 0;
    width: 100%;
}

.thanksInfo>div {
    margin: 0 auto;
    max-width: 800px;
    width: 90%;
}

.thanksInfo>div>h4 {
    text-decoration: underline;
    margin: 40px 0 25px;
}

.thanksInfo>div>p {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.75;
    width: 100%;
}

.wrapper .thanksInfo h2 {
    font-size: clamp(17px, 2vw, 22px);
}

.line {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 90px auto;
    max-width: 1000px;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.line img {
    display: block;
    -webkit-filter: brightness(.7);
    filter: brightness(.7);
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.line h2 {
    color: #fff;
    margin-bottom: 15px;
}

.line p {
    color: #fff;
    margin-bottom: 30px;
}

.line a {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: block;
    height: auto;
    overflow: hidden;
    padding: 5px 0;
    position: relative;
    text-align: center;
    width: 120px;
}

.line a::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: -1;
    transform: scaleY(0%);
    transform-origin: bottom;
    transition: transform 0.4s;
}

.line a:hover::before {
    transform: scaleY(100%);
    transform-origin: top;
}

/* thanksPage */

/* recapcha */

.g-recaptcha {
    margin-top: var(--title_margin);
    display: flex;
}

/* recapcha */

@media screen and (max-width: 768px) {
    .confirirmation {
        width: 93%;
        margin: 0 auto;
    }

    .otherButton {
        width: 100%;
        gap: 20px;
    }

    .wrapper .mainForm .formContent {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        row-gap: 15px;
    }

    .wrapper .thanksPage>p {
        width: 90%;
    }

    .g-recaptcha {
        justify-content: center;
    }

    .wrapper .mainForm .reminderInfo {
        text-align: left;
        margin: 10px auto 0;
    }

    .wrapper .mainForm .formImage img {
        max-width: 100%;
    }
}