@charset "UTF-8";


/* 仕様設定 */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    color: #333;
}

body.hidden {
    overflow: hidden;
}

h2 {
    font-family: "mochiy-pop", sans-serif;
font-weight: 400;
font-style: normal;
    font-size: 5.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

h2 img {
    margin-left: 20px;
}

.h2-en {
    font-family: "mochiy-pop", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 1.1;
}

.pc-view {
    display: block;
}

.sp-view {
    display: none;
}

.sp-menu {
    display: none;
}

@media screen and (max-width:1600px) {
    html {
        font-size: 50%;
    }
}

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

    html {
        font-size: 35%;
    }

    .pc-view {
        display: none;
    }

    .sp-view {
        display: block;
    }

    .sp-menu {
        display: block;
    }

    h2 {
        margin-bottom: 10px;
    }
}

.tri-icon {
    position: relative;
}

.tri-icon::before {
    content: "";
    display: block;
    background-image: url(../images/tri-icon.png);
    background-repeat: repeat-y;
    background-size: contain;
    width: 37px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.tri-icon::after {
    content: "";
    display: block;
    background-image: url(../images/tri-icon.png);
    background-repeat: repeat-y;
    background-size: contain;
    width: 37px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotateY(180deg);
}

/* カラー設定 */

.black {
    color: #333;
}

.white {
    color: #fff;
}

.orange {
    color: #F08200;
}

.blue {
    color: #00AAEB;
}

.pink {
    color: #E64191;
}

.yellow {
    color: #FFF000;
}

.red {
    color: #E60014;
}

/* ボタン設定 */

.p-btn {
    transition: 0.3s all;
}

.p-btn:hover {
    opacity: 0.7;
    transition: 0.3s all;
}

.red-btn {
    background-color: #E60014;
    width: 660px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    position: relative;
    z-index: 10;
}

.red-btn::after {
    content: "";
    display: block;
    background: url(../images/btn-icon.png);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 26px;
    right: 40px;
}

.red-btn a {
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    color: #fff;
    padding: 40px 0;
    display: block;
    width: 100%;
    text-align: center;
}

.header-btn {
    border-radius: 30px;
    background-color: #E60014;
}

.header-btn a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: block;
    padding: 15px 20px;
}

.black-btn {
    border: 3px solid #333333;
    background-color: #fff;
    border-radius: 50px;
    width: 17vw;
    margin-left: auto;
    margin-right: auto;
}

.black-btn a {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    padding: 18px 0;
    display: block;
}

.white-btn {
    display: inline-block;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 50px;
    margin-top: 25px;
}

.white-btn a {
    padding: 18px 40px;
    display: block;
    font-weight: 600;
}

.entry-btn {
    margin-bottom: 30px;
}

.yellow-btn {
    background-color: #FFF000;
    width: 51%;
    text-align: center;
    border-radius: 100px;
    position: relative;
    transition: 0.3s;
    border: 3px solid #FFF000;
}

.yellow-btn:hover {
    transition: 0.3s all;
    background-color: #E60014;
    border: 3px solid #FFF000;
    opacity: 1;
}

.yellow-btn::after {
    content: "";
    display: block;
    background: url(../images/btn-icon.png);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 26px;
    right: 40px;
}

.yellow-btn a {
    display: block;
    padding: 40px 0;
    color: #E60014;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    transition: 0.3s;
}

.yellow-btn:hover a {
    color: #FFF000;
    transition: 0.3s;
}

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

    .red-btn {
        width: 100%;
    }

    .red-btn::after {
        width: 25px;
        height: 25px;
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 6%;
        transform: translateY(-50%);
    }
    
    .red-btn a {
        padding: 20px 0;
        font-weight: 700;
        font-size: 3.6rem;
    }

    .black-btn {
        width: 70%;
    }

    .black-btn a {
        font-size: 3.6rem;
    }

    .white-btn {
        width: 100%;
        text-align: center;
    }

    .white-btn a {
        padding: 18px 20px;
        font-size: 2.8rem;
    }

    .yellow-btn {
        width: 100%;
    }

    .yellow-btn a {
        font-size: 3.6rem;
        padding: 20px 0;
    }

    .yellow-btn::after {
        width: 25px;
        height: 25px;
        background-size: contain;
        position: absolute;
        top: 28%;
        right: 6%;
    }

}


/* レイアウト共通 */

header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.pc-header {
    padding: 28px 2% 28px 3%;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
    display: none;
}

.pc-header div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-header h1 {
    width: clamp(16rem, 13.037rem + 12.157vw, 27.625rem);
}

.pc-header h1 img {
    width: 100%;
}

.pc-header nav ul {
    display: flex;
    align-items: center;
}

.pc-header nav ul li {
    font-size: 1.8rem;
    margin-left: clamp(0.938rem, 0.818rem + 0.49vw, 1.406rem);
    margin-right: clamp(0.938rem, 0.818rem + 0.49vw, 1.406rem);
}

