@charset "utf-8";
/* CSS Document */

body {
    position: relative;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

div.l-wrapper {
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* --------------
btn
-------------- */
a.btn {
    display: inline-block;
    padding: 4px;
    border-radius: 100px;
    background: linear-gradient(135deg, #08a370, #5fbe62, #e1e64d);
    transition: 0.3s;
}

a.btn span {
    display: block;
    padding: 0.8em 1.4em 0.8em 2em;
    border-radius: 100px;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

a.btn:hover {
    transform: scale(0.95);
}

/*================================
header
================================*/
/* --------------
header__logo
-------------- */
.header__logo {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: clamp(160px, 15vw, 240px);
    padding: clamp(24px, 2vw, 32px);
    border-radius: 0 0 6px 0;
    background-color: #f9f6f2;
    z-index: 99;
}


/* --------------
header__nav
-------------- */
.header__nav-content-in {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 1em;
    top: 1vw;
    right: 1vw;
    transition: 0.5s ease-out;
    z-index: 999;
}

ul.header__nav-list {
    display: flex;
    align-items: center;
    gap: 2.4em;
    padding: 1em 2.2em;
    border-radius: 100px;
    background-color: #ffffff;
    box-shadow: 0 0 10px #3333331e;
}

ul.header__nav-list li a {
    position: relative;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 900;
    color: #333;
    transition: 0.3s;
    z-index: 2;
}

ul.header__nav-list li a:hover {
    color: #009245;
}

a.header__nav-cv {
    position: relative;
    padding: 1em 3.5em 1em 1.5em;
    border-radius: 100px;
    background-color: #ed410c;
    border: 3px solid #f8b39e;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

a.header__nav-cv::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 1.5em;
    margin: auto;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/icon_vote.svg) no-repeat center/cover;
}

a.header__nav-cv:hover {
    transform: scale(0.95);
}


/*================================
mv
================================*/
div.mv__inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: hsla(0, 0%, 100%, 1);
    background-image:
        radial-gradient(at 6% 63%, hsla(57, 94%, 91%, 1) 0px, transparent 50%),
        radial-gradient(at 81% 15%, hsla(148, 39%, 85%, 1) 0px, transparent 50%),
        radial-gradient(at 21% 17%, hsla(57, 95%, 91%, 1) 0px, transparent 50%),
        radial-gradient(at 57% 53%, hsla(148, 39%, 85%, 1) 0px, transparent 50%);
}

/* --------------
mv__bg
-------------- */
div.mv__bg {
    position: relative;
    width: 100%;
    overflow: hidden;
}

div.mv__bg img {
    display: block;
    width: 100%;
}

img.mv_spotlight {
    z-index: 1;
}

img.mv_confetti {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* --------------
mv__title
-------------- */
div.mv__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 42vw;
    z-index: 4;
}

div.mv__title img {
    display: block;
    width: 100%;
}

/* --------------
mv__chara-wrapper
-------------- */
div.mv__chara-wrapper img {
    position: absolute;
    display: block;
    width: 20vw;
}

img.mv__chara--tochippi {
    top: 12vw;
    right: 10vw;
    z-index: 3;
}

img.mv__chara--tochirin {
    top: 12vw;
    left: 8vw;
    z-index: 3;
}

img.mv__chara--maronie {
    top: 4vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 15vw !important;
    z-index: 3;
}

img.mv__chara--tochiken {
    bottom: -1.8vw;
    right: 10vw;
    width: 22vw !important;
    z-index: 5;
}

img.mv__chara--tsbros {
    bottom: -1.5vw;
    left: 8vw;
    width: 22vw !important;
    z-index: 5;
}


/* --------------
mv__stage
-------------- */
div.mv__stage {
    position: relative;
    width: 100%;
    height: 24vw;
    margin-top: -8.5vw;
    background: url(../images/mv_stage.png) no-repeat center/cover;
    z-index: 4;
}

div.mv__stage img {
    position: absolute;
    top: 0;
    bottom: 3vw;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 50vw;
}


/*================================
period
================================*/
#period {
    width: 100%;
    margin-top: -10vw;
    padding-top: 12vw;
    background-color: #f9f6f2;
}

div.period__inner {
    position: relative;
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 80px 40px;
    border-radius: 40px;
    background-color: #fff;
    box-shadow: 2px 2px 10px 0px rgba(153, 145, 109, 0.3);
    text-align: center;
}

div.period__inner>*+* {
    margin-top: 20px;
}

div.poll-closing,
div.result--period {
    display: flex;
    align-items: center;
    gap: 20px;
}

img.poll-closing__headding {
    display: block;
    width: clamp(120px, 14vw, 160px);
}

img.poll-closing__date {
    display: block;
    width: clamp(480px, 50vw, 680px);
}

img.result__headding {
    display: block;
    width: clamp(80px, 10vw, 120px);
}

div.result--period p {
    text-align: left;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
}

img.ballot-box {
    position: absolute;
    bottom: -1vw;
    right: -3vw;
    display: block;
    width: clamp(120px, 10vw, 180px);
}

/* --------------
btn--vote
-------------- */
a.btn--vote {
    margin-top: 32px;
}

a.btn--vote span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #08a370;
    color: #fff;
}

