@charset "UTF-8";
.mb {
  margin-bottom: 25px;
}
/*======================
base
====================== */
* {
  min-inline-size: 0;
}

@media screen and (max-width: 834px) {
  div > p {
    font-size: inherit;
  }
}
ul {
  list-style-type: none;
}

picture {
  display: block;
  line-height: 0;
}

footer {
  margin-top: 0;
}

/*======================
汎用クラス
====================== */
.pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .pcView {
    display: none;
  }
}

.spView {
  display: none;
}
@media screen and (max-width: 768px) {
  .spView {
    display: block;
  }
}

.dib {
  display: inline-block;
}



/*======================
メイン
====================== */
.main {
  margin-bottom: 0;
}

/*======================
メインビジュアル
====================== */
.mainvl {
    aspect-ratio: 2428 / 1100;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.mainvl picture {
    display: block;
    width: 100%;
    height: 100%;
}

.mainvl img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 480px) {
    .mainvl {
        aspect-ratio: 1 / 1;
    }
}

/*======================
Lead
======================*/
#lead {
    width: 100%;
    margin: 0;
    padding: 120px 0;
    background: url("./img/leadbg_pc.webp") center center / cover no-repeat;
    text-align: center;
}

#lead .inside {
    width: min(90%, 1200px);
    margin: 0 auto;
}

#lead .ttl {
    margin-bottom: 32px;
}

#lead .ttl h3 {
    color: #fff;
    text-shadow: 0 0 38px rgba(0, 0, 0, 1);
    font-size: clamp(28px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .04em;
    
}

#lead .lead-copy p {
    color: #fff;
    text-shadow: 0 0 38px rgba(0, 0, 0, 1);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 2;
    letter-spacing: .04em;
}

#lead .lead-copy p + p {
    margin-top: 2em;
}


/*======================
Entry
======================*/
.entry {
    width: min(90%, 820px);
    margin: 70px auto 0;
}

.entry picture,
.entry img {
    display: block;
    width: 100%;
}


/*======================
SP
======================*/
@media screen and (max-width: 768px) {

    #lead {
        padding: 60px 0;
        background-image: url("./img/leadbg_sp.webp");
    }

    #lead .inside {
        width: 90%;
    }

    #lead .ttl {
        margin-bottom: 20px;
    }

    #lead .ttl h3 {
        font-size: 18px;
        line-height: 1.45;
    }

    #lead .lead-copy p {
        font-size: 16px;
        line-height: 1.9;
    }

    #lead .lead-copy p + p {
        margin-top: 1.6em;
    }

    .entry {
        width: 90%;
        margin-top: 40px;
    }

}

/*======================*
 * Event
 *======================*/
#event {
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background: url("./img/pattern-bg_pc.webp") center center / cover no-repeat;
}

#event .inside {
    width: min(90%, 900px);
    margin: 0 auto;
}

/* 申込期間 */
#event .entry {
    width: 100%;
    margin-bottom: 90px;
}

/* イベント概要 */
#event .event {
    width: min(100%, 700px);
    margin: 0 auto;
}

#event .event-period picture,
#event .event-period img,
#event .event-overview picture,
#event .event-overview img {
    display: block;
    width: 100%;
}

/* 申込エリア */
#event .event-entry {
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

#event .event-btn {
    display: flex;
    justify-content: center;
}

#event .event-btn .btnBlue {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 520px);
    padding: 1.5em 2em;
    background: linear-gradient(90deg, #00D1D5 0%, #0551AE 100%);
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: transform .3s;
}

#event .event-btn .btnBlue span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .04em;
}

#event .event-btn .btnBlue::after {
    content: "";
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("./img/icon.svg") center / contain no-repeat;
}

/* ホバー */
#event .event-btn .btnBlue:hover {
    animation: pulsation .7s alternate infinite;
}

@keyframes pulsation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1.05);
    }
}

#event .event-note {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .04em;
}


/*======================*
 * SP
 *======================*/
@media screen and (max-width: 768px) {

    #event {
        padding: 24px 0 60px;
        background-image: url("./img/pattern-bg_sp.webp");
    }

    #event .entry {
        margin-bottom: 32px;
    }


    #event .inside {
        width: 90%;
    }

    #event .event-period {
        margin-bottom: 40px;
    }

    #event .event-entry {
        margin-top: 40px;
    }

    #event .event-btn .btnBlue {
        width: 100%;
    }

    #event .event-note {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
    }
}

/*======================*
 * Event Info
 *======================*/
#event-info {
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background:
        #303991
        url("./img/deco_bg_pc.webp") center top / cover no-repeat;
}

#event-info .inside {
    width: min(90%, 900px);
    margin: 0 auto;
}

#event-info .displaycar,
#event-info .schedule,
#event-info .event-entry {
    width: 100%;
}

#event-info .displaycar {
    margin-bottom: 80px;
}

#event-info .schedule {
    margin-bottom: 60px;
}

#event-info .displaycar picture,
#event-info .displaycar img,
#event-info .schedule picture,
#event-info .schedule img {
    display: block;
    width: 100%;
}

#event-info .event-entry {
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

#event-info .event-btn {
    width: 100%;
    text-align: center;
}

#event-info .event-btn .btnRed {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.5em 2em;
    background: #F02070;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: transform .3s;
}

#event-info .event-btn .btnRed span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .04em;
}

#event-info .event-btn .btnRed::after {
    content: "";
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("./img/icon.svg") center / contain no-repeat;
}

#event-info .event-btn .btnRed:hover {
    animation: pulsation .7s alternate infinite;
}

#event-info .event-note {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .04em;
}

/*======================*
 * SP
 *======================*/
 
@media screen and (max-width: 768px) {

    #event-info {
        padding: 60px 0;
        background:
            #303991
            url("./img/deco_bg_sp.webp") center top / cover no-repeat;
    }

    #event-info .inside {
        width: 90%;
    }

    #event-info .displaycar {
        margin-bottom: 50px;
    }

    #event-info .schedule {
        margin-bottom: 40px;
    }

    #event-info .event-entry {
        margin-top: 40px;
    }

    #event-info .event-btn .btnRed {
        width: 100%;
    }

    #event-info .event-note {
    font-size: 14px;
}
}

@media screen and (min-width:768px) {
  .pc_view_none{
    display: none;
  }
}

@media screen and (max-width:768px) {
  .pc_view{
    display: none;
  }
}