@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');
* {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: #333;
}

table {
    border-collapse: collapse;
}

h2 {
    margin: 2px 0;
    padding: 5px 0 5px 10px;
    background: #3F3F3F;
    font-size: 20px;
    border-radius: 8px;
    width: 100%;
    color: #fff;
}

h3 {
    font-size: 18px;
    color: #333333;
    margin: 10px 0;
    border-bottom: 1px solid #3F3F3F;
    border-left: 5px solid #3F3F3F;
    padding: 5px;
}

h4 {
    position: relative;
    margin: 2px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

h4::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    width: 15%;
    margin: 0 auto;
    border: solid 2px #AF1D31;
    border-radius: 2px;
}

.sp-none {
    display: none;
}

#main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    width: 98%;
    margin: 0 auto 10px;
    background: #fff;
}

@media screen and (min-width: 765px) {
    .pc-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        width: 99%;
        max-width: 1024px;
        margin: 0 auto;
    }
    #main,
    #sub {
        justify-content: space-around;
        max-width: 750px;
    }
    .sp-none {
        display: table;
    }
    .pc-none {
        display: none;
    }
}

#footer {
    width: 100%;
    padding: 5px 0;
    text-align: center;
    background: #AF1D31;
    color: #fff;
    font-size: 14px;
    line-height: 1.4em;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: #F2E644;
}

span.line {
    background: linear-gradient(transparent 60%, gold 60%);
}

.responsive-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

@media screen and (min-width: 765px) {
    .responsive-box {
        flex-wrap: nowrap;
        justify-content: space-around;
    }
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.flex {
    display: flex;
}

.ai-center {
    align-items: center;
}

.fl-wrap {
    flex-wrap: wrap;
}

.reflection-base {
    position: relative;
    overflow: hidden;
}

.reflection {
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 3s cubic-bezier(0, 0.3, 0.6, 0)infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2.5s cubic-bezier(0, 0.3, 0.6, 0)infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-moz-keyframes reflection {
    0% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -moz-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-ms-keyframes reflection {
    0% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -ms-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -ms-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-o-keyframes reflection {
    0% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -o-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -o-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.c {
    text-align: center
}

.l {
    text-align: left
}

.r {
    text-align: right
}

.nb {
    font-weight: normal
}

.b {
    font-weight: bold
}

.u {
    text-decoration: underline
}

.nu {
    text-decoration: none
}

.gray {
    color: gray !important
}

.white {
    color: white !important
}

.yellow {
    color: yellow !important
}

.green {
    color: green !important
}

.blue {
    color: #33558a !important
}

.black {
    color: black !important
}

.orange {
    color: #ff7700 !important
}

.ad_form #btnConfirm {
    display: inline-block;
    text-align: center;
    width: 40%;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(#ffc648, #fd550e);
    border-radius: 8px;
    padding: 10px 0 8px 0;
    font-size: 25px;
    font-weight: bold;
    border: 2px solid #fe8325;
    margin: 0 auto;
}

.modal_img {
    display: block;
    width: 90%;
    min-width: 350px;
    max-width: 500px;
    object-fit: contain;
    margin: auto;
}

.modal_close {
    position: absolute;
    top: -20px;
    right: 0;
    width: 42px;
    height: 42px;
}

.contact {
    width: 100%;
    max-width: 800px;
    margin: 10px auto;
    padding: 10px;
    background: #F2F2F2;
}

.contact_img {
    width: 100%;
}

.contact_form th {
    text-align: left;
}

.pr {
    width: 100%;
    text-align: right;
    color: #888;
    font-size: 12px;
}

.pr-black-color {
    color: #161616;
}