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

html, body {
    font-family: 'Noto Sans JP', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #282828;
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    overflow: clip;
    object-fit: cover;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.715rem;
}

/* Buttons */
.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.8;
}

.btn--primary {
    background-color: #FF989A;
    color: white;
    font-size: 1.286rem;
    font-weight: 600;
    border: none;
    box-shadow: 2px 6px 0px 0px #8A3F54;
}

/* Header */
.header {
    height: 60px;
    padding: 1.071rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header__logo {
    text-align: left;
}

.header__logo-img {
    height: 26px;
    width: auto;
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 60px 1.071rem;
    position: relative;
    background: #FFA41D33;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -77%;
    left: 43%;
    width: 270%;
    height: 270%;
    background: url("../image/hero-bg1.png") no-repeat center/contain;
    transform: translateX(-50%) rotate(-14deg);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -19%;
    left: -25%;
    width: 90%;
    height: 90%;
    background: url("../image/hero-bg2.png") no-repeat center/contain;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.143rem;
    align-items: center;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 610px;
}

.hero__title--tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__title--tag {
    font-weight: 500;
    background-color: #282828;
    padding: 3px 0.571rem;
    border-radius: 2px;
}

.hero__title--sub {
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero__date {
    margin-top: 0.5rem;
}

.hero__details {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.857rem 1.143rem;
    display: flex;
    flex-direction: column;
    gap: 41px;
    border-radius: 2px;
    box-shadow: 0 4px 10.7px 0 #627474;
}

.hero__okinawa {
    width: 80%;
    margin: 0 auto;
}

.hero__gp {
    display: flex;
    flex-direction: column;
    gap: 1.286rem;
}

.hero__notice {
    font-weight: 500;
    color: #09233B;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 2.143rem 0;
    background: linear-gradient(117.01deg, #EFF186 54.4%, #B3EAF3 100%);
    position: relative;
}

.cta__bg1,
.cta__bg2 {
    position: absolute;
    width: 30%;
    max-width: 250px;
    height: auto;
    z-index: -1;
}

.cta__bg1 {
    top: -60%;
    left: -10%;
}

.cta__bg2 {
    bottom: -22%;
    right: -8%;
    transform: scale(-1,1);
}

.cta__btn {
    margin-bottom: 1rem;
    padding: 1.429rem 4rem;
}

.cta__text {
    color: #0A6A8C;
    font-size: 0.857rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 2.857rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190.76deg, #C8FCF9 23%, #F2F3C2 100.03%);
}

/* ドット背景 */
.about::after {
    content: "";
    position: absolute;
    top: 50%; /* セクションの下半分に適用 */
    left: 0;
    width: 100%;
    height: 50%;
    background: url('../image/dots.png') repeat;
    background-size: auto;
}

.about__title {
    color: #EE499C;
    font-family: "Bevan", serif;
    font-size: 1.429rem;
}

.about__content {
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0.857rem 1.429rem;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.about__content--main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.857rem;
}

.about__content--main p {
    display: block;
    width: 100%;
}

.about__kv {
    border: 1px solid #fff;
    box-shadow: 0px 4px 5.8px 0px #A6BCC9;
}

.about__okinawa {
    width: 50%;
}

.about__date-locate {
    text-align: center;
}

.about__date {
    font-weight: 700;
    font-size: 2rem;
    color: #EE499C;
}

.about__date span {
    font-weight: 900;
    font-size: 1rem;
}

.about__locate {
    font-weight: 700;
    font-size: 1.429rem;
}

.about__liner {
    width: 100%;
    height: 1px;
    background-color: #C5C5C5;
}

.about__chance {
    font-weight: 700;
    color: #EE499C;
}

.about__content--sub {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about__link {
    border-radius: 100px;
    background-color: #FFFFFF;
    font-weight: 500;
    border: 1px solid #282828;
    padding: 0.715rem 3.607rem;
}

/* Audition Section */
.audition {
    padding: 4.286rem 0;
    text-align: center;
    background: linear-gradient(180deg, #E5ECFF 0%, #FEE5FF 44.37%, #FEE5FF 59.83%, #C2CDEB 100%);
    position: relative;
    overflow: hidden;
}

.audition__bg1,
.audition__bg2 {
    position: absolute;
    width: 80%;
    height: auto;
}

.audition__bg1 {
    top: -5%;
    right: -20%;
}

.audition__bg2 {
    bottom: -5%;
    left: -20%;
}

.audition__title {
    color: #EE499C;
    font-family: "Bevan", serif;
    font-size: 1.429rem;
}

.audition__box {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    padding: 1rem 0.857rem 1.429rem;
    display: flex;
    flex-direction: column;
    gap: 0.857rem;
}

.audition__subtitle {
    font-size: 1.571rem;
    font-weight: 700;
    line-height: 1.2;
}

.audition__subtitle span {
    display: block;
    font-size: 1.714rem;
}

.audition__image {
    height: 184px;
    filter: blur(0.8px);
}

.audition__description--main {
    text-align: left;
    font-size: 1.071rem;
    font-weight: 700;
}

.audition__description--main span {
    color: #EE499C;
}

.audition__description--sub {
    font-size: 1rem;
    text-align: left;
}

.audition__table {
    padding: 0 1.071rem;
    text-align: left;
    border-collapse: separate;
    border-spacing: 5px;
}

.audition__table th {
    padding: 1px 0.571rem;
    font-weight: 600;
    background-color: #282828;
    color: #fff;
    text-align: center;
    font-size: 0.857rem;
}

.audition__table td {
    padding-left: 0.715rem;
}

.audition__liner {
    width: 100%;
    height: 1px;
    background-color: #C5C5C5;
}

/* Prize Section */
.prize {
    padding: 4.286rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #BFE3E3, #BFE3E3),
linear-gradient(180deg, rgba(171, 234, 240, 0.43) 0%, rgba(148, 207, 212, 0.43) 100%);

}

.prize::after {
    content: "";
    position: absolute;
    top: -42%;
    left: 80%;
    width: 165%;
    height: 165%;
    background: url("../image/hero-bg1.png") no-repeat center/contain;
    transform: translateX(-50%) rotate(-29deg);
}

.prize__title {
    color: #EE499C;
    font-family: "Bevan", serif;
    font-size: 1.429rem;
}

.prize__box {
    background-color: #fff;
    padding: 1rem 0.857rem 1.429rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0.857rem;
}

.prize__subtitle {
    font-size: 1.286rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prize__image {
    height: 184px;
    filter: blur(0.8px);
}

.prize__subtitle img {
    width: 20%;
}

.prize__name {
    font-size: 1.571rem;
    color: #fff;
    background: linear-gradient(89.92deg, #EE499C 1.61%, #F176E3 99.93%);
    width: 100%;
    padding: 0.5rem;
}

.prize__description--sub {
    font-size: 1rem;
    text-align: left;
}

/* Information Section */
.information {
    padding: 2.857rem 0;
    text-align: center;
    background: linear-gradient(180deg, #B0E6EA 0%, #94CFD4 100%);
}

.information__title {
    color: #EE499C;
    font-family: "Bevan", serif;
    font-size: 1.429rem;
}

.information__box {
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information__box-title {
    width: 100%;
    background-color: #0A6A8C;
    color: #fff;
    text-align: center;
    padding: 0.715rem;
}

.information__box-title h3 {
    font-size: 1.286rem;
}

.information__box-text {
    background-color: #fff;
    padding: 1.071rem;
    display: flex;
    flex-direction: column;
    gap: 0.715rem;
    width: 100%;
    text-align: left;
    font-size: 1.071rem;
}

.information__list {
    list-style-type: none;
}

.information__item {
    position: relative;
    padding-left: 1.071rem;
}

.information__item:before {
    content: "•";
    position: absolute;
    left: 0;
}

.information__box-text.locate {
    align-items: center;
}

.information__locate {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.information__gmap {
    width: 100%;
    height: 100%;
}

.information__box-text-locate {
    text-align: center;
    font-size: 1.143rem;
    font-weight: 500;
}

.information__link {
    border-radius: 100px;
    background-color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #282828;
    padding: 0.715rem 3.607rem;
}

/* Entry Section */
.entry {
    padding: 2.857rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190.76deg, #C8FCF9 23%, #F2F3C2 100.03%);
}

/* ドット背景 */
.entry::after {
    content: "";
    position: absolute;
    top: 50%; /* セクションの下半分に適用 */
    left: 0;
    width: 100%;
    height: 50%;
    background: url('../image/dots.png') repeat;
    background-size: auto;
}

.entry__title {
    color: #EE499C;
    font-family: "Bevan", serif;
    font-size: 1.429rem;
}

.entry__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.entry__step {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 2px;
    padding: 1rem 0.857rem 1.429rem;
    display: flex;
    flex-direction: column;
    gap: 0.857rem;
    text-align: left;
}

.entry__image {
    height: 184px;
    border-radius: 1px;
    overflow: hidden;
    filter: blur(0.8px);
}

.entry__step-title {
    font-size: 1.286rem;
    text-align: center;
}

/* Privacy Section */
.privacy {
    padding: 2.857rem 0;
    background: linear-gradient(180deg, #B0E6EA 0%, #94CFD4 100%);
}

.privacy__box {
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy__box-title {
    width: 100%;
    background-color: #0A6A8C;
    color: #fff;
    text-align: center;
    padding: 0.715rem;
}

.privacy__box-text {
    background-color: #fff;
    padding: 1.071rem;
    display: flex;
    flex-direction: column;
    gap: 0.715rem;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #282828;
    color: white;
    text-align: center;
}

.footer .container {
    padding: 1.714rem 1.143rem;
    display: flex;
    flex-direction: column;
    gap: 1.714rem;
}

.footer__logo {
    width: 125px;
    text-align: center;
}

.footer__logo img {
    height: 100%;
    width: 100%;
}

.footer__contact a {
    text-decoration: underline;
}

.footer__copyright {
    padding: 0.571rem;
    font-size: 0.857rem;
}


/* Privacy Policy */
.pp-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #FFA41D33;
    background-size: cover;
    background-position: 93% 0;
}


.pp-bg::before {
    content: "";
    position: absolute;
    top: -77%;
    left: 43%;
    width: 270%;
    height: 270%;
    background: url("../image/hero-bg1.png") no-repeat center/contain;
    transform: translateX(-50%) rotate(-14deg);
}

.pp-bg::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -35%;
    width: 120%;
    height: 120%;
    background: url("../image/hero-bg2.png") no-repeat center/contain;
}

.page-title {
    margin: 90px auto 40px;
}

.page-title .container {
    gap: 0;
}

.page-title__heading {
    color: #fff;
    font-family: "Bevan", serif;
    font-size: 3rem;
}

.page-title__subheading {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.pp .privacy {
    background: none;
    padding: 0;
}

.privacy__content {
    background-color: rgba(255,255,255,.8);
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 4rem 2rem;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.privacy__section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy__list {
    list-style-type: none;
    padding-left: 1rem;
}

/* Thanks */
.thx-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #FFA41D33;
    background-size: cover;
    background-position: 93% 0;
}


.thx-bg::before {
    content: "";
    position: absolute;
    top: -77%;
    left: 43%;
    width: 270%;
    height: 270%;
    background: url("../image/hero-bg1.png") no-repeat center/contain;
    transform: translateX(-50%) rotate(-14deg);
}

.thx-bg::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -35%;
    width: 120%;
    height: 120%;
    background: url("../image/hero-bg2.png") no-repeat center/contain;
}

.page-title {
    margin: 90px auto 40px;
}

.page-title .container {
    gap: 0;
}

.page-title__heading {
    color: #fff;
    font-family: "Bevan", serif;
    font-size: 3rem;
}

.thx .thanks {
    background: none;
    padding: 0;
}

.thanks__content {
    background-color: rgba(255,255,255,.8);
    max-width: 800px;
    margin: 10vh auto 40vh;
    padding: 15vh 2rem;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.thanks__section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* Responsive */
@media (min-width: 768px) {
    html, body {
        font-size:clamp(16px, 1.6326530612vw, 20px);
    }

    .container {
        gap: 1.429rem;
    }

    .hero::before {
        top: -55%;
        left: 67%;
        width: 220%;
        height: 220%;
    }

    .about__kv {
        margin-bottom: 2rem;
    }

    .prize::after {
        top: -55%;
        left: 75%;
        width: 280%;
        height: 280%;
        transform: translateX(-50%) rotate(-14deg);
    }

    .audition__image,
    .prize__image {
        height: 300px;
    }

    .pp-bg::before,
    .thx-bg::before {
        top: -60%;
        left: 75%;
    }

    .pp-bg::after,
    .thx-bg::after {
        bottom: -40%;
        left: -60%;
        width: 150%;
        height: 150%;
    }
}