/* 750pxで要素サイズを固定しています。 */

:root {
    --dark-blue: #346c8c;
    --green: #25978f;
    --font-ads:"ads-type7", sans-serif;
    --font-tsuku: "fot-tsukuardgothic-std", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: url('../../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    font-family: var(--font-tsuku);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.left-side {
    position: sticky;
    top: 0;
    order: 1;
    width: calc(50% - 320px);
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
main {
    position: relative;
    order: 2;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
}
/* 右側 */
.right-side {
    position: sticky;
    top: 0;
    order: 3;
    width: calc(50% - 375px);
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.left-side, .right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../images/side-bg.jpg);
    background-size: cover;
}
.right-side a {
    display: block;
    text-align: center;
}
.right-side img {
    margin: 0 auto;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.right-side p {
    font-size: 24px;
    font-family: var(--font-ads);
    margin-bottom: 12px;
}
.side-image {
    display: block;
    width: 80%;
    max-width: 300px;
}
@media screen and (max-width:1023px) {
    .left-side {
        display: none;
    }
    main {
        width: 100%;
        max-width: 100%;
    }
    /* 右側 */
    .right-side {
        display: none;
    }
}

.container {
    line-height: 1.6;
    background: url(../../images/2025-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.content {
    padding: 16px;
    overflow: hidden;
}
body:not(.home) main>.container>.content {
    min-height: 980px;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
}
@media screen and (min-width:1024px) {
    header {
            max-width: 640px;
    }
}

.header-logo {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 31%;
}

.header-nav {
    position: absolute;
    right: 55px;
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    padding-right: 32px;
    column-gap: 16px;
    max-height: 75px;
}

.header-line {
    max-width: clamp(5.625rem, 0rem + 28.125vw, 18rem);
}
@media screen and (min-width:1024px) {
    .header-line {
        max-width: 180px;
    }
}

.header-sns-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding-top: clamp(0.3125rem, -0.0284rem + 1.7045vw, 1.0625rem);
    padding-right: clamp(0.5625rem, -0.0422rem + 3.0233vw, 1.375rem);
    padding-bottom: clamp(0.3125rem, -0.0284rem + 1.7045vw, 1.0625rem);
    padding-left: clamp(0.5625rem, -0.0422rem + 3.0233vw, 1.375rem);
    gap: 18px;
    border: 1px solid var(--dark-blue);
    border-radius: 50vh;
    height: clamp(1.5625rem, -0.0189rem + 7.907vw, 3.6875rem);
}

.spacer-line {
    min-height: 100%;
    width: 1px;
    background: var(--dark-blue);
}

.header-tiktok,
.header-insta {
    width: clamp(0.9375rem, 0.0284rem + 4.5455vw, 2.9375rem);
}
@media screen and (min-width:1024px) {
    .header-sns-wrap {
        height: 51px;
    }
    .header-tiktok,
    .header-insta {
        width: 29px;
    }
}

footer {
    margin-top: 8px;
    background-color: rgba(79, 155, 200, 0.6);
    padding: 16px;
}

.footer-logo img {
    max-width: 40%;
}

/* ドロップダウンメニュー */
header nav.sp-nav {
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-110%);
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    background-color: rgba(255, 255, 255, 0.98);
    overflow: scroll;
    padding: 50px 20px;
}
.openbtn.active + nav.sp-nav {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
@media screen and (min-width:1023px) {
    header nav.sp-nav {
        width: 640px;
    }
}
header nav.sp-nav .sp-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header nav.sp-nav ul#header-menu {
    flex-direction: column;
    width: 100%;
}

header nav.sp-nav ul#header-menu li {
    width: 100%;
}

header nav.sp-nav ul#header-menu li a {
    display: block;
    width: 100%;
    padding: 10px 5px;
    font-size: 21px;
    border-bottom: 1px solid var(--green);
}
header nav.sp-nav .c-btn-box {
    margin-top: 32px;
    text-align: center;
}
header nav.sp-nav .c-btn-box img {
    width: 50%;
}


/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    z-index: 2000;
    /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width:  clamp(1.5625rem, 0rem + 7.8125vw, 5rem);
    height: clamp(1.5625rem, 0rem + 7.8125vw, 5rem);
    border-radius: 50vh;
    border: 1px solid var(--dark-blue);
    background-color: #fff;
}
/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    height: 4px;
    background: var(--dark-blue);
    border-radius: 50vh;
    width: clamp(0.9375rem, -0.0568rem + 4.9716vw, 3.125rem);
}

