/*----------------------------------------------------------

共通

----------------------------------------------------------*/

body main {
    font-family:  "BIZ UDPGothic", sans-serif;
}

.contact-btn {
    background: #B7282E;
    color: white;
    width: min(80%, 300px);
    box-sizing: border-box;
    padding: 24px 32px;
    text-align: left;
    position: relative;
    display: block;
    border: none;
    margin: 16px auto;
    transition: .2s;
    cursor: pointer;
    font-size: 1em;
}

.contact-btn:hover {
    background: #790207;
}

.contact-btn::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 16px;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    background: url(../w-arrow.svg);
    background-size: 100%;
    font-size: 1rem;
}

/*------------------------------------------------------------

index.php

------------------------------------------------------------*/

#top .intro-txt {
    margin: 64px auto;
}

#top .intro-txt .inner {
    display: block;
    width: fit-content;
    margin: 1em auto;
    padding: 0 16px;
    line-height: 2em;
}

#top form {
    padding: 0 16px;
    max-width: 1000px;
    margin: 0 auto;
}

#top dl dt label {
    font-weight: bold;
}

#top dl dt span.l_required {
    background: rgb(216, 1, 1);
    color: white;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 14px;
}

#top dl dd {
    margin: 0;
    text-align: left;
}

#top dl input,
#top dl textarea {
    margin: 0 0 8px;
}

#top dl select {
    max-width: 20em;
    cursor: pointer;
}

#top dl select,
#top dl input#company,
#top dl input#name,
#top dl input#email,
#top dl input#tel {
    width: 100%;
    border-radius: 6px;
    border: solid 1px black;
    padding: 16px;
}

#top dl textarea {
    width: 100%;
    border-radius: 6px;
    border: solid 1px black;
    padding: 16px;
}

@media(min-width:640px) {
    #top dl dt {
        width: 30%;
        box-sizing: border-box;
    }

    #top dl dd {
        width: 70%;
        box-sizing: border-box;
    }
}

/*-------------------------------------------------------------

confirm

--------------------------------------------------------------*/

#confirm {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

#confirm .intro-txt {
    width: fit-content;
    margin: 4em auto;
    display: block;
}

#confirm dt {
    color: #B7282E;
}

.btn-1 {
    margin: 32px auto 16px;
    display: block;
    width: min(80%, 300px);
    position: relative;
    cursor: pointer;
    color: white;
    background: #B7282E;
    padding: 16px 48px 16px 32px;
    text-decoration: none;
    font-weight: bold;
    border: solid 2px #B7282E;
    transition: .2s;
    font-size: 1em;
}

.btn-1:hover {
    transform: scale(1.05);
}

button.btn-1:nth-of-type(1) {
    background: white;
    color: #B7282E;
}

.btn-1::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 24px;
    transform: translateY(-50%) rotate(-45deg);
    width: 12px;
    height: 12px;
    border-bottom: solid 2px white;
    border-right: solid 2px white;
    transition: .2s;
}

button.btn-1:nth-of-type(1)::after {
    border-bottom: solid 2px #B7282E;
    border-right: solid 2px #B7282E;
}

.btn-1:hover::after {
    transform: translateY(-50%) rotate(-45deg) scale(120%);
}

/*-----------------------------------------------------------------------

submit

-----------------------------------------------------------------------*/

#submit {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

#submit p {
    width: fit-content;
    margin: 16px auto;
}