@charset "UTF-8";

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

:root {
    --font-ja: 'Yu Gothic', '游ゴシック体', 'YuGothic', '游ゴシック', sans-serif;
    --font-en: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    --orange: #F15A24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    color: #000;
    background-color: #FFFDFA;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.en-txt {
    font-family: var(--font-en);
}

.parallax {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 85vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg01 .parallax-bg {
    background-image: url("../images/parallax-bg01.jpg");
}

.bg02 .parallax-bg {
    background-image: url("../images/parallax-bg02.jpg");
}

@media screen and (min-width:600px) {

    .parallax {
        height: 100vh;
    }
}

@media screen and (min-width:900px) {

    .parallax {
        width: 100%;
        margin-left: auto;
    }

    .parallax-bg {
        background-attachment: fixed;
        background-position: 420px 50%;
    }
}




/* -----------------------------
    Layout
------------------------------ */


main {
    padding: 50px 16px 62px;
}

@media screen and (min-width:900px) {

    .wrapper {
        position: relative;
        z-index: 0;
    }

    .bg-blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url(../images/top-bg.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(10px);
        z-index: -1;
        pointer-events: none;
        transform: scale(1.1);
    }

    .main {
        padding-left: 0;
        padding-right: 0;
    }

    .pc-flex {
        max-width: 1500px;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex: none;
        align-items: flex-start;
        justify-content: center;
        margin: 0 auto;
    }

    .pc-aside {
        display: flex;
        align-items: center;
        flex: 1;
        height: 100vh;
    }

    .pc-aside-inner > * {
        opacity: 0;
        transform: translateY(40px);
    }  


    .content {
        position: relative;
        z-index: 1;
        margin: 50px 40px 60px 0;
        background-color: #FFFDFA;
    }
}

@media screen and (max-width: 900px) {

    .pc-aside {
        display: none;
    }
}

/* -----------------------------
    First View
------------------------------ */
.pc-aside {
    position: sticky;
    top: 0;
    color: #fff;
    padding-left: 24px;
}

.pc-aside .logo {
    width: 235px;
    margin-bottom: 60px;
}

.pc-aside-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    letter-spacing: 6.4px;
    margin-bottom: 20px;
}

.pc-aside-subttl {
    font-size: 26px;
    letter-spacing: 1.3px;
    font-weight: 500;
    margin-bottom: 60px;
}

.pc-aside-period {
    font-size: 42px;
    margin-bottom: 100px;
}

.pc-aside-period > span {
    font-size: 30px;
}

.pc-aside-en {
    font-size: 14px;
    line-height: 2;
}

.fv {
    position: relative;
    width: inherit;
    height: 400vw;
    padding: 0;
}

.fv-main {
    position: sticky;
    top: 0;
}

.fv-main-img {
    position: relative;
    width: 52%;
    margin: 32px auto 0;
    z-index: -1;
    overflow: hidden;
}

.fv-main-img figure {
    width: 100%;
}

.fv-aside {
    position: absolute;
    top: 74vw;
    left: 5.8vw;
}

.fv-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8.184134vw;
    letter-spacing: 3.2px;
    line-height: 1.7;
}

.fv-subttl {
    margin-top: 0px;
    font-size: 3.58974vw;
}

.fv-period {
    margin-top: 30px;
    font-size: 24px;
}

.fv-period > span {
    font-size: 16px;
}

.fv-en {
    margin-top: 42px;
    font-size: 10px;
    line-height: 1.8;
}

@media (min-width: 600px) and (max-width: 900px) {
    .fv-en {
        display: none;
    }

    .fv-aside {
        top: 49vw;
    }
}