@media screen and (min-width:1024px) {
    .openbtn {
        width: 50px;
        height: 50px;
        row-gap: 5px;
    }
    .openbtn span {
        width: 31px;
    }
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    position: absolute;
    display: inline-block;
    top: 19px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 55%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    position: absolute;
    display: inline-block;
    top: 31px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 55%;
}
@media screen and (min-width:1024px) {
    .openbtn.active span:nth-of-type(1) {
        top: 15px;
        left: 11px;
        width: 55%;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 27px;
        left: 12px;
        width: 55%;
    }
}



/* トップメインコンテンツ */
.top-tk-block {
    display: flex;
    justify-content: flex-end;
    padding-top: clamp(2.375rem, -0.0114rem + 11.9318vw, 7.625rem);
}
@media screen and (min-width:1024px) {
    .top-tk-block {
        padding-top: 54px;
    }
}

.tenshoku-img {
    display: flex;
    max-height: 105px;
    max-width: 31%;
    margin-right: -4%;
}

.kigyo-img {
    display: flex;
    max-height: 140px;
    max-width: 31%;
    margin-top: clamp(0.5625rem, -0.0422rem + 3.0233vw, 1.375rem);
}

/* メインビジュアル */
.mv {
    margin-top: -20px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.mv .swiper01::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 13%;
    width: 53%;
    height: clamp(1.125rem, 0.0087rem + 5.5814vw, 2.625rem);
    background: url(../../images/mv-top-text.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.mv .swiper01::after {
    position: absolute;
    content: "";
    bottom: 0%;
    right: 6%;
    width: 23%;
    height: clamp(0.8125rem, 0.0218rem + 3.9535vw, 1.875rem);
    background: url(../../images/mv-bottom-text.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.mv .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 4%;
}

.mv .swiper-slide>* {
    object-fit: cover;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    height: clamp(1.125rem, -0.0378rem + 5.814vw, 2.6875rem);
    width: clamp(1.125rem, -0.0378rem + 5.814vw, 2.6875rem);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: clamp(1.125rem, -0.0378rem + 5.814vw, 2.6875rem);
    margin: auto;
    width: clamp(1.125rem, -0.0378rem + 5.814vw, 2.6875rem);
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    background-image: url("../../images/slidenavi-left.svg");
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    background-image: url("../../images/slidenavi-right.svg");
}

/* 画像サイズ調整 */
.swiper-slide img {
    height: auto;
    width: 100%;
}

.mv-mask {
    -webkit-mask-image: url("../../images/mv-mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 3% 0;
    -webkit-mask-size: auto;
    mask-image: url("../../images/mv-mask.svg");
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: auto;
}
@media screen and (min-width:1024px) {
    .swiper-button-prev {
        left: 0;
    }
    .swiper-button-next {
        right: 0;
    }
}

.swiper-slide1 img {
    transform: translateY(0);
}
.swiper-slide2 img {
    transform: translateY(-20%);
}
.swiper-slide3 img {
    transform: translateY(-28%);
}
.swiper-slide4 img {
    transform: translateY(-25%);
}

.mv-btn {
    text-align: right;
    padding: 4%;
}
.mv-btn img {
    width: 24%;
}

/* about */
#top-about .inner {
    display: flex;
    align-items: center;
}

.about-left {
    width: 42%;
}

.about-right {
    width: 58%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-right-text p {
    font-family: var(--font-ads);
    font-size: clamp(1rem, 0.6279rem + 1.8605vw, 1.4rem);
}

.about-right-text p:not(:first-of-type) {
    margin-top: clamp(1.5rem, 0.0581rem + 7.2093vw, 3.4375rem);
}

.about-right-text p:nth-of-type(2) {
    font-size: clamp(1.3125rem, 0.9404rem + 1.8605vw, 1.8125rem);
}
.about-right-text p:nth-of-type(3) {
    padding-left: 32px;
}

.about-catch {
    display: inline-block;
    text-align: right;
    border: solid 2px var(--dark-blue);
    margin-top: clamp(1.625rem, 0.0436rem + 7.907vw, 3.75rem);
    padding: 5px;
    background-color: #fff;
    border-radius: 50vh;
}
.about-catch-text {
    display: inline-block;
    font-family: var(--font-ads);
    font-size: clamp(1rem, 0.7209rem + 1.3953vw, 1.375rem);
    text-align: center;
    background: var(--dark-blue);
    color: #fff;
    padding: 5px 15px;
    letter-spacing: -2px;
    line-height: 1.8;
    border-radius: 50vh;
    white-space: nowrap;
}
.about-catch-text span {
    border-bottom: 1px solid #e8de36;
    padding-bottom: 5px;
}
.about-btn {
    display: inline-block;
    text-align: right;
    width: 100%;
    margin-top: clamp(0.6875rem, -0.0567rem + 3.7209vw, 1.6875rem);
}
.about-btn img {
    width: 70%;
}
@media screen and (min-width:1024px) {
    .about-right-text p {
        font-size: 18px;
    }
    .about-right-text p:nth-of-type(2) {
        font-size: 24px;
    }
    .about-right-text p:not(:first-of-type) {
        margin-top: 47px;
    }
    .about-catch-text {
        font-size: 18px;
    }
}

/* pickup */
#top-pickup h2 {
    text-align: right;
}
#top-pickup h2 img {
    width: 50%;
}
#top-pickup .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    aspect-ratio: 2 / 3;
    padding: 1%;
    border: solid 2px var(--dark-blue);
    border-radius: 50vh;
    z-index: 2;
}
#top-pickup .swiper-slide:nth-of-type(even) {
    margin-top: 24px;
}
#top-pickup .swiper-slide img {
    position: relative;
    object-fit: cover;
    border-radius: 50vh;
    z-index: 2;
}
#top-pickup .swiper-slide::after {
    position: absolute;
    content: "";
    height: 50px;
    width: 100px;
    top: 50%;
    right: -65px;
    transform: rotate(10deg) translateY(-45%);
    z-index: 1;
    background: var(--dark-blue);
}
#top-pickup .swiper-slide:nth-of-type(even)::after {
    transform: rotate(-10deg) translateY(-55%);
}
.pickup-btn {
    display: inline-block;
    text-align: right;
    width: 100%;
    margin-top: clamp(0.6875rem, -0.0567rem + 3.7209vw, 1.6875rem);
}
.pickup-btn img {
    width: 40%;
}