.block {
    width: 68%;
    margin-left: auto;
    margin-right: auto;
}

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

    .block {
        width: 80%;
    }
}

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

    .block {
        width: 90%;
    }
}



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

    .sp-menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        display: none;
    }

    .sp-header {
        padding: 15px 3%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
    }

    .sp-header h1 {
        width: 65%
    }

    .sp-header h1 a img {
        width: 100%;

    }

    .drawer-btn {
        width: 30px;
        height: 30px;
        /* background-color: tan; */
        position: relative;
    }

    .drawer-btn span {
        content: "";
        display: block;
        width: 30px;
        height: 1px;
        border: 2px solid #E60014;
        background: #E60014;
        border-radius: 10px;
        position: absolute;
        transition: 0.3s;
    }

    .drawer-btn span:nth-child(1) {
        top: 5px;
        left: 0;
    }
    .drawer-btn span:nth-child(2) {
        top: 15px;
        left: 0;
        opacity: 1;
    }
    .drawer-btn span:nth-child(3) {
        top: 25px;
        left: 0;
    }

    .hide span {
        transition: 0.3s;
    }

    .hide span:nth-child(1) {
        transform: rotateZ(45deg);
        top: 10px;
    }
    .hide span:nth-child(2) {
        opacity: 0;
    }
    .hide span:nth-child(3) {
        transform: rotateZ(-45deg);
        top: 10px;
    }

    .sp-menu-cont {
        background-color: #FFFAC8;
        width: 100%;
        height: 100vh;
        padding-top: 26vw;
        padding-left: 5%;
        padding-right: 5%;
        display: none;
        overflow-y: scroll;
        padding-bottom: 200px;
    }

    .sp-menu-cont.view {
        display: block;
    }

    .sp-menu-cont nav ul li {
        font-size: 2.8rem;
        font-weight: 600;
        /* padding-bottom: 30px; */
        border-bottom: 1px solid #C8C8C8;
        margin-bottom: 30px;
    }

    .sp-menu-cont nav ul li a::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background-size: contain;
        background-image: url(../images/sp-nav-icon.png);
        background-repeat: no-repeat;
    }

    .sp-menu-cont nav ul li:last-child {
        margin-bottom: 40px;
    }

    .sp-menu-cont nav ul li a {
        padding-bottom: 30px;
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


}

/* レイアウト共通（タイトル） */

.ttl-bg {
    position: relative;
}

.ttl-bg__block {
    /* height: 415px; */
    height: 21.6vw;
    background-color: #EB3344;
    background-image: url(../images/bg-round_pc.png);
    clip-path: polygon(0 0, 100% 0, 100% 64%, 50% 100%,0 64%);
    text-align: center;
    /* padding: 120px 182px; */
    padding: 6.2% 12%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

/* MV */

.mv img {
    width: 100%;
}

/* ポップアップ */

.pop {
    position: fixed;
    z-index: 100;
    top: 80vh;
    /* top: 55vh; */
    right: 0;
    /* background-color: #00AAEB; */
    background-color: #E64191;
    border-radius: 20px 0 0 20px;
    padding: 30px 26px;
    width: 300px;
}

.pop a {
    transition: 0.3s;
}

.pop:hover a {
    opacity: 0.7;
    transition: 0.3s;
}

.pop-close {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 0 0 0 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.pop-close span {
    content: "";
    display: block;
    width: 18px;
    height: 3px;
    /* background: #00AAEB; */
    /* border: 1px solid #00AAEB; */
    background: #E64191;
    border: 1px solid #E64191;
    border-radius: 10px;
    position: absolute;
}

.pop-close span:nth-child(1) {
    top: 15px;
    left: 6px;
    transform: rotateZ(45deg);
}
.pop-close span:nth-child(2) {
    top: 15px;
    left: 6px;
    transform: rotateZ(-45deg);
}

.pop-cont {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: flex-start;
}

.pop-cont img {
    /* margin-right: 10px; */
    margin-right: 5%;
}

.pop-cont p {
    color: #fff;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0;
}

.pop-strong {
    /* font-size: 3rem; */
    font-size: 2.2rem;
    display: block;
    /* text-align: center; */
}

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

    .pop-cont p {
        font-size: 2.2rem;
    }

    .pop-strong {
        font-size: 2.8rem;
    }

    .pop-cont img {
        margin-right: 10%;
    }

}

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

    .pop-cont img {
        margin-right: 10px;
    }

    .ttl-bg__block {
        background-size: 30px 30px;
    }

    .pop {
        top: 81vh;
        /* top: 60vh; */
        right: auto;
        left: 0;
        border-radius: 0 10px 10px 0;
        padding: 20px 25px 20px 30px;
        width: auto;
    }

    .pop-pc-view {
        display: none;
    }

    .pop-close {
        right: auto;
        left: 0;
        border-radius: 0 0 5px 0;
    }

    .pop-cont img {
        width: 30px;
    }

    .pop-cont p {
        font-size: 2.5rem;
        line-height: 1.6;
    }
}

/* ロゴ */

.logo {
    padding: 50px 16% 80px;
}

.logo p {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 3rem;
    line-height: 2;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.logo div {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* ロゴ1つのため中央よせ */
    justify-content: center;
}

.logo a {
    display: block;
    width: 28%;
    transition: 0.3s;
}

.logo a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.logo a img {
    display: block;
    width: 100%;
}

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

    .logo {
        padding: 25px 5% 40px;
    }
    
    .logo div {
        flex-direction: column;
    }

    .logo div a{
        width: 59%;
        margin-bottom: 6%;
    }

}

/* 追加バナー　受賞者決定 */

.outcome {
    margin-bottom: 100px;
}

.outcome p {
    width: 68%;
    margin-left: auto;
    margin-right: auto;
}

.outcome p a {
    transition: 0.3s;
}

.outcome p a:hover {
    transition: 0.3s;
    opacity: 0.7;
}

.outcome p a img {
    width: 100%;
}

@media screen and (max-width:768px) {
    
    .outcome p {
        width: 90%;
    }
}

/* 概要 */

.overview {
    background-color: #EB3344;
    background-image: url(../images/bg-round_pc.png);
    padding: 100px 0;
}

.intro-desc {
    background-color: #fff;
    padding: 80px 8.4vw 100px;
    border-radius: 20px;
    position: relative;
}

.intro-desc::before {
    content: "";
    display: block;
    background: url(../images/illust02.png);
    background-repeat: no-repeat;
    /* width: 227px; */
    width: 12vw;
    /* height: 235px; */
    height: 12vw;
    background-size: contain;
    position: absolute;
    bottom: -3vw;
    left: -7vw;
    z-index: 10;
}

.intro-desc::after {
    content: "";
    display: block;
    background: url(../images/illust01.png);
    background-repeat: no-repeat;
    /* width: 245px; */
    width: 13vw;
    /* height: 230px; */
    height: 12vw;
    background-size: contain;
    position: absolute;
    top: -3vw;
    right: -8vw;
    z-index: 10;
}

