* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}

a img {
    border: none;
}

html {
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Hiragino maru Gothic ProN W4', 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'arial', 'Meiryo', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    line-height: 1.5;

    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;

    color: #42210b;
    background: #ef7b10;
}

img {
    width: 100%;
    height: auto;

    -webkit-transition: .3s all;
    transition: .3s all;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

.larger {
    font-size: 160%;
    font-weight: bold;

    color: #e60012;
}

.notice {
    color: #e60012;
}

.container {
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 100vh;
    margin: 0 auto;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.container::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

header,
footer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

main {
    min-height: 1px;

    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

label {
    display: inline-block;

    margin-right: 20px;
}

input[type=text],
input[type=number] {
    font-size: 100%;

    width: 100%;
    padding: 6px;

    color: #42210b;
    border: 2px solid rgba(235, 91, 39, .4);
    border-radius: 4px;

    -webkit-appearance: none;
}

input[type=text]:focus,
input[type=number]:focus {
    border: 2px solid #295f38;
    outline: none;
    background-color: rgba(235, 91, 39, .1);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[name=zip1] {
    width: 50px;
}

input[name=zip2],
input[name=tel0],
input[name=tel1],
input[name=tel2],
input[name=card_num1],
input[name=card_num2],
input[name=card_num3],
input[name=age] {
    width: 60px;
}

input[type=radio],
input[type=checkbox] {
    margin-right: 5px;
}

input[name=store] {
    display: inline-block;

    width: 70%;
    margin-top: 10px;
}

input.w50{
    width: 50%;
}

.select-wrap {
    position: relative;

    display: inline-block;

    width: 100%;
    max-width: 200px;
}

.select-wrap:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 10px;

    width: 6px;
    height: 6px;
    margin-top: -6px;

    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;

    border: 0;
    border-right: solid 2px #295f38;
    border-bottom: solid 2px #295f38;
}

select {
    font-size: inherit;

    width: 100%;
    height: 32px;
    padding: 2px 12px;

    vertical-align: middle;
    text-indent: .01px;
    text-overflow: '';

    color: inherit;
    border: 2px solid rgba(235, 91, 39, .4);
    border-radius: 4px;
    outline: none;
    background: none #fff;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select option {
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
}

.radioWrap li {
    display: inline-block;
    margin-bottom: 16px;
}

.radio-input {
    display: none;
}

.radio-input+label {
    position: relative;

    display: inline-block;

    padding-left: 24px;
}

.radio-input+label::before,
.radio-input:checked+label::after {
    position: absolute;

    display: block;

    content: '';

    border-radius: 50%;
}

.radio-input+label::before {
    top: 2px;
    left: 0;

    width: 16px;
    height: 16px;

    border: 2px solid rgba(235, 91, 39, .4);
}

.radio-input:checked+label {
    color: #295f38;
}

.radio-input:checked+label::after {
    top: 6px;
    left: 4px;

    width: 12px;
    height: 12px;

    background: #295f38;
}

.disabled {
    opacity: .5;
}

.btn {
    font-size: 120%;
    font-weight: bold;

    position: relative;
    z-index: 99;

    display: block;

    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 10px;

    -webkit-transition: .3s all;
    transition: .3s all;
    text-align: center;

    color: #fff;
    border: 3px solid #fff;
    border-radius: 40px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f6ac19), to(#e60012));
    background: -webkit-linear-gradient(#f6ac19 0, #e60012 100%);
    background: linear-gradient(#f6ac19 0, #e60012 100%);
    -webkit-box-shadow: 0 4px 4px rgba(66, 33, 11, .2);
    box-shadow: 0 4px 4px rgba(66, 33, 11, .2);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
}

.btn:after {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    content: '';
    border: solid 10px transparent;
}

.btn.next:after {
    right: 10px;
    border-left: solid 10px currentColor;
}

.btn.down:after {
    right: 20px;
    margin-top: -5px;
    border-left: solid 10px currentColor;
    transform: rotate(90deg);
}


.btn:hover {
    cursor: pointer;
}

button.btn.back {
    color: #333;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), to(#ccc));
    background: -webkit-linear-gradient(#ddd 0, #ccc 100%);
    background: linear-gradient(#ddd 0, #ccc 100%);
}

button.btn.back:after {
    left: 10px;

    border-right: solid 10px #333;
}

.btnNext {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btnNext li {
    width: 100%;
}

.disc li {
    position: relative;

    padding-left: 1.2em;
}

.disc li:before {
    position: absolute;
    top: 0;
    left: 0;

    content: '●';

    color: #295f38;
}

.disc li+li {
    margin-top: 1em;
}

.indent {
    margin-left: 1em;

    text-indent: -1em;
}

.attention {
    color: #e60012;
    background-color: #ffe33f;
}

header {
    position: relative;

    width: 100%;
    margin: 0 auto;
    padding: 0 0 10px;
}

header h1 {
    position: relative;

    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

header h1 img {
    display: block;

    width: 160px;
    height: auto;
    margin-left: auto;
}

header .headerInner {
    position: relative;

    max-width: 960px;
    margin: 0 auto;
}

/* header .kikan{
    max-width: 840px;
    margin: 20px auto;
} */

header .item {
    max-width: 840px;
    margin: 0 auto 20px;
}

main {
    width: 100%;
    padding: 0 20px;
}

.inr {
    margin-inline: auto;
    max-width: 860px;
}

main section {
    position: relative;

    width: 100%;
    padding: 40px 0;
}


/* main .present{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 840px;
    margin: 20px auto;
}

main .present li + li
{
    margin-top: 20px;
} */


main .ttlWrap {
    max-width: 840px;
    margin: 0 auto 20px;
}

main .ttl {
    font-size: 160%;
    font-weight: bold;

    position: relative;

    display: block;

    width: 240px;
    margin: 0 auto;
    padding: 10px 20px;

    text-align: center;

    color: #fff;
    background: #295f38;
}

main .ttl:before {
    position: absolute;
    top: 0;
    left: -20px;

    width: 20px;
    height: 100%;

    content: '';

    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, #295f38), color-stop(50%, transparent)) top left/100% 50% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(50%, #295f38), color-stop(50%, transparent)) bottom left/100% 50% no-repeat;
    background: -webkit-linear-gradient(top right, #295f38 50%, transparent 50%) top left/100% 50% no-repeat, -webkit-linear-gradient(bottom right, #295f38 50%, transparent 50%) bottom left/100% 50% no-repeat;
    background: linear-gradient(to bottom left, #295f38 50%, transparent 50%) top left/100% 50% no-repeat, linear-gradient(to top left, #295f38 50%, transparent 50%) bottom left/100% 50% no-repeat;
}

main .ttl:after {
    position: absolute;
    top: 0;
    right: -20px;

    width: 20px;
    height: 100%;

    content: '';

    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #295f38), color-stop(50%, transparent)) top left/100% 50% no-repeat, -webkit-gradient(linear, left bottom, right top, color-stop(50%, #295f38), color-stop(50%, transparent)) bottom left/100% 50% no-repeat;
    background: -webkit-linear-gradient(top left, #295f38 50%, transparent 50%) top left/100% 50% no-repeat, -webkit-linear-gradient(bottom left, #295f38 50%, transparent 50%) bottom left/100% 50% no-repeat;
    background: linear-gradient(to bottom right, #295f38 50%, transparent 50%) top left/100% 50% no-repeat, linear-gradient(to top right, #295f38 50%, transparent 50%) bottom left/100% 50% no-repeat;
}

.wrap {
    position: relative;
    z-index: 2;

    max-width: 860px;
    margin-inline: auto;
    padding: 20px;

    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 4px rgba(66, 33, 11, .1);
    box-shadow: 0 0 4px rgba(66, 33, 11, .1);
}

main .mt20 {
    margin-top: 20px;
}
main .mb20 {
    margin-bottom: 20px;
}

.kikan {
    margin-top: 20px;
    padding: 30px 5px;
    text-align: center;
}

.kikan .kikanTtl {
    color: #ef7b10;
    font-size: clamp(18px, 1.8vw, 36px);
    font-weight: bold;
}

.kikan .kikanTtl .inline {
    display: inline-block;
}

.kikan .kikanTxt+.kikanTtl {
    margin-top: 30px;
}

.kikan .kikanTxt {
    font-size: clamp(15px, 1.8vw, 36px);
    font-weight: bold;
}

.kikan .large {
    font-size: 140%;
}

.makerList{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}
.makerList li{
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 10px 10px;
}
.makerList .makerLinkBtn{
    background-color: #28bb51;
    border-radius: 100px;
    color: #fff;
    display: block;
    font-size: 86%;
    margin: 10px auto 10px;
    padding: 10px 10px;
    max-width: 200px;
}

main .step p+p {
    margin-top: 10px;
}

main .detail h3 {
    font-size: 120%;
    font-weight: bold;

    padding: 2px 6px;

    color: #295f38;
    border-left: 8px solid currentColor;
}

main .detail p,
main .detail ul {
    padding: 10px;
}

main .detail p+h3,
main .detail ul+h3 {
    margin-top: 10px;
}

main p.tel_ttl {
    padding-bottom: 0;
}

main p.tel {
    padding-top: 5px;
}

main .tel .num {
    font-size: 120%;
    font-weight: bold;
}

form table {
    width: 100%;
    margin: 20px 0;

    border-top: 1px solid rgba(235, 91, 39, .4);
}

form table tr {
    border-bottom: 1px solid rgba(235, 91, 39, .4);
}

form table th,
form table td {
    padding: 20px 10px;
}

form table td img {
    max-width: 300px;
}

form table th {
    font-weight: bold;

    position: relative;

    vertical-align: text-top;
}

form dl {
    overflow-y: auto;

    height: 200px;

    border: 1px solid #295f38;
}

form dl dt {
    font-weight: bold;

    padding: 5px;

    border-bottom: 1px solid #295f38;
    background-color: rgb(235 91 39 / 20%);
}

form dl dd+dt {
    border-top: 1px solid #295f38;
}

form dl dd {
    font-size: 90%;

    padding: 10px 10px 20px;
}

form dl::-webkit-scrollbar {
    width: 8px;

    background: rgba(233, 82, 131, .1);
}

form dl::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #295f38;
}

form .upload {
    font-weight: bold;

    position: relative;

    display: inline-block;

    padding: 10px;

    color: #fff;
    border: 0;
    background-color: #295f38;
}

form .upload>input {
    display: none;
}

form .agreement {
    display: block;

    margin-top: 10px;
}

form .required,
form .example {
    display: inline-block;
}

form .required {
    font-size: 85%;

    margin-left: 5px;
    padding: 2px 4px;

    color: #ffe33f;
    background-color: #e60012;
}

form .example {
    font-size: 80%;

    margin-top: 5px;
}

form .error {
    display: block;

    margin-top: 5px;

    color: #e60012;
}

.thanks {
    width: 100%;
    padding: 20px;
}

.thanks dl {
    margin-top: 20px;

    border: 2px solid #295f38;
    background-color: #fff;
}

.thanks dl dt {
    font-weight: 700;

    padding: 5px 10px;

    color: #fff;
    background-color: #295f38;
}

.thanks dl dd {
    font-size: 90%;
    padding: 10px;
}

.thanks h2 {
    margin-top: 20px;
}


.confirm {
    padding: 20px 20px 0 20px;
}

#pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;

    cursor: pointer;
}

#pagetop:hover {
    opacity: .7;
}

footer {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    padding: 20px 0;
}

.copyright {
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
}




@media screen and (min-width: 768px) {
    form table th {
        width: 200px;
    }

    form table th:after {
        position: absolute;
        top: 5%;
        right: 0;

        display: block;

        width: 1px;
        height: 90%;

        content: '';
        content: '';

        border-left: 1px solid rgba(235, 91, 39, .4);
    }
}

@media print,
screen and (min-width: 768px) {
    .btn {
        font-size: 140%;
    }

    .btnNext {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .btnNext li {
        width: calc(50% - 10px);
    }

    .makerList{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (min-width: 769px) {
    .btn:hover {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);

        color: #fff;
        background-color: #e72420;
    }

    button.btn.back:hover {
        color: #333;
    }
}

@media screen and (max-width: 767px) {
    .larger {
        font-size: 110%;
    }

    main section {
        padding: 20px 0;
    }

    form table th,
    form table td {
        display: block;

        width: 100%;
        padding: 10px;
    }

    form table th:before {
        position: absolute;
        top: 10px;
        left: 0;

        width: 5px;
        height: calc(100% - 20px);

        content: '';

        background-color: #295f38;
    }

    form table.confirm td {
        padding-top: 0;
    }

    form dl dd {
        font-size: 85%;
    }

    .copyright {
        font-size: 80%;
    }

}

@media screen and (max-width: 767.98px) {
    .btnNext li+li {
        margin-bottom: 20px;

        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    header h1 img {
        width: 100px;
    }
}

@media screen and (max-width: 639px) {
    .container {
        font-size: 100%;
    }

    .radioWrap li {
        display: block;
    }
}