body {
    position: relative;
    font-weight: bold;
    letter-spacing: 0.1em;
    overflow-x: hidden;
}
.example {
    width: 100%;
}
.example img {
    width: 100%;
    height: auto;
}

/* ------------------------- */
/* ボタン */
/* ------------------------- */
.btn {
    display: inline-block;
    color: #ffffff;
    background: linear-gradient(96.22deg, #D34A4A 12.21%, #E16565 91.45%);
    font-size: 20px;
    text-align: center;
    line-height: 1.5em;
    align-items: center;
    padding: 20px 80px;
    margin: auto;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    transition: .2s;
    text-decoration: none;
    position: relative;
    width: 400px;
}
.btn img {
    width: 23px;
    height: 23px;
    margin-left: 18px;
}
.btn:hover {
    box-shadow: none;
    transform: translate3d(0, 2px, 0);
}
.sub-btn {
    background: linear-gradient(180deg, #51BAE9 0%, #0087C5 100%);
}

/* 光らせるためのstyle */
.shine{
    position: relative;
    overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
    content: "";
    animation: shine 2s cubic-bezier(0.25, 0, 0.25, 1) infinite;
    background-color: #fff;
    width: 140%;
    height: 100%;
    transform: skewX(-45deg);
    top: 0;
    left: -160%;
    opacity: 0.5;
    position: absolute;
}
/* 光の動き */
@keyframes shine{
    0% {
        left: -160%;
        opacity: 0;
    }
    70% {
        left: -160%;
        opacity: 0.5;
    }
    71% {
        left: -160%;
        opacity: 1;
    }
    100% {
        left: -20%;
        opacity: 0;
    }
}
/* ------------------------- */
/* ボタン */
/* ------------------------- */



.label {
    position: fixed;
    bottom: 0;
    background: #01449D;
    width: 100vw;
    min-height: 80px;
    padding: 20px 0;
    align-items: center;
}
.label div {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.label p {
    color: white;
}
.label br {
    display: none;
}
.label span {
    font-size: 30px;
    text-shadow    : 
    1px  1px 0px #ffffff,
    -1px  1px 0px #ffffff,
    1px -1px 0px #ffffff,
    -1px -1px 0px #ffffff,
    1px  0px 0px #ffffff,
    0px  1px 0px #ffffff,
    -1px  0px 0px #ffffff,
    0px -1px 0px #ffffff;        /* 文字の影 */
}
.yureru-s {
    animation: yureru-s 3s infinite;
}
@keyframes yureru-s {
    0% {
        transform: translate(2px, 0px);
    }
    5% {
        transform: translate(-2px, 0px);
    }
    10% {
        transform: translate(2px, 0px);
    }
    15% {
        transform: translate(-2px, 0px);
    }
    20% {
        transform: translate(2px, 0px);
    }
    25% {
        transform: translate(-2px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

span {
    font-style: normal;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #D34A4A;    
    text-shadow    : 
    1px  1px 0px #ffffff,
    -1px  1px 0px #ffffff,
    1px -1px 0px #ffffff,
    -1px -1px 0px #ffffff,
    1px  0px 0px #ffffff,
    0px  1px 0px #ffffff,
    -1px  0px 0px #ffffff,
    0px -1px 0px #ffffff;        /* 文字の影 */
    letter-spacing: 0.1em;
}


/* ------------------------- */
/* FirstView */
/* ------------------------- */
.fv {
    width: 100%;
    height: 90vh;
    min-height: 706px;
    background-image: url("../images/bgimage.jpg");
    background-position: center;
    background-size: cover;
    padding-top: 10px;
}
.fv-inner {
    width: 69vw;
    max-width: 1200px;
    text-align: center;
    margin: auto;
}
.main-copy {
    width: 69vw;
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: left;
    position: relative;
}
.fadein-top2 {
    width: 100%;
    height: auto;
    animation-name: slide-left;
    animation-duration: .5s;
    animation-delay: .2s;
    animation-fill-mode: both;
}
@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(-1000px);
    }
    60% {
        opacity: 1;
        transform: translateX(50px);
    }
    95% {
        opacity: 1;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
.top-btn {
    position: absolute;
    left: 50%;
    bottom: -100px;
    animation-name: slide-top;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}
@keyframes slide-top {
    0% {
        opacity: 0;
        transform: translate(-50%, -50px);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, 30px);
    }
    95% {
        opacity: 1;
        transform: translate(-50%, -5px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0px);
    }
}
/* ------------------------- */
/* FirstView */
/* ------------------------- */


section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-inner {
    width: 1000px;
    text-align: center;
    margin: auto;
}

h1 {
    text-align: left;
    margin: auto;
    padding: 10px 0 20px;
}
h1 img {
    height: 40px;
    width: auto;
}

h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25);
    padding: 26px 0;
    letter-spacing: 0.1em;
}

.lead-text {
    font-size: 36px;
    color: #01449D;
    line-height: 1.5;
    margin: 30px auto;
}
.underLine {
    font-size: 50px;
    line-height: 1.5;
    position: relative;
}
.underLine:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 4px;
    background: #D34A4A;
    border: 1px solid #FFFFFF;
    transition: all 1s ease;
    transition-delay: .5s;
}
.underLine.isActive:after {
    width: 100%;
}

.start {
    display: inline-block;
    font-weight: 600;
    font-size: 40px;
    color: #01449D;
    position: relative;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25);
    margin: 40px auto;
}
.start::after {
    content:"";
    display:block;
    width:100%;
    height:4px;
    background-color:#D34A4A;
    position:absolute;
    bottom:0;
    left:0;
}

h4 {
    padding: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25);
    margin: 30px auto;
}