/* message */
#top-message {
    position: relative;
    padding-bottom: 30px;
}
#top-message h2 {
    font-family: var(--font-ads);
    font-size: 25px;
}
.message-text {
    margin-top: 32px;
    padding: 20px 0 40px 20px;
    border-left: 6px solid var(--dark-blue);
}
.message-text p{
    font-family: var(--font-tsuku);
    font-weight: 700;
}
.message-text p:not(:first-of-type) {
    margin-top: 32px;
}
.message-img {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 40%;
}
@media screen and (min-width:1024px) {
    .message-text {
        padding-bottom: 60px;
    }
}

/* tenshoku */
#top-tenshoku {
    border-bottom: 8px solid rgba(35, 158, 150, 0.3);
    margin-bottom: 3px;
}
#top-tenshoku h2 {
    font-size: clamp(1.5rem, 0.0227rem + 7.3864vw, 4.75rem);
    font-family: var(--font-ads);
    color: var(--green);
}
.top-tenshoku-title-sm {
    font-size: clamp(0.875rem, 0.1648rem + 3.5511vw, 2.4375rem);
    color: #000000;
}
@media screen and (min-width:1024px) {
    #top-tenshoku h2 {
        font-size: 48px;
    }
    .top-tenshoku-title-sm {
        font-size: 24px;
    }
}
.top-tenshoku-title {
    margin-left: clamp(1.5rem, 0.0227rem + 7.3864vw, 4.75rem);
}
.top-tenshoku-lead {
    margin-left: clamp(1.5rem, 0.0227rem + 7.3864vw, 4.75rem);
    font-family: var(--font-tsuku);
    font-weight: 700;
}
@media screen and (min-width:1024px) {

}
.tenshoku-flow {
    margin-top: clamp(1.5rem, 0.392rem + 5.5398vw, 3.9375rem);
}