.intro-desc p {
    line-height: 2.27;
}

.intro-desc p:first-child {
    margin-bottom: 40px;
}

.bc-yellow {
    background:linear-gradient(transparent 60%, #FFF000 60%);
}

@media screen and (max-width:1100px) {
    .intro-desc::before {
        left: 2vw;
    }

    .intro-desc::after {
        top: -6vw;
        right: 0vw;
    }
    
}

@media screen and (max-width:768px) {
    .overview {
        padding-top: 60px;
        background-size: 30px 30px;
    }

    .intro-desc {
        padding: 40px 6% 80px;
    }

    .intro-desc p {
        font-size: 2.8rem;
    }

    .intro-desc::after {
        display: none;
    }

    .intro-desc::before {
        width: 20vw;
        height: 24vw;
        bottom: -15vw;
    }

}

@media screen and (max-width:500px) {
    .intro-desc::before {
        width: 30vw;
        height: 32vw;
        bottom: -15vw;
    }

}

/* お知らせ */

.news {
    padding: 120px 0 160px;
}

.news-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.news-wrap::before {
    content: "";
    display: block;
    background: url(../images/illust03.png);
    background-repeat: no-repeat;
    /* width: 244px; */
    width: 13vw;
    /* height: 260px; */
    height: 14vw;
    background-size: contain;
    position: absolute;
    /* top: 16vw; */
    top: 54%;
    left: 2vw;
    z-index: 10;
}

.news-ttl {
    width: 30%;
    margin-right: 5.7%;
}

.news-ttl h2 {
    display: flex;
    align-items: center;
}

.news-ttl h2 img {
    width: 20%;
}

.news-over {
    width: 70%;
    /* height: 38vw; */
    max-height: 551px;
    /* min-height: 551px; */
    overflow-y: scroll;
}

.news-cont dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 40px;
    padding-right: 5%;
    padding-left: 5%;
    margin-bottom: 40px;
    border-bottom: 1px solid #C8C8C8;
}

.news-cont dt {
    font-family: 'M PLUS 1p', sans-serif;
    width: 15%;
    margin-right: 40px;
}

.news-cont dd {
    width: 80%;
    font-size: 1.6rem;
    line-height: 2.2;
}

.news-cont dd a {
    transition: 0.3s;
}

.news-cont dd a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.news-cont dd .none {
    display: none;
}

.news-cont dd .visible::after {
    content: "…";
}

.news-cont dd .next {
    margin-right: -4px;
}



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

    .news {
        padding: 65px 0 85px;
    }

    .news-ttl h2 img {
        width: 38.5px;
        margin-left: 10px;
    }

    .tri-icon::before {
        background-image: url(../images/tri-icon-sp.png);
        top: 0;
        left: 0;
        background-repeat: repeat-x;
        width: 100%;
        height: 20px;
    }

    .tri-icon::after {
        background-image: url(../images/tri-icon-sp.png);
        top: auto;
        bottom: 0;
        left: 0;
        background-repeat: repeat-x;
        transform: rotate(180deg);
        width: 100%;
        height: 20px;
    } 

    .news-wrap {
        flex-direction: column;
    }

    .news-ttl {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .news-ttl h2 {
        justify-content: center;
        margin-bottom: 10px;
    }

    .h2-en {
        text-align: center;
        font-size: 3.2rem;
    }

    .news-over {
        width: 100%;
        /* height: 58vh; */
        min-height: auto;
        max-height: 640px;
    }

    .news-cont dl {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .news-cont dl dt {
        margin-bottom: 10px;
        font-size: 3.6rem;
    }

    .news-cont dl dd {
        width: 100%;
        font-size: 2.8rem;
    }

    .news-wrap::before {
        display: none;
    }
}

@media screen and (max-width:500px) {
    .news-over {
        /* height: 110vh; */
        max-height: 800px;
    }
}

/* プログラムの流れ */

.program h2 {
    color: #fff;
}

.toko-odd {
    background-color: #FFFAC8;
    position: relative;
}

.toko01-odd::before {
    display: block;
    content: "";
    /* width: 455px; */
    width: 24vw;
    /* height: 455px; */
    height: 24vw;
    background-size: contain;
    position: absolute;
    left: 0;
    /* top: 265px; */
    top: 13.8vw;
    background-image: url(../images/square-left.png);
    background-repeat: no-repeat;
}

.toko03-odd::before {
    display: block;
    content: "";
    /* width: 455px; */
    width: 24vw;
    height: 24vw;
    /* height: 455px; */
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/square-left.png);
    background-repeat: no-repeat;
}

.toko-odd::after {
    display: block;
    content: "";
    /* width: 455px; */
    /* height: 455px; */
    width: 24vw;
    height: 24vw;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../images/square-right.png);
    background-repeat: no-repeat;
}

.toko-even {
    position: relative;
}