@media screen and (min-width:900px) {

    .content {
        width: 480px;
        border-radius: 30px;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .fv {
        height: 180vw;
    }

    .fv-aside {
        top: 29vw;
        left: 2vw;
    }

    .fv-ttl {
        font-size: 32px;
    }

    .fv-subttl {
        font-size: 14px;
    }
}

/* -----------------------------
    Main
------------------------------ */

/* Intro */
.intro {
    margin-bottom: 80px;
}

.intro-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.intro-txt {
    font-size: 14px;
    font-weight: bold;
    line-height: 2.5;
    letter-spacing: 0.7px;
    text-align: center;
}

.intro-img {
    margin-top: 30px;
    width: 70px;
}

@media (min-width: 600px) and (max-width: 900px) {

    .intro-img {
        margin-top: 60px;
        width: 80px;
    }
}

@media screen and (min-width:900px) {

    .intro-txt {
        width: 90%;
        font-size: 16px;
    }
}

/* Campaign Overview */
.cp-overview {
    padding: 80px 0;
}

.cp-overview-content {
    text-align: center;
}

.cp-overview-content-ttl {
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.cp-overview-content-ttl > span {
    font-size: 12px;
    letter-spacing: 0.6px;
}

.cp-overview-content-ttl,
.cp-overview-content-list-item {
    opacity: 0;
    transform: translateY(40px);
}

.cp-overview-content-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cp-overview-content-list-item {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 35px;
    border-bottom: 1px dashed #BDBDBD;
}

.cp-overview-content-list-item h3 {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1.6px;
    color: var(--orange);
}

.cp-overview-content-list-item p {
    font-weight: 600;
    line-height: 2;
    letter-spacing: 2px;
}

.cp-overview-content-list-item > p span.small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #878787;
}

.cp-overview-content-list-item:nth-of-type(1) p {
    font-size: 24px;
}

.cp-overview-content-list-item:nth-of-type(1) p > span {
    font-size: 18px;
}

.cp-overview-content-list-item:nth-of-type(2) p {
    font-size: 20px;
}

.cp-overview-content-list-item:nth-of-type(3) p {
    font-size: 14px;
}

.cp-present {
    width: 250px;
    margin: 24px auto;
}

@media screen and (min-width:900px) {

    .cp-overview-content-list-item > p span.small {
        font-size: 14px;
    }
}

/* Notes */
.notes {
    padding: 85px 0 65px;
    color: #fff;
    background-color: var(--orange);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.notes-inner {
    padding: 0 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.notes-ttl {
    margin-bottom: 50px;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
}

.notes-ttl > span {
    font-size: 12px;
    letter-spacing: 0.6px;
}

.notes-list {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.7px;
}

.notes-list-item::before {
    content: "●";
    color: #fff;
    margin-right: 5px;
    font-size: 11px;
    display: inline-block;
}

.submit-btn-wrapper {
    text-align: center;
    margin: 50px 0 60px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 55px;
    background-color: #fff;
    color: var(--orange);
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid var(--orange);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.submit-btn::after {
    content: '↗';
    margin-left: 0.5em;
    font-size: 0.9em;
}

@media (hover: hover) and (pointer: fine) {
    .submit-btn:hover {
        background-color: var(--orange);
        color: #ffffff;
        border: 2px solid #fff;
    }
}

@media screen and (min-width:900px) {

    .notes {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .notes-list {
        width: 76.92%;
    }
}

.kiku-oubo {
    width: 250px;
    margin: 0 auto;
}


/* -----------------------------
    Slider
------------------------------ */
.slider {
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: 10px;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 60px;
    width: 100vw;
    overflow: hidden;
}

.slider-row {
    display: flex;
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 10px;
    animation: scroll-left 20s linear infinite;
    min-width: 200%;
}

.slider-row.right .slider-track {
    animation: scroll-right 20s linear infinite;
}

.slider-track img {
    width: 140px;
    height: 87px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (min-width: 600px) and (max-width: 900px) {
    .slider-track img {
        width: 280px;
        height: 174px;
    }
}

@media screen and (min-width:900px) {

    .slider {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

/* アニメーション：左方向 */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* アニメーション：右方向 */
@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* TOP Button */

.to-top a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.to-top .arrow {
    width: 18px;
    height: 18px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}

.to-top .text {
    font-size: 14px;
    letter-spacing: 0.7px;
}

/* order */

.order {
    padding: 65px 0;
}

.order-ttl {
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
}

.order-ttl > span {
    font-size: 12px;
    letter-spacing: 0.6px;
}

.order-intro {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 35px;
}

.order-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.order-list-item {
    width: 70%;
    display: flex;
    align-items: center;
    color: var(--orange);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    border: 1px solid var(--orange);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.rakuten {
    width: 92px;
}

.yahoo {
    width: 120px;
}

.order-list-item:hover {
    color: #fff;
    background-color: var(--orange);
}

.order-list-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
}

@media screen and (min-width:900px) {

    .order-list-item {
        width: 55%;
    }
}