.tenshoku-flow-item {
    text-align: center;
}
.tenshoku-flow-item h3 {
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 0.6023rem + 1.9886vw, 1.875rem);
    color: var(--green);
    font-family: var(--font-tsuku);
    font-weight: 700;
    column-gap: clamp(0.875rem, 0.6193rem + 1.2784vw, 1.4375rem);
    width: 100%;
}
.tenshoku-flow-item h3 img {
    width: clamp(1.8125rem, -0.0341rem + 9.233vw, 5.875rem);
}
.flow-image {
    text-align: center;
    margin-top: clamp(0.3125rem, 0rem + 1.5625vw, 1rem);
}
.flow-image01 img {
    width: 50%;
}
.flow-image02 img {
    width: 50%;
}
.flow-image03 img {
    width: 20%;
}
.tenshoku-flow-last-box {
    margin-top: -85px;
}
.tenshoku-flow-item p:last-of-type{
    display: inline-block;
    font-size: clamp(1rem, 0.8011rem + 0.9943vw, 1.4375rem);
    font-family: var(--font-tsuku);
    font-weight: 700;
    padding: 8px 16px;
    margin-top: 34px;
    margin-bottom: 62px;
    background: var(--green);
    color: #fff;
    border-radius: 50vh;
}

.tenshoku-flow-last-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#top-tenshoku .tenshoku-flow-last-lead {
    font-size: clamp(1.125rem, 0.7841rem + 1.7045vw, 1.875rem);
    font-weight: 700;
    font-family: var(--font-tsuku);
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}
.tenshoku-flow-item .tenshoku-flow-last-box p {
    color: var(--green);
    background: transparent;
}
.flow-image05 {
    width: 35%;
    margin-bottom: 45px;
    margin-left: -100px;
}
#top-tenshoku .tenshoku-flow-item-last-text {
    display: inline-block;
    margin: 0 auto;
    background: var(--green);
    border-radius: 50vh;
    color: #fff;
    font-family: var(--font-tsuku);
    font-size: clamp(0.8125rem, 0.6989rem + 0.5682vw, 1.0625rem);
    margin-top: clamp(1.0625rem, -0.017rem + 5.3977vw, 3.4rem);
    margin-bottom: clamp(1.9375rem, 0.0057rem + 9.6591vw, 6.1875rem);
}
.tenshoku-flow-img {
    text-align: center;
    margin-bottom: 32px;
}
.tenshoku-flow-img img {
    width: 80%;
}
.tenshoku-btn {
    display: inline-block;
    text-align: right;
    width: 100%;
    margin-top: clamp(0.6875rem, -0.0567rem + 3.7209vw, 1.6875rem);
}
.tenshoku-btn img {
    width: 40%;
}
@media screen and (min-width:1024px) {
    .tenshoku-flow {
        margin-top: 40px;
    }
    .tenshoku-flow-item h3 {
        font-size: 18px;
        column-gap: 14px;
    }
    .tenshoku-flow-item h3 img {
        width: 59px;
    }
    .flow-image {
        text-align: center;
        margin-top: 10px;
    }
    .tenshoku-flow-item p:last-of-type{
        font-size: 16px;
        padding: 8px 16px;
        margin-top: 34px;
        margin-bottom: 62px;
    }
    #top-tenshoku .tenshoku-flow-last-lead {
        font-size: 18px;
    }
    #top-tenshoku .tenshoku-flow-item-last-text {
        font-size: 13px;
        margin-bottom: 24px;
    }
}