.toko-even::before {
    content: "";
    display: block;
    background-image: url(../images/tri-icon.png);
    background-repeat: repeat-y;
    background-size: contain;
    /* width: 37px; */
    width: 2vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.toko-even::after {
    content: "";
    display: block;
    background-image: url(../images/tri-icon.png);
    background-repeat: repeat-y;
    background-size: contain;
    /* width: 37px; */
    width: 2vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotateY(180deg);
}

.program-wrap .program-main:first-child {
    /* padding-top: 515px; */
    padding-top: 26.8vw;
}

.program-wrap .program-main:not(:first-child) {
    padding-top: 100px;
}

.program-main {
    text-align: center;
    padding-bottom: 160px;
}

.block__ttl {
    margin-bottom: 100px;
}

.block__ttl img {
    width: 26vw;
}

.program-main h3 {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 5rem;
    line-height: 1.5;
    font-weight: 900;
    margin-top: 20px;
}

.program-wrap .program-main:not(:first-child) h3 {
    margin-bottom: 50px;
}

.block__ttl p {
    line-height: 2;
}

.img-parent {
    line-height: 2.3;
    margin-bottom: 100px;
    position: relative;
}

.img-parent::before {
    content: "";
    display: block;
    background: url(../images/illust04.png);
    background-repeat: no-repeat;
    /* width: 335px; */
    width: 17vw;
    /* height: 493px; */
    height: 26vw;
    background-size: contain;
    position: absolute;
    bottom: -4vw;
    left: -11vw;
    z-index: 10;
}

.img-parent::after {
    content: "";
    display: block;
    background: url(../images/illust05.png);
    background-repeat: no-repeat;
    /* width: 335px; */
    width: 17vw;
    /* height: 493px; */
    height: 26vw;
    background-size: contain;
    position: absolute;
    bottom: -4vw;
    right: -10vw;
    z-index: 10;
}

.toko02-even {
    position: relative;
}

.toko02-even .block__ttl::before {
    content: "";
    display: block;
    background: url(../images/illust06.png);
    background-repeat: no-repeat;
    /* width: 205px; */
    width: 11vw;
    /* height: 198px; */
    height: 10vw;
    background-size: contain;
    position: absolute;
    top: 8vw;
    left: 21vw;
    z-index: 10;
}

.toko02-even .block__ttl::after {
    content: "";
    display: block;
    background: url(../images/illust07.png);
    background-repeat: no-repeat;
    /* width: 282px; */
    width: 15vw;
    /* height: 245px; */
    height: 13vw;
    background-size: contain;
    position: absolute;
    top: 16vw;
    right: 17vw;
    z-index: 10;
}

.block__cont {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.8fr;
    gap: 7% 40px;
    /* align-items: flex-start; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    text-align: center;
}

.block__cont div {
    /* width: 490px; */
}

.block__cont div h4 img {
    width: 11vw;
    height: 74px;
    object-fit: contain;
    margin-bottom: 15px;
}

.block__cont .judge-pic {
    width: 11vw;
    margin-bottom: 20px;
}

.block__cont .judge-name {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 10px;
}

.block__cont .judge-status {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.block__cont div:nth-child(2),
.block__cont div:nth-child(5) {
    border-left: 3px dotted #C8C8C8;
    border-right: 3px dotted #C8C8C8;
}

/* 03 */

.toko03-odd .block {
    position: relative;
}

.toko03-odd .block::before {
    content: "";
    display: block;
    background: url(../images/illust08.png);
    background-repeat: no-repeat;
    /* width: 240px; */
    width: 12.5vw;
    /* height: 292px; */
    height: 15vw;
    background-size: contain;
    position: absolute;
    bottom: -9vw;
    left: -5vw;
    z-index: 10;
}

.block__support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 30px;
    margin-bottom: 100px;
}

.support-parent img {
    width: 100%;
    /* display: block; */
}


/* 04 */

.block-result {
    position: relative;
}

.block-result::before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background: #E6E6E6;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 86px;
    z-index: -1;
}