a.btn--vote span::after {
    transform: rotate(135deg);
    width: 0.6em;
    height: 0.6em;
    margin-left: 1em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}


/*================================
about
================================*/
#about {
    width: 100%;
}

div.about__inner {
    padding: 100px 0 0;
    background-color: #f9f6f2;
}

div.about__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

div.about__content img {
    position: relative;
    display: block;
    z-index: 2;
}

img.about__visual {
    width: 45%;
}

img.about__ol {
    width: 45%;
    padding-bottom: 6vw;
}

img.about__bottom {
    display: block;
    width: 100%;
    margin-top: -10vw;
    background-color: #fff;
}


/*================================
chara
================================*/
#chara {
    width: 100%;
    padding-top: 100px;
}

div.chara__inner {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

div.chara__outline {
    text-align: center;
}

div.chara__outline>*+* {
    margin-top: 32px;
}

div.chara__outline h2 img {
    display: inline-block;
    width: 400px;
}

div.chara__outline p {
    font-size: 20px;
    font-weight: 700;
    line-height: 2em;
}

div.chara__outline p span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 0.2em;
}

div.chara__outline p span img {
    display: inline-block;
    width: 1.5em;
}

/* --------------
chara__list
-------------- */
div.chara__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8vw 3vw;
    padding-top: 100px;
}

a.chara__list-item {
    position: relative;
    display: block;
    width: 30%;
    padding: clamp(32px, 3vw, 60px);
    border-radius: 40px;
    background-color: #f9f6f2;
    border: 4px solid #f9f6f2;
    cursor: pointer;
    transition: 0.3s;
}

a.chara__list-item:hover {
    transform: translateY(-10px);
    border: 4px solid #08a370;
}

div.chara__visual img {
    display: block;
    width: 100%;
}

div.chara__visual h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}


/* icon__loupe */
img.icon__loupe {
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: clamp(60px, 5vw, 80px);
    transition: 0.3s;
}

a.chara__list-item:hover img.icon__loupe {
    transform: scale(1.1);
}

/* fukidashi */
img.fukidashi {
    position: absolute;
    display: block;
    width: 14vw;
}

img.fukidashi--tochippi {
    top: -3vw;
    left: -3vw;
}

img.fukidashi--tochirin {
    bottom: 5vw;
    left: -5vw;
}

img.fukidashi--maronie {
    top: 0;
    right: -5vw;
}

img.fukidashi--tochiken {
    top: -3vw;
    left: -3vw;
}

img.fukidashi--tocchii {
    top: 3vw;
    left: -6vw;
}

img.fukidashi--sai {
    bottom: 6vw;
    right: -5vw;
}

/* --------------
modal
-------------- */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    background-color: #33333390;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: 60px auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    z-index: 1;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__close {
    position: absolute;
    top: -1vw;
    right: -1vw;
    cursor: pointer;
    width: clamp(60px, 5vw, 80px);
    transition: 0.3s;
    border: none;
    background: none;
    z-index: 2;
}

.modal__close img {
    display: block;
    width: 100%;
}

.modal__footer-close {
    display: block;
    margin: 2em auto 0;
    padding: 0.5em 2.5em;
    background: #08a370;
    background: linear-gradient(100deg, rgba(8, 163, 112, 1) 60%, rgba(225, 230, 77, 1) 100%);
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    transition: 0.3s;
    flex-shrink: 0;
}

.modal__close:hover,
.modal__footer-close:hover {
    transform: scale(0.9);
}

div.modal__body {
    width: 100%;
    padding: 60px;
    border-radius: 40px;
    background: #f9f6f2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

div.modal__body-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3vw;
}

div.modal__chara-visual {
    width: 35%;
    flex-shrink: 0;
}

div.modal__chara-visual h3 {
    display: inline-block;
    padding: 4px;
    border-radius: 100px;
    background: linear-gradient(135deg, #08a370, #5fbe62, #e1e64d);
    margin-bottom: 20px;
}

div.modal__chara-visual h3 span {
    display: block;
    padding: 0.5em 1.3em;
    border-radius: 100px;
    background: #08a370;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    color: #fff;
}

div.modal__chara-visual img {
    display: block;
    width: 100%;
}

div.modal__chara-profile {
    width: 60%;
    max-height: 100%;
}

div.modal__chara-profile>*+* {
    margin-top: 20px;
}

div.modal__chara-profile h4 {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: #ffb700;
    color: #fff;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
}

div.modal__chara-profile p {
    line-height: 2em;
    font-size: clamp(14px, 1vw, 16px);
}

div.modal__chara-profile img {
    display: block;
    width: 100%;
    margin-top: 20px;
}

div.modal__bottom-spacer {
    width: 100%;
    height: 60px;
}


/*================================
vote
================================*/
#vote {
    position: relative;
    width: 100%;
    padding-top: 60px;
    z-index: 2;
}

div.vote__hd img {
    display: block;
    width: 100%;
}