/* よかチャレ */
.yoka-challe section.yoka-calle-message {
    margin-top: -50px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.yoka-calle-message {
    background: url(../../images/yoka-challe-message-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.yoka-calle-message p {
    font-family: var(--font-ads);
    text-align: center;
}

.entry-category h2 {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    line-height: 1;
}

.entry-category h2 span {
    display: inline-block;
    font-family: var(--font-ads);
    background-color: #25978f;
    color: #e8de36;
    padding: 4px;
    font-size: clamp(0.75rem, -0.1023rem + 4.2614vw, 2.625rem);
}

.entry-category p {
    text-align: center;
    font-family: var(--font-tsuku);
    font-size: clamp(0.4375rem, -0.017rem + 2.2727vw, 1.4375rem);
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
}
.entry-category-img {
    text-align: center;
}
.entry-category-img img {
    width: 90%;
}

.yoka-schedule {
    background-color: rgba(80, 165, 214, 0.5);
    border-radius: 30px;
    padding: 10px;
}

.yoka-schedule-outer {
    border: 1px solid rgba(52, 108, 140, 0.5);
    border-radius: 30px;
    padding: 10px;
}
.yoka-schedule-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../../images/yoka-schedule-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    column-gap: 32px;
    border-radius: 30px;
    padding: 16px;
}
.yoka-schedule-left {
    width: 40%;
}
.yoka-schedule-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    row-gap: 32px;
}
.yoka-schedule-right .yoka-schedule-item {
    display: flex;
    flex-direction: column;
}
.yoka-schedule-right h3 {
    display: inline-block;
    width: 55%;
    text-align: center;
    font-family: var(--font-ads);
    font-size: 27px;
    background-color: #25978f;
    color: #fff;
    border-radius: 50vh;
    line-height: 1;
    padding: 6px;
}
@media screen and (min-width:1024px) {
    .yoka-schedule-right h3 {
        width: 60%;
        font-size: 24px;
    }
}
.yoka-schedule-item {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}
.yoka-schedule-right .yoka-schedule-item li {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.yoka-schedule-right .yoka-schedule-item .yoka-schedule-month {
    display: inline-block;
    position: relative;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ads);
    color: #25978f;
    background-color: #fff;
    font-weight: 700;
    font-size: 32px;
    border-radius: 50vh;
    padding: 4px;
    padding-right: 16px;
    line-height: 1.6;
    height: 60px;
    width: 60px;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
}
.yoka-schedule-right .yoka-schedule-item .yoka-schedule-month span.tsuki {
    font-size: 18px;
    position: absolute;
    bottom: 7px;
    right: 7px;
}
.yoka-schedule-title {
    display: flex;
    align-items: center;
    font-family: var(--font-tsuku);
    background-color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50vh;
    padding: 16px;
    height: 60px;
    width: calc(100% - 45px);
    margin-left: -15px;
}
@media screen and (min-width:1024px) {
    .yoka-schedule-title {
        font-size: 16px;
    }
}
#yoka-challe-slider {
    padding: 60px 0;
}
.swiper03 {
    overflow: visible;
}
.swiper03 .swiper-pagination {
    transform: translate3d(0, 35px, 0);
}

/* 応募の流れ */
.yoka-challe-flow {
    border-left: 6px solid var(--dark-blue);
    padding: 0 32px;
    margin: 32px auto;
}
.yoka-challe-flow h2 {
    font-family: var(--font-ads);
    font-size: 40px;
}
ol.yoka-challe-flow-item {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
  font-family: var(--font-tsuku);
}
ol.yoka-challe-flow-item li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width:1024px) {
    ol.yoka-challe-flow-item li {
        font-size: 16px;
    }
}

ol.yoka-challe-flow-item>li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ads);
  left: 0px;
  color: #ffffff;
  background-color: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50vh;
}
.yoka-challe-flow-item-title {
    display: inline-block;
    margin-bottom: 16px;
}
.oubo-shime-img {
    text-align: right;
}
.oubo-shime-img img {
    width: 50%;
}

/* 当選者の声 */
.tousensha-koe {
    padding: 32px 0;
}
.tousensha-koe h2 {
    text-align: center;

}
.tousensha-koe h2 img {
    width: 65%;
}
.tousensha-koe-item {
    display: flex;
    justify-content: space-between;
    background: rgba(39,152,144,0.3);
    padding: 18px;
    border-radius: 50vh;
    margin-top: 32px;
    margin-bottom: 32px;
}
.tousensha-koe-item img{
    width: 150px;
    border-radius: 50vh;
}
.tousensha-koe-detail {
    padding: 0 32px;
    padding-right: 50px;
    font-size: 20px;
    font-family: var(--font-tsuku);
    font-weight: 700;
}
a.tousensha-more-btn {
    display: block;
    text-align: center;
}
a.tousensha-more-btn img {
    width: 150px;
}
@media screen and (min-width:1024px) {
    .tousensha-koe-item img{
        width: 150px;
    }
    .tousensha-koe-detail {
        font-size: 16px;
        padding: 0 32px;
    }
}

/*  */
/* coming-soon */
/*  */
.coming-soon-img {
    text-align: center;
}
.coming-soon-img img {
    width: 80%;
}
.coming-soon-text {
    text-align: center;
}
.coming-soon-text p {
    font-size: 25px;
    font-family: var(--font-ads);
    margin-bottom: 32px;
}
.coming-soon-text img {
    max-width: 285px;
}
@media screen and (min-width: 1024px) {
    .coming-soon-text p {
        font-size: 23px;
    }
    .coming-soon-text img  {
        max-width: 255px;
    }
}