.block-result dl {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.block-result dl:first-child {
    margin-bottom: 70px;
    position: relative;
}

.block-result dl:first-child::before {
    content: "";
    display: block;
    background: url(../images/illust09.png);
    background-repeat: no-repeat;
    /* width: 221px; */
    width: 11.5vw;
    /* height: 250px; */
    height: 13vw;
    background-size: contain;
    position: absolute;
    top: -12vw;
    right: 1vw;
    z-index: -1;
}

.block-result dl:nth-child(2) {
    position: relative;
}

.block-result dl:nth-child(2)::after {
    content: "";
    display: block;
    background: url(../images/illust10.png);
    background-repeat: no-repeat;
    /* width: 256px; */
    width: 13vw;
    /* height: 260px; */
    height: 13.5vw;
    background-size: contain;
    position: absolute;
    bottom: -3vw;
    right: -6vw;
    z-index: 10;
}

.block-result dl dt {
    font-weight: 400;
    width: 169px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.block-result dl dt .month {
    width: 56px;
}

.block-result dl dt .circle {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: 10px solid #F08200;
    border-radius: 100px;
    margin-left: 15px;
}

.block-result dl dd {
    width: 86%;
    /* height: 246px;
    text-align: left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 70px;
    padding-left: 250px; */
}

.block-result dl dd img {
    width: 100%;
    display: block;
}

.block-result dl dd .sp-view {
    display: none;
}

/* .block-result dl:nth-child(1) dd {
    background-image: url(../images/result-bg01.png);
}

.block-result dl:nth-child(2) dd {
    color: #fff;
    background-image: url(../images/result-bg02.png);
} */


.block-result dl dd h4 {
    font-size: 3.5rem;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

.block-result dl dd p {
    font-size: 1.8rem;
    line-height: 2;
}


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

    .img-parent {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .img-parent::before {
        left: -22vw;
    }

    .img-parent::after {
        right: -21vw;
    }

}

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

    .img-parent::before {
        left: -15vw;
        bottom: -9vw;
    }

    .img-parent::after {
        right: -17vw;
        bottom: -7vw;
    }

    .block-result dl:nth-child(2)::after {
        bottom: -10vw;
        right: -1vw;
    }
}

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

    .ttl-bg__block {
        height: 53vw;
    }

    .program .ttl-bg__block h2 img {
        width: 29px;
    }

    .ttl-bg__block {
        padding: 16% 0;
    }

    .program-wrap .toko01-odd {
        padding-bottom: 82vw;
    }

    .program-wrap .program-main:not(:first-child) {
        padding-bottom: 85px;
        padding-top: 60px;
    }

    .program-wrap .program-main:first-child {
        padding-top: 64.8vw;
    }

    .block__ttl img {
        width: 74vw;
    }

    .toko01-odd::before {
        width: 54vw;
        height: 54vw;
        top: 33.8vw;
    }

    .toko01-odd::after {
        width: 54vw;
        height: 54vw;
    }

    .block__ttl {
        margin-bottom: 40px;
    }

    .block__ttl p {
        font-size: 2.8rem;
        padding: 0 2%;
    }

    .img-parent {
        width: 100%;
        text-align: left;
        margin-bottom: 40px;
        font-size: 3.2rem;
    }

    .img-parent::before {
        width: 40vw;
        height: 58vw;
        bottom: -81vw;
        left: 7vw;
    }

    .img-parent::after {
        width: 30vw;
        height: 56vw;
        right: 10vw;
        bottom: -81vw;
    }

    .toko-even::before {
        background-image: url(../images/tri-icon-sp.png);
        top: 0;
        left: 0;
        background-repeat: repeat-x;
        width: 100%;
        height: 20px;
    }

    .toko-even::after {
        background-image: url(../images/tri-icon-sp.png);
        top: auto;
        bottom: 0;
        left: 0;
        background-repeat: repeat-x;
        transform: rotate(180deg);
        width: 100%;
        height: 20px;

    } 

    .toko02-even .block__ttl::before {
        width: 19vw;
        height: 19vw;
        top: 3vw;
        left: 13vw;
    }

    .toko02-even .block__ttl::after {
        display: none;
    }

    .program-wrap .program-main:not(:first-child) h3 {
        margin-bottom: 25px;
    }

    .toko03-odd::before {
        width: 54vw;
        height: 54vw;
    }
    .toko03-odd::after {
        width: 54vw;
        height: 54vw;
    }

    .toko03-odd .block::before {
        display: none;
    }

    .block__cont {
        display: flex;
        flex-direction: column;
    }

    .block__cont div {
        margin-bottom: 40px;
    }

    .block__cont div h4 img {
        width: 48%;
    }

    .block__cont .judge-pic {
        width: 48%;
    }

    .block__cont .judge-name {
        font-size: 5rem;
    }

    .block__cont .judge-status {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }

    .block__cont div:nth-child(2), .block__cont div:nth-child(5) {
        border-left: 0;
        border-right: 0;
    }

    .block__support {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 50px;
    }

    .support-parent {
        margin-bottom: 40px;
    }

    .block-result::before {
        left: 38px;
    }

    .block-result dl:first-child {
        margin-bottom: 35px;
    }

    .block-result dl dt {
        padding-top: 15px;
        font-weight: 800;
        width: 70px;
    }

    .block-result dl dt .month {
        width: 30px;
    }

    .block-result dl dt .circle {
        width: 20px;
        height: 20px;
        border: 5px solid #F08200;
        border-radius: 50px;
        margin-left: 0;
    }

    .block-result dl dd .sp-view {
        display: block;
    }

    .block-result dl dd .pc-view {
        display: none;
    }

    .block-result dl:first-child::before {
        display: none;
    }

    .block-result dl:nth-child(2)::after {
        width: 24.5vw;
        height: 28vw;
        bottom: -10vw;
        left: 0vw;
    }

}

@media screen and (max-width:500px) {
    
    .img-parent::before {
        width: 40vw;
        height: 58vw;
        bottom: -100vw;
        left: 7vw;
    }

    .img-parent::after {
        width: 30vw;
        height: 56vw;
        right: 10vw;
        bottom: -100vw;
    }

    .toko02-even .block__ttl::before {
        width: 19vw;
        height: 19vw;
        top: 8vw;
        left: 13vw;
    }

    .block-result dl:nth-child(2)::after {
        width: 32.5vw;
        height: 33vw;
        bottom: -15vw;
        left: -2vw;
    }
}


/* 保護者・先生へ */


.for {
    background-color: #FFFAC8;
    /* padding-top: 515px; */
    padding-top: 26.8vw;
    padding-bottom: 190px;
    position: relative;
}

.for::before {
    display: block;
    content: "";
    /* width: 455px; */
    width: 24vw;
    /* height: 455px; */
    height: 24vw;
    background-size: contain;
    position: absolute;
    left: 0;
    /* top: 265px; */
    top: 13.8vw;
    background-image: url(../images/square-left.png);
    background-repeat: no-repeat;
}

.for::after {
    display: block;
    content: "";
    width: 24vw;
    height: 24vw;
    /* width: 455px; */
    /* height: 455px; */
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../images/square-right.png);
    background-repeat: no-repeat;
}

.for h2 {
    color: #fff;
}

.for-main .block-desc {
    text-align: center;
}

.for-main .block-desc p {
    line-height: 2;
}

.for-main .block-desc p:nth-child(1) {
    margin-bottom: 60px;
}

.for-main .block-desc p:nth-child(2) {
    margin-bottom: 100px;
}

.for-main .block-desc p:nth-child(3) {
    margin-bottom: 100px;
}

.block-points__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* 子供たちの探究心に */

.block-points__wrap:nth-child(1)::before {
    content: "";
    display: block;
    background: url(../images/illust11.png);
    background-repeat: no-repeat;
    /* width: 166px; */
    width: 8.6vw;
    /* height: 245px; */
    height: 13vw;
    background-size: contain;
    position: absolute;
    bottom: -2vw;
    left: -4vw;
    z-index: 10;
}

/* 専門家や仲間と〜 */

.block-points__wrap:nth-child(2) {
    flex-direction: row-reverse;
}

.block-points__wrap:nth-child(2)::before {
    content: "";
    display: block;
    background: url(../images/illust12.png);
    background-repeat: no-repeat;
    /* width: 232px; */
    width: 12vw;
    /* height: 200px; */
    height: 10vw;
    background-size: contain;
    position: absolute;
    bottom: -2vw;
    right: -4vw;
    z-index: 10;
}

/* 予算を獲得し〜 */

.block-points__wrap:not(:nth-child(3)) {
    margin-bottom: 120px;
}

.block-points__wrap:nth-child(3)::before {
    content: "";
    display: block;
    background: url(../images/illust13.png);
    background-repeat: no-repeat;
    /* width: 181px; */
    width: 9vw;
    /* height: 170px; */
    height: 9vw;
    background-size: contain;
    position: absolute;
    bottom: -2vw;
    left: -4vw;
    z-index: 10;
}

.points-img {
    width: 50%;
}