div.vote__inner {
    padding-bottom: 100px;
    border-radius: 0 0 100px 100px;
    background-color: #f5fbf9;
    box-shadow: 0px 10px 30px -6px rgba(112, 153, 121, 0.3);
    text-align: center;
}

div.vote__outline {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 20px;
}

div.vote__outline p {
    font-size: 20px;
    font-weight: 700;
    line-height: 2em;
}

div.vote__outline p span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 0.2em;
}

div.vote__outline p span img {
    display: inline-block;
    width: 5em;
}

span.kome {
    font-size: 18px;
    color: #666;
}

/* --------------
flow
-------------- */
div.flow {
    display: flex;
    justify-content: center;
    gap: 3vw;
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 80px;
}

div.flow-items {
    position: relative;
    display: block;
    width: 30%;
    border-radius: 40px;
}

div.flow-items>*+* {
    margin-top: 20px;
}

img.step__number {
    display: inline-block;
    padding: 0.8em 1em;
    width: 120px;
    border-radius: 100px;
    background-color: #ffb700;
}

img.step__img {
    display: block;
    width: 100%;
}

div.flow-items h3 {
    font-size: 20px;
    font-weight: 900;
}

div.flow-items p {
    font-size: 16px;
    font-weight: 700;
}

img.arrow--flow {
    display: block;
    width: 1%;
}

/* --------------
btn--cv
-------------- */
a.btn--cv {
    margin-top: 60px;
}

a.btn--cv span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
}

a.btn--cv span::after {
    transform: rotate(45deg);
    width: 0.6em;
    height: 0.6em;
    margin-left: 1em;
    border-top: 2px solid #08a370;
    border-right: 2px solid #08a370;
    content: '';
}

a.btn--cv span::before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    content: '';
    background: url(../images/icon_line.svg) no-repeat center/cover;
}

/* --------------
more
-------------- */
img.more {
    position: absolute;
    bottom: -100px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 240px;
}


/*================================
campaign
================================*/
#campaign {
    position: relative;
    width: 100%;
    margin-top: -100px;
    padding: 240px 0 10vw;
    background: #08a370;
    background: linear-gradient(100deg, rgba(8, 163, 112, 1) 60%, rgba(225, 230, 77, 1) 100%);
    z-index: 1;
    text-align: center;
    color: #fff;
}

div.campaign__outline {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

div.campaign__outline>*+* {
    margin-top: clamp(32px, 3vw, 60px);
}

div.campaign__outline h2 img {
    display: inline-block;
    width: 60%;
}

div.campaign__outline p {
    font-size: clamp(20px, 2vw, 32px);
}

div.campaign__outline p br {
    display: none;
}

img.campaign__ol {
    display: inline-block;
    width: 70%;
}

img.campaign__img {
    display: inline-block;
    width: 60%;
}

/* --------------
poll-closing
-------------- */
div.campaign__inner div.poll-closing {
    width: 85%;
    max-width: 1600px;
    margin: 60px auto 0;
    justify-content: center;
}

div.campaign__inner div.poll-closing img.poll-closing__headding {
    display: block;
    width: clamp(100px, 10vw, 140px);
}

div.campaign__inner div.poll-closing img.poll-closing__date {
    display: block;
    width: clamp(400px, 30vw, 500px);
}

/* --------------
flow
-------------- */
img.step__number--cp {
    background-color: #f9f6f2;
}

img.result--campaign {
    display: block;
    width: clamp(640px, 60vw, 800px);
    margin: 60px auto 0;
}


/*================================
footer
================================*/
#footer {
    width: 100%;
    margin-top: -10vw;
}

div.footer-cv {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

/* --------------
footer-cv__bg
-------------- */
div.footer-cv__bg {
    width: 100%;
    overflow: hidden;
}

div.footer-cv__bg img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
}

img.footer-cv__stage {
    z-index: 1;
}

img.footer-cv__confetti {
    z-index: 2;
}


/* --------------
footer-cv__illust
-------------- */
div.footer-cv__illust {
    position: absolute;
    bottom: 6vw;
    left: 10vw;
    z-index: 10;
    width: 42vw;
}

div.footer-cv__illust img {
    display: block;
    width: 100%;
}


/* --------------
footer-cv__headding
-------------- */
div.footer-cv__headding {
    position: absolute;
    bottom: 17vw;
    right: 12vw;
    width: 32vw;
    text-align: center;
    z-index: 10;
}

div.footer-cv__headding img {
    display: block;
    width: 100%;
}


/* --------------
btn--footer-cv
-------------- */
a.btn--footer-cv {
    margin-top: 40px;
}

a.btn--footer-cv span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #08a370;
    color: #fff;
}

a.btn--footer-cv span::after {
    transform: rotate(45deg);
    width: 0.6em;
    height: 0.6em;
    margin-left: 1.8em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

/* --------------
footer__logo
-------------- */
div.footer__content {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

a.footer__logo {
    display: inline-block;
    width: 200px;
    transition: 0.3s;
}

a.footer__logo:hover {
    opacity: 0.7;
}

a.footer__logo img {
    display: block;
    width: 100%;
}

p.copyright {
    display: block;
    margin-top: 8px;
    font-size: 10px;
}