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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: .05em;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    color: #231815;
    background-color: #FEE792;
    background-image: url(../images/bg_top.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
}

.bg_none {
    background-color: #FEE792;
    background-image: none;
}

img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    vertical-align: bottom;
    margin-bottom: 60px;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style-type: none;
}

.larger {
    font-size: 150%;
    font-weight: 700;
    color: #a97600;
}

.orange {
    font-weight: 600;
    color: #E95513;
}

.small {
    font-size: 80%;
}

.notice {
    color: #dc040e;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.block {
    display: block;
}

label {
    display: inline-block;
    margin-right: 20px;
}

.inr {
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}


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

form contents

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

input[type=text] {
    font-size: 100%;
    width: 100%;
    padding: 6px;
    border: 2px solid #d6dae3;
    border-radius: 4px;
}

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

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

select[name=age_y] {
    width: 80px;
}

input[name=price] {
    width: 100px;
}

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

.select-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.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 #6d93e5;
    border-bottom: solid 2px #6d93e5;
}

.select-wrap.single {
    width: 180px;
}

select {
    font-size: inherit;
    width: 100%;
    height: 44px;
    padding: 4px 6px;
    vertical-align: middle;
    text-indent: 0.01px;
    text-overflow: '';
    color: inherit;
    border: 2px solid #d6dae3;
    border-radius: 4px;
    outline: 0;
    background: none #fff;
    /* -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
}


select option {
    background-color: #fff;
}

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

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

.btn {
    position: relative;
    font-size: 130%;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 10px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 60px;
    background-color: #C30E23;
    text-shadow: 0 -2px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-g {
    position: relative;
    font-size: 130%;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 10px;
    padding: 20px 10px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 60px;
    background-color: #AECE10;
    text-shadow: 0 -2px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-rtn {
    position: relative;
    font-size: 130%;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 60px auto 20px;
    padding: 20px 10px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    text-align: center;
    color: #000;
    border: 0;
    border-radius: 60px;
    background-color: #ACACAC;
}

.btn::after,
.btn-g::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.btn-rtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-135deg);
    width: 12px;
    height: 12px;
    border-top: 4px solid #484848;
    border-right: 4px solid #484848;
}

.btn:active,
.btn-g:active,
.btn-rtn:active {
    transform: translateY(4px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* .btn:hover,
.btn-g:hover {
    cursor: pointer;
} */

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

.btnNext li {
    width: 100%;
    margin-bottom: 20px;
}

.disc li {
    position: relative;
    padding-left: 1em;
}

.disc li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '●';
    color: #6d93e5;
}

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

.indent {
    margin-left: 1em;
    text-indent: -1em;
}



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

header

-------------------- */
header {
    width: 100%;
}

header .mainttl {
    padding: 0;
}

header h1 {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
}

header h1 img {
    margin-bottom: 60px;
}

header h2 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

header p {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
}


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

main

-------------------- */
main {
    flex: 1;
    width: 100%;
    /* background-color: rgba(255, 255, 255, .2); */
    /* backdrop-filter: blur(4px); */
}

main section {
    width: 100%;
    padding: 20px 15px 30px;
    margin-bottom: 0px;
}

main h2,
main h3 {
    font-weight: 700;
}

main .ttl {
    font-size: 180%;
    position: relative;
    display: block;
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    /* border: 2px solid #fff; */
    /* background: linear-gradient(to right, #61bfbe, #79d59f); */
    background: #8EC31F;
}

main .wrap {
    padding: 20px 15px;
    border-radius: 8px;
    background-color: #fff;
    filter: drop-shadow(0 0 10px rgba(231, 120, 30, 0.1));
}

main section .cpn {
    margin: 0 auto 60px;
    /* padding: 20px 15px; */
    border-radius: 8px;
    background-color: #fff;
    filter: drop-shadow(0 0 10px rgba(231, 120, 30, 0.1));
}

main section .fnl {
padding: 20px 15px;
text-align: center;
}

main section .fnl p {
font-size: 20px;
margin-bottom: 6px;
font-weight: 700;
}

main section .fnl p .sanka {
background-color: #E05B20;
margin-right: 10px;
padding: 4px 6px;
border-radius: 4px;
color: #fff;
}

main section .fnl p .fnl-soon {
color: red;
font-size: 26px;
font-weight: 900;
}