.points-img img {
    width: 100%;
}

.block-points__wrap div {
    width: 45%;
}

.block-points__wrap div h3 {
    font-family: "mochiy-pop", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

.block-points__wrap div p {
    font-size: 1.8rem;
    line-height: 2.1;
    position: relative;
    z-index: 10;
}

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

    .for {
        padding-top: 64.8vw;
        padding-bottom: 80px;
    }

    .for::before {
        width: 54vw;
        height: 54vw;
        top: 33.8vw;
    }

    .for::after {
        width: 54vw;
        height: 54vw;
    }

    .for .ttl-bg__block h2 img {
        width: 50px;
    }

    .for-main .block-desc {
        text-align: left;
    }

    .for-main .block-desc p {
        font-size: 3.6rem;
    }

    .for-main .block-desc p:nth-child(1) {
        margin-bottom: 30px;
    }

    .for-main .block-desc p:nth-child(2) {
        margin-bottom: 40px;
    }

    .for-main .block-desc p:nth-child(3) {
        margin-bottom: 50px;
    }

    .block-points__wrap {
        flex-direction: column;
    }

    .points-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .block-points__wrap div {
        width: 100%;
    }

    .block-points__wrap div h3 {
        font-size: 5rem;
        margin-bottom: 15px;
    }

    .block-points__wrap div p {
        font-size: 2.8rem;
        font-weight: 500;
    }

    .block-points__wrap:not(:nth-child(3)) {
        margin-bottom: 60px;
    }

    .block-points__wrap:nth-child(2) {
        flex-direction: column;
    }

    .block-points__wrap:nth-child(2) div h3 {
        text-align: right;
    }

    .block-points__wrap:nth-child(1)::before {
        width: 24vw;
        height: 36vw;
        bottom: auto;
        left: auto;
        top: 30vw;
        right: 0vw;
    }

    .block-points__wrap:nth-child(2)::before {
        width: 33vw;
        height: 28vw;
        bottom: auto;
        right: auto;
        top: 40vw;
        left: -4vw;
    }

    .block-points__wrap:nth-child(3)::before {
        width: 30vw;
        height: 28vw;
        bottom: auto;
        left: auto;
        top: 40vw;
        right: -2vw;
    }

}

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

    .block-points__wrap:nth-child(2)::before {
        width: 33vw;
        height: 28vw;
        bottom: auto;
        right: auto;
        top: 40vw;
        left: -1vw;
    }

    .block-points__wrap:nth-child(3)::before {
        right: -1vw;
    }
}

/* 募集要項 */

.guide {
    padding-top: 115px;
}

.guide .guide-ttl {
    text-align: center;
    margin-bottom: 80px;
}

.guide-bg {
    position: relative;
    background-image: url(../images/guide-bgtop.png);
    /* ↓動画表示させる際戻す */
    background-position: top 13vw center;
    /* ↓何も表示させない場合 */
    /* background-position: top center; */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    /* ↓動画表示させる際戻す */
    height: 50vw;
    /* ↓バナー表示 */
    /* height: 42vw; */
    /* ↓何も表示させない場合 */
    /* height: 12vw; */
}

