@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap');

html {
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    font-family: 'Zen Maru Gothic', serif;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input {
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}


/* Device
-------------------------------------- */
/* PC */
@media (min-width:769px) {
    .sp:not(.pc) {
        display: none;
    }
}

/* SP */
@media (max-width:768px) {
    .pc:not(.sp) {
        display: none;
    }
}


/* Animation
-------------------------------------- */
/* Fade in */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Rayout
-------------------------------------- */
html {
    overflow: auto;
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-size: 1.6rem;
    font-weight: var(--weightR);
    background-color: var(--red);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 88px 0;
}


/* Contents
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - 56px);
    max-width: 1120px;
    margin: auto;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

h2 {
    text-align: left;
    margin-top: 40px;
    padding-left: 16px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
    border-left: 5px solid #000;
}

a {
    text-decoration: underline;
}

ol {
    margin: 24px 0 0 2em;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    list-style: decimal;
    text-align: left;
}

.read {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.thankyou {
    width: 306px;
    margin: auto;
}

.illust {
    width: 378px;
    margin: 40px auto 32px;
}

table {
    border-collapse: separate;
    margin: 64px auto;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    border-spacing: 32px;
}

table span {
    display: inline-block;
    margin-left: 8px;
    padding: 3px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #e2b772;
    border-radius: 4px;
}

table th,
table td {
    vertical-align: middle;
    text-align: left;
}

table th {
    vertical-align: top;
    padding-top: 20px;
    font-weight: normal;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"] {
    font-size: 1.6rem;
    padding: 20px 24px;
    width: 480px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s;
}

textarea {
    height: 320px;
}

textarea:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover {
    border: 1px solid #e2b772;
}

textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border: solid 1px #e2b772;
    background-color: #fdfbf2;
}

.agree span::before {
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    margin-right: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.mfp_checked span::before {
    background: #000 url(../img/check.png ) no-repeat center center / cover;
}

::placeholder {
    color: #B5B5B5;
    font-size: 1.6rem;
}

button {
    margin-top: 64px;
    color: #fff;
    width: 240px;
    height: 56px;
    letter-spacing: 0.08em;
    background-color: #000;
    border-radius: 100vh;
    transition: all 0.3s;
}

@media (hover: hover) {
    button:hover {
        background-color: #e2b772;
    }
}

.privacy {
    max-width: 800px;
    margin: auto;
}

.privacy__text {
    text-align: left;
    margin-top: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.copyright {
    margin-top: 160px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

div#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: 0px;
}

@media (max-width: 767px) {
    .wrap {
        padding: 64px 0;
    }

    .contents {
        width: calc(100% - 40px);
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .read {
        font-size: 1.6rem;
        text-align: left;
    }

    .thankyou {
        width: 60vw;
    }

    .illust {
        width: 60vw;
    }

    table {
        margin: 40px auto;
        width: 100%;
        border-spacing: 24px;
    }

    table th,
    table td {
        display: block;
    }

    table th {
        padding: 0 0 16px;
    }

    textarea,
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 16px 20px;
        width: 100%;
    }

    textarea {
        height: 240px;
    }

    .copyright {
        margin-top: 120px;
    }
}