.merit {
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #01449D;
    margin: 40px auto 0;
}

.entry-method {
    display: flex;
    justify-content: space-between;
}
.entry-item {
    width: 280px;
    padding: 8px;
    background-color: aliceblue;
    border-radius: 4px;
}
.fade-step {
    opacity: 0;
    transition: all 2s;
}
.fade-step.fadein {
    opacity: 1;
}
.entry-item img {
    width: 100%;
    height: auto;
}
.entry-item p {
    color: #024D9F;
}
.step {
    font-size: 20px;
    background-color: #f7ad58;
    padding: 10px;
}



.countdown {
    width: 1000px;
    background: linear-gradient(90deg, #2A4995 0%, #3D67CC 100%);
    margin: 20px auto;
}
.countdown p {
    text-align: center;
    padding: 50px 0;
    color: #FFFFFF;
}
.countdown p span {
    font-size: 45px;
}

.goal {
    color: #FFFFFF;
    font-size: 42px;
    line-height: 57px;
    text-align: center;
    margin: 20px 0;
}

.closing {
    font-size: 30px;
    line-height: 43px;
    text-align: center;
    color: #024D9F;
    margin-bottom: 40px;
    letter-spacing: 0;
    margin: 80px auto 80px;
}
.close-text {
    font-size: 18px;
    line-height: 26px;
    color: #024D9F;
}

.attention {
    width: 1000px;
    margin: auto;
}
h5 {
    font-weight: bold;
    font-size: 16px;
    text-align: left;
}
.attention ul {
    text-align: left;
    font-size: 15px;
    line-height: 1.5em;
    letter-spacing: 0;
}
footer {
    padding: 30px;
    background: linear-gradient(90deg, #2A4995 0%, #3D67CC 100%);
    color: #FFFFFF;
    font-weight: normal;
    font-size: 13px;
}
.logo-outer img {
    width: 195px; 
    height: auto;
}
.container {
    width: 1170px;
    margin: auto;
    display: flex;
    padding-bottom: 90px;
}
.container div {
    padding: 15px;
}
.container p {
    margin-bottom: 20px;
}
.sp {
    display: none;
}

.fadein-up {
    transform: translateY(50px);
    opacity: 0;
}
.fadein-up.isActive {
    transform: translateY(0);
    opacity: 1;
    transition: .5s;
}
.fadein-left {
    transform: translateX(-50px);
    opacity: 0;
}
.fadein-left.isActive {
    transform: translateX(0);
    opacity: 1;
    transition: .5s;
}
.fadein-top {
    transform: translateY(-30px);
    opacity: 0;
}
.fadein-top.isActive {
    transform: translateY(0);
    opacity: 1;
    transition: 1s;
    transition-delay : .5s;
    transition-timing-function : ease;
}




@keyframes pop-up {
    0% {
        opacity: 0;
        transform: scale(.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    90% {
        opacity: 1;
        transform: scale(.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadein-right {
    transform: translateX(50px);
    opacity: 0;
}
.fadein-right.isActive {
    transform: translateX(0);
    opacity: 1;
    transition: .5s;
}

.fadein-land {
    transform: scale(1.5);
    opacity: 0;
}
.fadein-land.isActive {
    opacity: 1;
    transition: .8s ease;
    transform: scale(1);
}

.ex-outer {
    width: 100%;
    overflow: hidden;
}
.ex-image:hover {
    transform: scale(1.2);
    transition: all .5s;
}


@media screen and (max-width: 768px) {
    .fv {
        max-height: 600px;
    }
    .fv-inner {
        width: 100vw;
        height: 100%;
        text-align: center;
    }
    .main-copy {
        width: 345px;
        margin: 40px auto;
    }
    .pc-copy {
        display: none;
    }
    .sp-copy {
        display: block;
    }
    .sp {
        display: block;
    }

    .btn {
        padding: 12px 10px;
        font-size: 16px;
        width: 90%;
    }

    .label {
        padding: 10px 0;
    }
    .label div {
        flex-direction: column;
    }
    .label p {
        margin-bottom: 20px;
    }
    .label br {
        display: block;
    }
    .label span {
        font-size: 24px;
    }

    section {
        padding-top: 50px;
    }
    .section-inner {
        width: 345px;
    }
    img {
        width: 100%;
        height: auto;
    }
    .countdown {
        max-width: 345px;
    }
    .countdown p span {
        font-size: 20px;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .lead-text {
        font-size: 24px;
        line-height: 2.5;
    }
    .underLine {
        font-size: 28px;
    }
    .underLine:after {
        transition-delay: 0s;
    }
    .fadein-land {
        transform: scale(1);
    }

    .merit {
        font-size: 17px;
    }
    .start {
        font-size: 26px;
    }

    .label div {
        max-width: 345px;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }
    
    .label-btn {
        display: block;
        padding: 0;
        margin: 0;
    }


    .entry-method {
        display: flex;
        flex-direction: column;
    }
    .entry-item {
        width: 90%;
        margin: auto;
        margin-top: 20px;
        transition: all .5s;
    }

    .goal {
        font-size: 27px;
        line-height: 40px;
    }
    .attention {
        max-width: 345px;
    }
    .closing {
        font-weight: bold;
        font-size: 18px;
        line-height: 43px;
        text-align: center;
        color: #024D9F;
        margin-bottom: 40px;
        margin: 30px auto 30px;
    }
    li {
        font-size: 11px;
    }

    .container {
        width: 100%;
        margin: auto;
        flex-direction: column;
        padding-bottom: 150px;
    }
    .logo-outer img {
        display: none;
    }
    .container div {
        padding: 0;
    }
    .container p {
        font-size: 10px;
    }
    .pc {
        display: none;
    }
}