.guide-bg .youtube  {
    width: 68%;
    aspect-ratio: 16 / 9;
    margin-bottom: 100px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

/* 一時表示のバナー */

.guide-banner {
    padding-left: 17%;
    padding-right: 17%;
    margin-left: auto;
    margin-right: auto;
}

.guide-banner a {
    transition: 0.3s;
}

.guide-banner a:hover {
    transition: 0.3s;
    opacity: 0.7;
}

.guide-banner img {
    width: 100%;
}

.guide-cont {
    position: relative;
}

.guide-cont .wrap {
    background-color: #D7F5FF;
    padding-top: 0;
    padding-left: 17%;
    padding-right: 17%;
    padding-bottom: 150px;
}

.wrap-inner {
    /* padding-bottom: 40px; */
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 40px;
}

.wrap-inner h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap-inner h3 .switch {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 3px solid #E60014;
    border-radius: 100%;
    position: relative;
}

.wrap-inner h3 .switch span {
    content: "";
    display: block;
    width: 18px;
    height: 4px;
    background: #E60014;
    border-radius: 20px;
    position: absolute;
}

.wrap-inner h3 .switch span:nth-child(1) {
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}

.wrap-inner h3 .switch span:nth-child(2) {
    top: 18px;
    left: 11px;
    transition: 0.3s;
    /* transform: translateX(-50%)rotateZ(90deg); */
}

.wrap-inner h3 .active span {
    background: #fff;
}

.active span:nth-child(2) {
    top: 18px;
    left: 11px;
    transform: rotateZ(90deg);
    transition: 0.3s;
}

.wrap-inner h3 .switch.active {
    background-color: #E60014;
    border: 3px solid #E60014;
}

.wrap-inner .answer {
    padding-bottom: 40px;
}

.wrap-inner .answer p {
    line-height: 2;
    font-size: 2rem;
}

/* あらかじめ非表示にしておくものに.close付与 */
.wrap-inner .closed {
    display: none;
}

.title {
    margin-bottom: 25px;
}

 .wrap-inner .answer dl {
    font-size: 1.8rem;
    line-height: 2.1;
    margin-bottom: 25px;
}

 .wrap-inner .answer dl:last-child {
    margin-bottom: 0;
}

.download {
    text-decoration: underline;
    color: #00AAEB;
}

.draft-btn {
    margin-bottom: 20px;
}

 .wrap-inner .answer .special {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

 .wrap-inner .answer .special dl {
    font-size: 2rem;
    margin-bottom: 0;
}

.wrap-inner .answer .special dl:nth-child(1) {
    margin-right: 60px;
}

.wrap-inner .entry .entry-text {
    font-size: 1.8rem;
}

.howto div {
    margin-bottom: 40px;
}

.howto div:nth-child(2) p {
    margin-bottom: 5px;
} 

.howto div:nth-child(2) p:last-child {
    margin-bottom: 0;
}

.howto div:last-child {
    margin-bottom: 0;
}

.howto div h4 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
}

.attention {
    font-size: 1.4rem!important;
    line-height: 2;
}

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

    .guide-bg .youtube {
        width: 80%;
    }

    .guide-cont .wrap {
        padding-top: 2%;
        padding-left: 10%;
        padding-right: 10%;
    }
}

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

    .guide-bg .youtube {
        width: 90%;
    }

    .guide-banner {
        padding-left: 5%;
        padding-right: 5%;
    }

    .guide-cont .wrap {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media screen and (max-width:768px) {
    .guide {
        padding-top: 57px;
    }

    .guide-bg {
        height: 55vw;
    }

    .guide .guide-ttl {
        margin-bottom: 40px;
    }

    .guide .guide-ttl h2 img {
        width: 37px;
    }

    .wrap-inner h3 {
        font-size: 3.9rem;
    }

    .wrap-inner h3 .switch {
        width: 30px;
        height: 30px;
    }

    .wrap-inner h3 .switch span {
        width: 14px;
        height: 3px;
    }

    .wrap-inner h3 .switch span:nth-child(1) {
        top: 11px;
        /* left: 6px; */
    }

    .wrap-inner h3 .switch span:nth-child(2) {
        top: 11px;
        left: 5px;
    }

    .wrap-inner .answer {
        padding-bottom: 30px;
    }

    .wrap-inner .answer p {
        font-size: 2.8rem;
        font-weight: 600;
    }

    .wrap-inner .answer dl {
        font-size: 2.5rem;
    }

    .wrap-inner .answer .special {
        flex-direction: column;
    }

    .wrap-inner .answer .special dl {
        font-size: 2.8rem;
        font-weight: 600;
    }

    .wrap-inner .answer .special dl:nth-child(1) {
        margin-bottom: 25px;
    }

    .howto div h4 {
        font-size: 2.8rem;
    }

    .entry-btn {
        margin-bottom: 40px;
    }

    .wrap-inner .entry .entry-text {
        font-size: 2.5rem;
        font-weight: 400;
    }

    .howto div:nth-child(2) p {
        margin-bottom: 20px;
    }

    .attention {
        font-size: 2.4rem!important;
    }

    .round-bg {
        padding-bottom: 50px;
    }

    
}

/* 採択賞 */

.award {
    padding-top: 120px;
}

.award-ttl {
    text-align: center;
    margin-bottom: 100px;
}

.award-bg {
    /* background-color: #FFFAC8; */
    /* padding-top: 247px; */
    position: relative;
    background-image: url(../images/award-bgtop.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 12vw;

}

.award-cont {
    padding-top: 0;
    background-color: #FFFAC8;
    padding-left: 17%;
    padding-right: 17%;
    padding-bottom: 150px;
}

.btn-wrap .white-btn {
    margin-top: 0;
    margin-bottom: 40px;
}

.btn-wrap .white-btn:nth-child(1) {
    margin-right: 20px;
}

.award .koka-btn {
    margin-top: 0;
    margin-bottom: 40px;
}

.century p:nth-child(2) {
    font-weight: 600;
    line-height: 2;
}

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

    .award-cont {
        /* padding-top: 13%; */
        padding-left: 10%;
        padding-right: 10%;
    }
}

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

    .award-cont {
        padding-left: 5%;
        padding-right: 5%;
    }
}




@media screen and (max-width:768px) {
    .award {
        padding-top: 57px;
    }

    .award h2 img {
        width: 27px;
        margin-left: 10px;
    }

    .award-ttl {
        /* padding-top: 42px; */
        margin-bottom: 42px;
    }

    .award-bg {
        padding-top: 60px;
        height: 19vw;
    }

    .award-cont {
        padding-bottom: 80px;
    }
}

/* パートナー企業 */

.partner {
    background-color: #EB3344;
    background-image: url(../images/bg-round_pc.png);
    padding: 115px 0 160px;
}