main .step {
    margin: 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

main .step>div {
    position: relative;
}

main .step>div:not(:last-child)::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -30px;
}

main .step>div:not(:first-child) {
    margin-top: 40px;
}

main .step h3 {
    font-size: 120%;
    text-align: center;
    color: #006491;
}

main .step h3 span {
    font-size: 80%;
    display: block;
    width: 100px;
    margin: 0 auto 5px;
    padding: 4px;
    color: #fff;
    background-color: #006491;
}

main .innerBox figure {
    max-width: 160px;
    margin: 10px auto;
}

main .detail h3 {
    font-size: 120%;
    padding: 2px 10px;
    /* color: #006491; */
    color: #E95513;
    /* border-left: 6px solid currentColor; */
    border-left: 6px solid #E95513;
    background-color: #e9e9e9;
}

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

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

main .detail .tel_wrap p {
    padding-bottom: 0;
}

main .item .wrap {
    background-color: rgba(255, 255, 255, .6);
}

main .makerList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

main .makerList li {
    box-sizing: border-box;
    border-bottom: 1px dashed #c2a630;
    width: calc(100% / 2);
}

main .makerList li:first-child {
    border-bottom: none;
    width: calc(100% / 1);
}

main .makerList li:nth-child(2n) {
    border-right: 1px dashed #c2a630;
}

main .caution {
    margin-top: 30px;
}

main .button-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main .button-list li {
    flex: 0 0 30%;
    margin: 10px;
    text-align: center;
    flex: 1;
}

main .button-list li a {
    position: relative;
    padding-bottom: 16px;
    display: block;
    padding: 12px 0px 18px;
    background-color: #ECA819;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button-list li a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    margin-bottom: 4px;
}

main .button-list li a:hover {
    background-color: #D7950A;
}

.sec_ttl {
    margin-bottom: 20px;
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6);
}

.sec_txt {
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6);
}

.img_box {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
}

.img_stickerbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    /* width: 80px; */
    margin: 0 auto;
}