.partner-ttl {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.partner-desc {
    color: #fff;
    line-height: 2;
    margin-bottom: 100px;
    text-align: center;
}

.block-wrap {
    background-color: #fff;
    border-radius: 20px;
    padding: 80px 8% 100px;
}

.block-wrap__inner {
    margin-bottom: 80px;
}

.block-wrap__inner h3 {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.block-wrap__inner ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.block-wrap__inner:nth-child(1) ul {
    justify-content: center;
}

.block-wrap__inner ul li {
    /* margin-bottom: 40px; */
    padding: 0 1%;
}

.block-wrap__inner img {
    width: 100%;
}

.block-wrap__inner ul li a {
    transition: 0.3s;
}

.block-wrap__inner ul li a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

/* プラチナパートナー */

.block-wrap__inner:nth-child(1) li {
    /* width: 410px; */
    width: 22vw;
    /* margin: 0 20px 30px; */
}

/* ゴールドパートナー */

.block-wrap__inner:nth-child(2) {
    margin-bottom: 40px;
}

.block-wrap__inner:nth-child(2) ul {
    justify-content: space-between;
    /* flex-wrap: nowrap; */
    /* display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr; */
}

.block-wrap__inner:nth-child(2) li {
    /* width: 340px; */
    width: 17.7vw;
    /* width: 87%; */
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* シルバー・ブロンズパートナー・メディア施設 */

.silver,
.bronze,
.media {
    margin-bottom: 40px
}

.silver ul,
.bronze ul {
    display: flex;
    align-items: center;
    justify-content: center;
}


.media ul {
    /* display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
}

.silver li,
.bronze li,
.media li

{
    /* width: 245px; */
    width: 13vw;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0 11px;
}

/* メディア・施設パートナー */

.media {
    margin-bottom: 0;
}


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

    .partner {
        padding: 60px 0 80px;
        background-size: 30px 30px;
    }

    .partner .partner-ttl h2 img {
        width: 28px;
    }

    .partner-ttl {
        margin-bottom: 25px;
    }

    .partner-desc {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    .block-wrap {
        padding: 40px 8.5% 10px;
    }

    .block-wrap__inner {
        margin-bottom: 40px;
    }

    .block-wrap__inner h3 {
        font-size: 3.6rem;
        margin-bottom: 20px;
    }

    .block-wrap__inner ul {
        flex-direction: column;
    }

    .block-wrap__inner ul li {
        /* margin-bottom: 30px; */
    }

    .block-wrap__inner:nth-child(1) li {
        width: 83%;
    }

    .block-wrap__inner:nth-child(2) ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .block-wrap__inner:nth-child(2) li {
        width: 70%;
        margin-bottom: 30px;
        padding: 0;
    }

    .block-wrap__inner:nth-child(3) li, .block-wrap__inner:nth-child(4) li, .block-wrap__inner:nth-child(5) li {
        width: 40%;
        margin-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .block-wrap__inner:nth-child(3) ul, .block-wrap__inner:nth-child(4) ul, .block-wrap__inner:nth-child(5) ul {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

}

/* faq */

.faq {
    padding-top: 120px;
    padding-bottom: 160px;
}

.faq-ttl {
    text-align: center;
    margin-bottom: 100px;
}

.faq-wrap dl {
    margin-bottom: 60px;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2;
}

.faq-wrap dl img {
    width: 3vw;
    margin-right: 30px;
}

.faq-wrap dl dt {
    background-color: #FFFAC8;
    padding: 30px 3%;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.faq-wrap dl dt .faq-dt__pad {
    display: block;
    width: 80%;
}

.faq-wrap dl dt .faq-switch span {
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    border-radius: 10px;
    background: #333;
    position: absolute;
    top: 50%;
}

/* - */
.faq-wrap dl dt .faq-switch span:nth-child(1) {
    /* top: 60px; */
    right: 40px;
}

/* ＋ */
.faq-wrap dl dt .faq-switch span:nth-child(2) {
    /* top: 60px; */
    right: 40px;
    transition: 0.3s;
}

.faq-wrap dl dt .faq-switch.active02 span:nth-child(2) {
    transform: rotateZ(90deg);
    transition: 0.3s;
}

.faq-wrap dl dd {
    width: 86%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 3%;
}

.faq-wrap dl dd.flex {
    display: flex!important;
}

.faq-wrap dl dd.closed {
    display: none;
}

.banner {
    text-align: center;
}

.banner a {
    transition: 0.3s;
}

.banner a:hover {
    opacity: 0.7;
    transition: 0.3s;
}
.banner a img {
    /* width: 100%; */
    width: 30%;
}

@media screen and (max-width:768px) {
    .faq {
        padding-top: 62px;
        padding-bottom: 85px;
    }

    .faq-ttl {
        margin-bottom: 40px;
    }

    .faq-ttl h2 img {
        width: 38px;
        margin-left: 10px;
    }

    .faq-wrap dl {
        margin-bottom: 30px;
    }

    .faq-wrap dl dt {
        padding: 20px;
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .faq-wrap dl img {
        width: 11%;
    }

    .faq-wrap dl dt .faq-dt__pad {
        width: 63%;
    }

    .faq-wrap dl dt .faq-switch span {
        width: 15px;
        height: 2px;
    }

    .faq-wrap dl dt .faq-switch span:nth-child(1) {
        right: 20px;
    }

    .faq-wrap dl dt .faq-switch span:nth-child(2) {
        right: 20px;
    }

    .faq-wrap dl dd {
        width: 100%;
        padding: 0 20px;
        font-size: 2.8rem;
    }

    .banner a img {
        width: 60%;
    }

    

    
}

/* お問い合わせ */

.contact {
    background-color: #EB3344;
    background-image: url(../images/bg-round_pc.png);
    padding: 100px 0;
}

.contact-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-wrap__inner div {
    margin-bottom: 50px;
}

.contact-wrap__inner h2 {
    color: #fff;
    display: flex;
    align-items: center;
}

.reception {
    color: #fff;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .contact {
        padding: 60px 0 80px;
        background-size: 30px 30px;
    }

    .contact-wrap__inner h2 {
        justify-content: center;
    }

    .contact h2 img {
        width: 33px;
        margin-left: 10px;
    }

    .contact-wrap {
        flex-direction: column;
    }

    .contact-wrap__inner {
        margin-bottom: 40px;
    }

    .contact-wrap__inner div {
        margin-bottom: 25px;
    }

    .reception {
        font-size: 3.2rem;
        line-height: 2;
    }
}

footer {
    background-color: #FFFAC8;
    padding-top: 100px;
}

.footer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 140px;
}

.footer-wrap a {
    width: 22%;
}

.footer-wrap a img {
    width: 100%;
}

.footer-wrap ul {
    padding: 0 1%;
}

.footer-wrap ul li {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 1.8rem;
}

.footer-wrap ul li a {
    transition: 0.3s;
}

.footer-wrap ul li a:hover {
    transition: 0.3s;
    opacity: 0.7;
}

.footer-wrap p {
    font-size: 1.6rem;
    line-height: 2.5;
    padding: 20px 0;
    font-weight: 400;
    border-top: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
}

small {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.8;
    text-align: center;
    display: block;
    background-color: #fff;
}

@media screen and (max-width:768px) {
    footer {
        padding-top: 50px;
    }

    .footer-wrap {
        flex-direction: column;
        padding-bottom: 60px;
    }

    .footer-wrap a {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-wrap ul {
        width: 100%;
        padding: 0;
    }

    .footer-wrap ul li {
        font-size: 2.8rem;
        margin-bottom: 34px;
    }

    .footer-wrap ul:last-child li:last-child {
        margin-bottom: 0;
    }

    .footer-wrap ul:nth-child(3) {
        /* margin-bottom: 40px; */
    }

    .footer-wrap p {
        width: 100%;
        font-size: 2.8rem;
    }

    small {
        padding: 15px 0;
        font-size: 2.1rem;
        font-weight: 500;
    }
}