.img_stickerbox img {
  flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.efforts_container {
    margin-bottom: 60px;
}

.efforts_box {
    max-width: 440px;
    margin: 0 auto 20px;
    border-radius: 10px;
    text-align: center;
    background-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.efforts_txt {
    padding: 16px 20px;
    background-color: #E95513;
    border-radius: 10px 10px 0 0;
    text-align: left;
    text-decoration: underline;
    color: #fff;
    font-size: 16px;
}

.efforts_subtxt {
    padding: 16px 20px 0;
    color: #fff;
    text-align: left;
    font-size: 16px;
}

.efforts_img {
    padding: 16px 20px;
    margin-bottom: 0;
    background-color: #000;
    border-radius: 0 0 10px 10px;
}


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

main form

-------------------- */
.mail_send {
    color: #cb390b;
    text-decoration: underline;
}

form table {
    width: 100%;
    margin: 20px 0 0;
    border-top: 1px solid #d6dae3;
}

form table tr {
    border-bottom: 1px solid #d6dae3;
    display: block;
    padding-bottom: 15px;
}

form table td,
form table th {
    display: block;
    width: 100%;
}

form table td {
    text-align: left;
}

form table th {
    font-weight: 700;
    position: relative;
    vertical-align: text-top;
    padding: 10px 0 10px 10px;
    margin-top: 10px;
}

form table th span {
    display: inline-block;
}

form table th:before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: calc(100% - 20px);
    content: '';
    background-color: #b2c1e1;
}

tr td .w50 {
    width: 50%;
}

form dl {
    overflow-y: auto;
    height: 200px;
    border: 1px solid #6d93e5;
}

form dl dt {
    font-weight: 700;
    padding: 5px;
    border-bottom: 1px solid #6d93e5;
    background-color: #f3f6fd;
}

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

form dl dd {
    font-size: 90%;
    padding: 10px 10px 20px;
}

form dl::-webkit-scrollbar {
    width: 8px;
    background: #e9e9e9;
}

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

form .upload {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 10px;
    color: #fff;
    border: 0;
    background-color: #293883;
}

form .upload>input {
    display: none;
}

form .agreement {
    display: block;
    margin-top: 10px;
}

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

form .required {
    font-size: 85%;
    margin-left: 5px;
    padding: 2px 4px;
    color: #fff;
    background-color: #dd1414;
}

form .example {
    font-size: 80%;
    margin-top: 5px;
}

form .error {
    display: block;
    margin-top: 5px;
    color: #c1020e;
}

form .time {
    margin: 20px 0;
}

.company {
    margin-top: 30px;
}

form .disabled {
    opacity: .5;
}

form .disabled a {
    pointer-events: none;
}

form dl.toggle1 {
    margin-top: 10px;
    height: auto;
}

form .infobox dd {
    line-height: 1.8em;
}

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

shoplist

-------------------- */
.shoplist {
    margin-top: 60px;
}

.shoplist main section div {
    max-width: 800px;
    margin: 0 auto 20px;
}

.shoplist main section div .sec_txt {
    margin-bottom: 20px;
    text-align: left;
}

.shoplist main section .sec_ttl,
.shoplist main section .sec_txt {
    text-shadow: none;
}

.accordion {
    max-width: 800px;
    margin: 0 auto 10px;
    border-radius: 10px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::before,
.accordion summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.accordion summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion summary::after {
    transition: rotate .3s;
}

.accordion[open] summary::after {
    rotate: 90deg;
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 0 20px;
    background-color: #EEEDE8;
    font-weight: 700;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
    font-size: 18px;
}

.accordion dl {
    position: relative;
    padding: 20px 2em;
    background-color: #EEEDE8;
    border-radius: 0px;
    transition: transform .5s, opacity .5s;
     font-size: 16px;
}

.accordion[open] dl:last-of-type {
    border-radius: 0 0 10px 10px;
}

.accordion dl::after {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
}

.accordion dl:last-child::after {
    content: none;
}

.accordion dd {
    margin: 0 0 10px 10px;
}

.accordion dd .link {
    text-decoration: underline;
}

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

serial

-------------------- */
.serial .container main section .ttl {

    background-color: #8EC31F;
    padding: 0px;
    display: block;
    text-align: center;
}

.serial .container main section .ttl span {
    display: block;
    width: 100%;
}
.wrap form table tr th span {
    padding: 0 6px;
    margin-left: 10px;
    background-color: red;
    color: #fff;
}

.serial form table th {
    width: 100%;
}

.serial form table td div {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.serial form table td div .label {
    white-space: nowrap;
    flex-shrink: 0;
}

.serial form table td div input[type="text"] {
    flex: 1;
    min-width: 0;
}

.wrap form table tr td span {
    font-size: 14px;
}

.serial .container main section .inr .wrap form table {
    margin: 10px 0 40px;
}

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

confirm

-------------------- */
.confirm td img {
    max-width: 300px;
}

/* .confirm  */


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

thanks

-------------------- */
.thanks {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
}

.thanks dl {
    margin-top: 20px;
    border: 2px solid #E95513;
    background-color: #fff;
}

.thanks dl dt {
    font-weight: 700;
    padding: 5px 10px;
    color: #fff;
    background-color: #E95513;
}

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


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

footer

-------------------- */
footer {
    font-size: 80%;
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    /* background: linear-gradient(to right, #005bac, #0b318f); */
    /* background-color: rgba(0, 115, 179, .7); */
    background-color: #0a0a0a;
    color: #fff;
}

@media screen and (min-width:767px) {
    body {
        font-size: 18px;
    }

    main .wrap {
        padding: 30px;
    }

    main .makerList li {
        box-sizing: border-box;
        border-bottom: 1px dashed #c2a630;
        width: calc(100% / 3);
    }

    main .makerList li:first-child {
        border-bottom: 1px dashed #c2a630;
        width: calc(100% / 3 * 2);
    }

    main .makerList li:nth-child(2n) {
        border-right: 0;
    }

    main .makerList li:nth-child(3n),
    main .makerList li:nth-child(3n+1) {
        border-right: 1px dashed #c2a630;
    }

    main .button-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 60px auto 0px;
        width: 80%;
        max-width: 900px;
    }

    main .button-list li a {
        min-height: 80px;
    }

    .step .clmn2 {
        display: flex;
        align-items: center;
    }

    .step .clmn2>figure {
        width: 25%;
    }

    .step .clmn2>.txt {
        font-size: 90%;
        padding-left: 20px;
        width: 75%;
    }

    main section {
        margin-bottom: 60px;
    }

    .efforts_container {
        margin-bottom: 120px;
    }

    .serial form table td {
        width: 40%;
    }

    .img_stickerbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    width: 120px;
    margin: 0 auto;
}
}