@charset "UTF-8";

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

html,
body {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: #1a1a1a;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

img {
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #1a1a1a;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width: 460px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

}


/* ------------ google font ------------ */

.zen-kaku-gothic-new-light {
    font-weight: 300;
}

.zen-kaku-gothic-new-regular {
    font-weight: 400;
}

.zen-kaku-gothic-new-medium {
    font-weight: 500;
}

.zen-kaku-gothic-new-bold {
    font-weight: 700;
}

.zen-kaku-gothic-new-black {
    font-weight: 900;
}


/* ------------ google font ------------ */


/* ------------ メインビジュアル画面による縮小 ------------ */

/* #scroll-container {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
} */

/* #main-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    transform: translateX(-50%) scale(1);
    transform-origin: top center;
} */

/* ------------ メインビジュアル画面による縮小 ------------ */


/* ------------ header ------------ */

.header {
    background: #fff;
    padding: 30px 0;
}

.header-container {
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo img {
    max-width: 50%;
    min-width: 197px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 1320px) {
    .nav-menu {
        display: none;
    }
}

.menu-list {
    display: flex;
    justify-content: center;
    /* メニューアイテムを中央揃えに */
    gap: 20px;
}

.menu-list li {
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-item:hover .drop-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを表示 */
}

.drop-menu-list a {
    align-items: center;
    color: #00a73c;
    /* メニューアイテム内のリンクテキストの色 */
    display: flex;
    height: 60px;
    justify-content: center;
    text-decoration: none;
    /* リンクの下線を非表示 */
    width: 180px;
    font-size: 18px;
    font-weight: 700;
}

.drop-menu-list a:hover {
    color: #0097e0;
}

.nav-button {
    background: #fff;
    color: #00a73c;
    border: 1px solid #00a73c;
    padding: 5px 16px 6px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    transition: background-color .5s;
}

.nav-button:hover {
    background: #00a73c;
    color: #fff;
}

.drop-menu {
    position: relative;
}

.drop-menu-list {
    background-color: #fff;
    /* ドロップダウンメニューの背景色 */
    left: 0;
    opacity: 0;
    /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1;
}

.header_sns_wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 100px;
    z-index: 20;
}

.header_sns {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.header_sns a {
    transition: .3s;
}

.header_sns a:hover {
    opacity: 0.6;
}

@media (max-width: 460px) {
    .header_sns_wrap {
        bottom: 10px;
        right: 10px;
    }

    .header_sns img {
        width: 24px;
    }
}


/* ------------ header ------------ */



/* ------------ ハンバーガーメニュー ------------ */


@media (min-width: 1321px) {
    .hamburger_menu {
        display: none;
    }
}


.hamburger_menu {
    position: relative;
    z-index: 999;
}

/* 横からスライド表示するメニュー */
#drawer {
    display: none;
}


label {
    cursor: pointer;
    position: fixed;
}

.open {
    z-index: 999;
    top: 30px;
    right: 8px;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: #00a73c;
    transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before,
.open::after {
    content: "";
}

.open::before,
.open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    width: 50%;
    background-color: #fff;
    border-radius: 5px;
    height: 3px;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before {
    transform: translateY(-5px);
}

.open::after {
    transform: translateY(5px);
}

.close {
    z-index: 998;
    inset: 0;
    pointer-events: none;
    transition: background .6s;
}

#drawer:checked+.open {
    background: #333333;
    z-index: 1000;
}

#drawer:checked+.open span {
    transform: scaleX(0);
}

#drawer:checked+.open::before {
    transform: rotate(135deg) scaleX(1.2);
}

#drawer:checked+.open::after {
    transform: rotate(-135deg) scaleX(1.2);
}

#drawer:checked~.close {
    pointer-events: auto;
    background: rgba(0, 0, 0, .3);
}

/* :::::: drawer menu :::::: */
.menu {
    z-index: 999;
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    max-width: 640px;
    height: 100%;
    margin: 0;
    padding: 60px 60px 20px;
    box-sizing: border-box;
    background: #F6F7F7;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger_menu-list {
    margin: 0;
    padding: 0;
}

.hamburger_menu-item {
    line-height: 1.4;
    list-style: none;
}

.hamburger_menu-item:not(:last-child) {
    background-image: linear-gradient(to right, #333 1px, transparent 1px);
    background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
}

.menu a,
.dropdown-label {
    color: #00a73c;
    display: block;
    text-decoration: none;
    transition: .6s;
    font-size: 18px;
    letter-spacing: 3.2px;
    font-weight: 700;
    transition: 0.3s;
    padding: 14px 7px;
}

.menu a:hover {
    opacity: 0.7;
}

#drawer:checked~.menu {
    transform: none;
}

.menu-fukidashi p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

/* チェックボックスを非表示に */
.dropdown input[type="checkbox"] {
    display: none;
}

/* メニューは非表示 */
.dropdown-menu {
    display: none;
    padding: 0 0 0 20px;
    list-style: none;
}

/* チェックされたら表示 */
.dropdown input[type="checkbox"]:checked~.dropdown-menu {
    display: block;
}

.dropdown-label {
    position: relative;
}

/* アイコン（擬似要素） */
.dropdown-label::after {
    content: " ▼";
    font-size: 0.9em;
}


@media (width < 820px) {
    .open {
        width: 35px;
        height: 35px;
        top: 30px;
    }

    .open::before {
        transform: translateY(-4px);
    }

    .open::after {
        transform: translateY(4px);
    }

    .menu {
        padding: 60px 20px;
    }

    .menu a {
        letter-spacing: 1px;
    }
}


/* ------------ ハンバーガーメニュー ------------ */



.mv_container {
    background: url(../images/mv_bgimg.jpg) no-repeat bottom center;
    background-size: cover;
}

.mv_container_inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 40px 0 200px;
    display: flex;
    transform-origin: top left;
}

.mv_container_block {
    width: 50%;
    padding: 0 3.75vw;
}

.mv_container_block:first-child {
    padding: 66px 3.75vw 0;
}

.mv_container_block_img {
    max-width: 100%;
    opacity: 0;
    transform: translateY(-100%);
}

.mv_container_block_img:nth-child(1) {
    margin-bottom: 18px;
    -webkit-animation: example 0.5s ease 1s 1 forwards;
    animation: example 0.5s ease 1s 1 forwards;
}

.mv_container_block_img:nth-child(2) {
    margin-bottom: 30px;
    -webkit-animation: example 0.5s ease 1.5s 1 forwards;
    animation: example 0.5s ease 1.5s 1 forwards;
}

.mv_container_block_img:nth-child(3) {
    margin-bottom: 65px;
    -webkit-animation: example 0.5s ease 2s 1 forwards;
    animation: example 0.5s ease 2s 1 forwards;
}

@-webkit-keyframes example {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes example {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv_subscription {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
}



/*=== 画像の表示エリア ================================= */
.slide {
    position: relative;
    /* 画像のサイズに合わせて変更ください */
    width: 100%;
    height: 100%;
    margin: auto;
    /* サンプルは中央寄せの背景：白 */
}

/*=== 画像の設定 ======================================= */
.slide img {
    display: block;
    position: absolute;
    /* 画像のサイズを表示エリアに合せる */
    max-width: 100%;
    height: auto;
    opacity: 0;
    animation: slideAnime 15s ease infinite;
}

/*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) {
    animation-delay: 0s
}

.slide img:nth-of-type(2) {
    animation-delay: 5s
}

.slide img:nth-of-type(3) {
    animation-delay: 10s
}

/*=== スライドのアニメーション ========================= */
@keyframes slideAnime {
    0% {
        opacity: 0
    }

    16% {
        opacity: 1
    }

    33% {
        opacity: 1
    }

    49% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


@media (max-width: 1500px) {
    .mv_container_inner {
        padding: 40px 0 100px;
    }
}


@media (max-width: 820px) {

    .mv_container_inner {
        padding: 0 0 60px;
        flex-direction: column-reverse;
    }

    .mv_container_block {
        width: 100%;
        padding: 20px 20px 0px;
    }

    .slide {
        height: 500px;
    }

    .slide img {
        height: 100%;
        object-fit: contain;
    }

    .mv_container_block:first-child {
        padding: 20px 40px 0;
    }

    .mv_container_block_img:nth-child(1) {
        margin-bottom: 16px;
    }

    .mv_container_block_img:nth-child(2) {
        margin-bottom: 20px;
    }

    .mv_container_block_img:nth-child(3) {
        margin-bottom: 20px;
    }

    .mv_subscription {
        font-size: 18px;
    }
}

@media (max-width: 460px) {

    .slide {
        height: 300px;
    }

    .mv_container_block:first-child {
        padding: 20px 20px 0;
    }

    .mv_container_block_img:nth-child(1) {
        margin-bottom: 8px;
    }

    .mv_subscription {
        font-size: 16px;
    }
}


/* ------------ メインビジュアル下コンテンツ ------------ */

.ouen {
    max-width: 1600px;
    text-align: center;
    font-weight: 700;
    margin: 100px auto 180px;
    position: relative;
}

.ouen_ttl {
    font-size: 42px;
    margin-bottom: 20px;
}

.ouen_ttl span {
    position: relative;
}

.ouen_ttl span::before {
    background-image: url(../images/ouen_sura_l.png);
    content: "";
    background-size: contain;
    display: inline-block;
    width: 25px;
    height: 33px;
    position: absolute;
    left: -40px;
    bottom: 8px;
}

.ouen_ttl span::after {
    background-image: url(../images/ouen_sura_r.png);
    content: "";
    background-size: contain;
    display: inline-block;
    width: 25px;
    height: 33px;
    position: absolute;
    right: -40px;
    bottom: 8px;
}

.ouen_subttl {
    font-size: 30px;
    margin-bottom: 56px;
}

.ouen_txt {
    font-size: 24px;
    line-height: 1.6;
}

.ouen_img_l {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.ouen_img_r {
    position: absolute;
    top: 66%;
    right: 5%;
    transform: translate(0, -66%);
    -webkit-transform: translate(0, -66%);
    -ms-transform: translate(0, -66%);
}

.wave {
    padding-bottom: 2px;
    background: url(../images/wave.png) repeat-x bottom left / auto 5px;
}


@media (max-width: 1500px) {
    .ouen_center_wrap {
        padding: 20px 24vw 60px;
    }

    .ouen_img_l {
        width: 30vw;
        left: 2%;
    }

    .ouen_img_r {
        width: 20vw;
    }

    .ouen_ttl {
        font-size: 32px;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .ouen_ttl span::before {
        width: 18px;
        height: 24px;
        left: -22px;
        bottom: 0px;
    }

    .ouen_ttl span::after {
        width: 18px;
        height: 24px;
        right: -22px;
        bottom: 0px;
    }

    .ouen_subttl {
        font-size: 26px;
        margin-bottom: 21px;
    }

    .ouen_txt {
        font-size: 18px;
        padding: 0 20px;
    }

    .ouen {
        margin: 0 auto 80px;
    }

}


@media (max-width: 820px) {
    .ouen_center_wrap {
        padding: 40px 22vw;
    }

    .ouen_img_l {
        top: 75%;
    }

    .ouen_img_r {
        top: 40%;
        right: 2%;
    }


    .ouen_ttl {
        font-size: 26px;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .ouen_ttl span::before {
        width: 18px;
        height: 24px;
        left: -22px;
        bottom: 0px;
    }

    .ouen_ttl span::after {
        width: 18px;
        height: 24px;
        right: -22px;
        bottom: 0px;
    }

    .ouen_subttl {
        font-size: 22px;
        margin-bottom: 21px;
    }

    .ouen_txt {
        font-size: 17px;
        padding: 0 20px;
    }

}

@media (max-width: 460px) {

    .ouen_center_wrap {
        padding: 0;
    }

    .ouen_img_l,
    .ouen_img_r {
        display: none;
    }

    .ouen {
        margin: 30px auto 50px;
    }

    .ouen_top_slide_container {
        width: 100%;
        margin: 40px auto 10px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .ouen_top_slide_wrapper {
        display: flex;
        animation: slide-flow 40s infinite linear 1s both;
    }

    .ouen_top_slide_wrapper img {
        width: 800px;
    }

    .ouen_top_slide {
        width: 1015.4px;
        object-fit: cover;
    }

    @keyframes slide-flow {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

}


/* ------------ メインビジュアル下コンテンツ ------------ */



/* ------------ パラリンアートカップサポーターズ　応援動画 ------------ */


.ouen_movie {
    width: 1196px;
    height: 680px;
    background: url(../images/movie_frame.png) no-repeat;
    background-size: contain;
    background-position: center top;
    margin: 0 auto 100px;
    padding: 40px 6vw 70px 4.75vw;
    color: #007d49;
    font-weight: 700;
}

.ouen_movie_inner {
    width: 1018px;
    margin: auto;
}

.ouen_movie_ttl {
    font-size: 39px;
    margin-bottom: 22px;
    line-height: 1;
}

span.yellow_marker {
    background: linear-gradient(transparent 75%, #fff000 75%);
    display: inline;
    padding: 0 10px;
}

.ouen_movie_subttl {
    font-size: 32px;
    padding-left: 60px;
    position: relative;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ouen_movie_subttl::before {
    content: "";
    background-image: url(../images/movie_icon.png);
    display: inline-block;
    width: 43px;
    height: 43px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.ouen_movie_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ouen_movie_list_item {
    list-style: none;
    text-align: center;
    width: 30%;
}

.ouen_movie_list_item a:hover{
    opacity: 0.8;
}

.ouen_movie_list_item img {
    width: 100%;
}

.ouen_movie_list_item:nth-last-child(n+4) {
    margin-bottom: 40px;
    /* 最後の3個以外に下方向の余白をとる */
}

@media (max-width: 1200px) {
    .ouen_movie {
        width: 800px;
        height: 454.3px;
        padding: 28px 6vw 28px 4.75vw;
    }

    .ouen_movie_inner {
        width: 682px;
        height: auto;
    }

    .ouen_movie_ttl {
        font-size: 35px;
    }

    .ouen_movie_subttl {
        font-size: 27px;
        margin-bottom: 30px;
        padding-left: 45px;
    }

    .ouen_movie_list_item:nth-last-child(n+4) {
        margin-bottom: 20px;
    }

    .ouen_movie_subttl::before {
        width: 30px;
        height: 30px;
    }
}


@media (max-width: 460px) {
    .ouen_movie {
        margin: 0 auto 60px;
        padding: 20px 20px 10px 10px;
        background: url(../images/movie_frame_sp.png) no-repeat;
        background-size: 100% auto;
        background-position: center top;
        width: 357px;
        height: 1207px;
    }

    .ouen_movie_ttl {
        font-size: 27px;
        line-height: 1.2;
    }

    .ouen_movie_subttl {
        font-size: 18px;
        padding-left: 24px;
        margin-bottom: 25px;
    }

    .ouen_movie_subttl::before {
        width: 20px;
        height: 20px;

    }

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

    .ouen_movie_list_item img {
        max-width: 100%;
    }

    .ouen_movie_list {
        width: 80%;
        margin: auto;
    }

    .ouen_movie_list_item,
    .ouen_movie_list_item:nth-last-child(n+4) {
        margin-bottom: 18px;
    }

    .ouen_movie_inner {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

}


/* ------------ パラリンアートカップサポーターズ　応援動画 ------------ */


/* ------------ NEWS ------------ */

.news_wrap {
    overflow: hidden;
}

.news_top,
.news_bottom {
    width: 100%;
}


img.news_bottom {
    vertical-align: baseline;
}


@media (max-width: 820px) {

    .news_top,
    .news_bottom {
        width: 200%;
    }
}

.news {
    background-color: #edf9f1;
    padding: 40px 0;
}

.news_ttl {
    font-size: 52px;
    color: #007d49;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0 0 80px 0;
}

.news_ttl span {
    position: relative;
    display: inline-block;
}

.news_ttl span::before,
.news_ttl span::after {
    content: "";
    position: absolute;
    background-image: url(../images/news_ttl_line.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 205px;
    height: 20px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    margin: 5px auto;
}

.news_ttl span::before {
    left: -250px;
}

.news_ttl span::after {
    right: -240px;
}

.news_item_wrap {
    max-width: 980px;
    margin: 0 auto;
}

.news_item {
    margin: 0 auto 30px;
}

.news_item_inner {
    padding: 18px 52px;
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

a.news_item_inner:hover {
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.kousin {
    position: relative;
}

.kousin::after {
    content: "";
    background-image: url(../images/news_btn.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    width: 41px;
    height: 41px;
    top: 50%;
    right: 50px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.news_item01_l,
.news_item01_r {
    display: inline-block;
    box-sizing: border-box;
}

.news_item01_l {
    width: 240px;
}

.news_item01_l img {
    width: 100%;
}

.news_item01_r {
    width: 631px;
    padding-left: 46px;
}

.news_item01_ttl {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.news_item01_txt {
    font-size: 18px;
}


@media (max-width: 820px) {

    .kousin::after {
        width: 20px;
        height: 20px;
        right: 30px;
    }

}


@media (max-width: 460px) {
    .news {
        width: 100%;
    }

    .news_item_wrap {
        margin: 0 25px;
    }

    .news_ttl {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .news_ttl span::before,
    .news_ttl span::after {
        background-size: cover;
        width: 50px;
        height: 12px;
    }

    .news_ttl span::before {
        left: -70px;
    }

    .news_ttl span::after {
        right: -70px;
    }

    .news_item_inner {
        flex-direction: column;
        padding: 20px;
    }

    .news_item01_l {
        width: 100%;
        padding-right: 20px;
    }

    .news_item01_r {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .news_item01_ttl {
        font-size: 16px;

    }

    .news_item img {
        width: 100%;
    }

    .news_item02,
    .news_item03 {
        padding-right: 20px;
    }

    .kousin::after {
        display: none;
    }

}

/* ------------ NEWS ------------ */


.para_bg {
    background-image: url(../images/para_bg.jpg);
    background-size: cover;
    background-position: center;
    height: 470px;
    margin: -50px 0 0;
}


@media (max-width: 460px) {
    .para_bg {
        height: 200px;
        margin: -30px 0 0;
    }

}


/* ------------ message ------------ */

.message {
    width: 100%;
    background: url(../images/gradation_yellow.png);
    background-size: auto;
    padding: 0 10px;
    background-repeat: repeat-x;
}

.message_box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 100px;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    background-color: #fff;
    transform: translateY(-140px);
}

.message_ttl {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

.message_ttl span {
    position: relative;
    display: inline-block;
    padding-top: 5px;
}

.message_ttl span::before {
    position: absolute;
    content: "";
    background-image: url(../images/message_ttl_l.png);
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 67px;
    left: -25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.message_ttl span::after {
    position: absolute;
    content: "";
    background-image: url(../images/message_ttl_r.png);
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 67px;
    right: -25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.message_txt {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 40px;
    line-height: 1.8;
}


@media (max-width: 460px) {

    .message {
        width: 100%;
        margin: 0 auto;
    }

    .message_box {
        transform: translateY(-40px);
        padding: 30px 20px;
    }

    .message_ttl {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .message_ttl span {
        padding-top: 0;
    }

    .message_ttl span::before,
    .message_ttl span::after {
        width: 5px;
        height: 37.222px;
    }

    .message_ttl span::before {
        left: -17px;
    }

    .message_ttl span::after {
        right: -17px;
    }

    .message_txt {
        font-size: 16px;
        width: calc(100% - 10px);
        margin: 0 auto;
        padding-bottom: 20px;
        line-height: 1.5;
    }

}

/* ------------ message ------------ */



/* ------------ mirai ------------ */

.mirai {
    width: 100%;
    margin: 30px auto;
}

.mirai_ttl {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

.mirai_box {
    max-width: 1000px;
    margin: 0 auto 100px;
    display: flex;
    gap: 50px;
    font-weight: 500;
}

.mirai_box_l,
.mirai_box_r {
    width: calc(50% - 25px);
}

.mirai_box_img {
    width: 474px;
    height: 398px;
    object-fit: cover;
}

.mirai_box_r p {
    font-size: 18px;
    padding-bottom: 20px;
    line-height: 1.65;
}

.mirai_box_img_cap {
    font-size: 17px;
    padding-top: 10px;
}


@media (max-width: 1000px) {
    .mirai {
        width: 70%;
        margin: 30px auto;
    }

    .mirai_ttl {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .mirai_box {
        flex-direction: column-reverse;
        gap: 15px;
        margin: 0 auto 80px;
    }

    .mirai_box_l,
    .mirai_box_r {
        width: 100%;
    }

    .mirai_box_img {
        width: 100%;
        height: 300px;
    }

    .mirai_box_r p {
        padding-bottom: 20px;
        font-size: 16px;
    }

}

@media (max-width: 460px) {
    .mirai {
        width: 90%;
    }
}



/* ------------ mirai ------------ */


/* ------------ PRAY BACK ------------ */

.play_back {
    max-width: 1200px;
    margin: 180px auto 40px;
    background: #F3F3F3;
    padding: 130px 0 100px;
    z-index: 3;
}

.play_back_txt_wrap {
    max-width: 600px;
    margin: 0 auto;
}

.play_back_ttl {
    font-size: 40px;
    text-align: center;
    margin-bottom: 100px;
    color: #00A73C;
    position: relative;
    line-height: 1.3;

}

.play_back_ttl span {
    z-index: 5;
    position: relative;
}

.play_back_ttl::after {
    content: "";
    background-image: url(../images/play_back_ttl__bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 867px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 4;
}

.play_back_movie {
    max-width: 600px;
    margin: 0 auto 30px;
}

.youtube {
    aspect-ratio: 16 / 9;
}

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

.play_back h3 {
    font-size: 25px;
    padding-bottom: 20px;
    font-weight: 700;
}

.play_back p {
    font-weight: 700;
    line-height: 1.8;
    font-size: 18px;
}

.play_back_txt {
    padding-bottom: 50px;
}

@media (max-width: 820px) {
    .play_back {
        width: 100%;
        padding: 80px 20px;
        margin: 80px auto 20px;
    }

    .play_back_ttl {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .play_back_ttl::after {
        background-position: center;
        width: 94%;
        height: 50px;
    }

    .play_back h3 {
        font-size: 22px;
    }

    .play_back p {
        font-weight: 500;
        line-height: 1.7;
        font-size: 16px;
    }
}

/* ------------ PRAY BACK ------------ */


/* ------------ 受賞作品 ------------ */

.sakuhin {
    background-color: #ffffff;
    background-image: radial-gradient(circle, #fbcf00 1px, transparent 1px);
    background-position: 0 0;
    background-size: 12px 12px;
    z-index: 2;
}

.sakuhin_top,
.sakuhin_bottom {
    width: 100%;
}

.sakuhin_inner {
    padding: 240px 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.sakuhin_box {
    background: #fff;
    padding: 0 10px;
}

.sakuhin_ttl {
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
}

.sakuhin_ttl div {
    display: inline-block;
    position: relative;
}

.sakuhin_ttl div::before,
.sakuhin_ttl div::after {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    width: 56px;
    height: 118px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.sakuhin_ttl div::before {
    background-image: url(../images/sakuhin_ttl_l.png);
    content: "";
    left: -130px;
}

.sakuhin_ttl div::after {
    background-image: url(../images/sakuhin_ttl_r.png);
    content: "";
    right: -130px;
}

.sakuhin_ttl_btmtxt {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.sakuhin_list {
    padding: 40px 0 0;
}

.cup_gold_wrap {
    text-align: center;
    padding-bottom: 80px;
}

.cup_gold {
    max-width: 100%;
}

.cup_gold_ttl {
    font-size: 36px;
    font-weight: 900;
    padding-bottom: 20px;
}

.grand_prix_sakuhin {
    max-width: 100%;
    margin-bottom: 30px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.29);
}

.grand_prix_ttl {
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: 700;
}

.grand_prix_subttl {
    font-size: 22px;
}

.cup_silver_column {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.cup_silver_wrap {
    text-align: center;
    padding-bottom: 80px;
    width: 40%;
}

.cup_silver {
    max-width: 100%;
}

.cup_silver_ttl {
    font-size: 28px;
    font-weight: 900;
    padding-top: 8px;
    padding-bottom: 12px;
}

.second_grand_prix_sakuhin {
    max-width: 100%;
    margin-bottom: 26px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.29);
}

.second_grand_prix_ttl {
    font-size: 22px;
    padding-bottom: 5px;
    font-weight: 700;
}

.second_grand_prix_subttl {
    font-size: 18px;
}

.cup_3column {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 100px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.cup_3column_wrap {
    text-align: center;
    width: 50%;
    margin: 0 0 80px 0;
}

.cup_3column_wrap:nth-last-child(-n+3) {
    width: calc(30% - 20px);
    margin: 0 20px 80px;
}

.cup_3column_ttl_top {
    max-width: 100%;
}

.cup_3column_ttl {
    font-weight: 900;
    padding-top: 2px;
    padding-bottom: 20px;
}

.cup_3column_sakuhin {
    max-width: 100%;
    margin-bottom: 26px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.29);
}

.cup_3column_sakuhin_ttl {
    font-size: 18px;
    padding-bottom: 5px;
    font-weight: 700;
}

.cup_3column_sakuhin_subttl {
    font-size: 18px;
}

@media (max-width: 820px) {

    .cup_3column {
        margin: 0 auto;
    }

    .sakuhin_inner {
        padding: 80px 20px;
    }

    .sakuhin_ttl {
        font-size: 22px;
        padding-bottom: 40px;
    }

    .sakuhin_ttl div::before,
    .sakuhin_ttl div::after {
        width: 35.593px;
        height: 75px;
        top: auto;
    }

    .sakuhin_ttl div::before {
        left: -40px;
    }

    .sakuhin_ttl div::after {
        right: -40px;
    }

    .sakuhin_list {
        padding: 40px 10px 0;
    }

    .cup_gold_wrap {
        padding-bottom: 50px;
    }

    .cup_gold {
        max-width: 50px;
    }

    .cup_gold_ttl {
        font-size: 27px;
        padding-bottom: 10px;

    }

    .grand_prix_sakuhin {
        margin-bottom: 22px;
    }

    .grand_prix_ttl {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .grand_prix_subttl {
        font-size: 18px;
        letter-spacing: -1px;
    }

    .cup_silver_column {
        flex-direction: column;
    }

    .cup_silver_wrap {
        width: 100%;
        padding-bottom: 50px;
    }

    .cup_silver {
        max-width: 36px;
    }

    .cup_silver_ttl {
        font-size: 24px;
        padding-top: 0;
    }

    .second_grand_prix_sakuhin {
        margin-bottom: 22px;
    }

    .second_grand_prix_ttl {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .second_grand_prix_subttl {
        font-size: 18px;
        letter-spacing: -1px;
    }

    .cup_3column_wrap,
    .cup_3column_wrap:nth-last-child(-n+3) {
        width: 100%;
        margin: 0 auto 60px;
    }

    .cup_3column_ttl {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .cup_3column_sakuhin {
        margin: 0 0 18px 0;
    }


}



/* ------------ 受賞作品 ------------ */


/* ------------ 受賞作品スライダー ------------ */

.cup_slider {
    max-width: 1600px;
    margin: 0 -100px;
    text-align: center;
}

.cup_slider_ttl {
    margin-bottom: 30px;
}

.cup_slider_nyusen_ttl {
    font-size: 17px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-weight: 500;
}

.cup_slider_nyusen_subttl {
    font-size: 15px;
}

.slider-2 .slick-slide {
    width: 250px;
    height: 340px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.slider-2 .slick-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.slider-2 .slick-slide img {
    display: inline-block;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.29);
}

.slider-2 .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #00a73c;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 100px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider-2 .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}

.slider-2 .slick-next {
    right: 290px;
}

.slider-2 .slick-prev {
    left: 290px;
}

.slider-2 .slick-next::before {
    left: 20px;
}

.slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px;
}


@media (max-width: 820px) {
    .slider-2 .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-2 .slick-next {
        right: 120px;
    }

    .slider-2 .slick-prev {
        left: 120px;
    }

    .slider-2 .slick-arrow::before {
        top: 13px;
    }

    .slider-2 .slick-prev::before {
        right: 10px;
    }

    .slider-2 .slick-next::before {
        left: 10px;
    }
}


/* ------------ 受賞作品スライダー ------------ */

/* ------------ 受賞作品スライダー下スライダー ------------ */


.sakuhin_bottom_slide_wrap {
    position: relative;
    margin: 0 0 20px 0;
}

.sakuhin_bottom_slide_wrap_img01,
.sakuhin_bottom_slide_wrap_img02 {
    position: absolute;
    width: 100%;
}

.sakuhin_bottom_slide_wrap_img01 {
    top: -2px;
    left: -1px;
}

.sakuhin_bottom_slide_wrap_img02 {
    bottom: -2px;
    right: -1px;
}

.sakuhin_bottom_slide {
    position: relative;
    width: 70%;
    height: 300px;
    overflow: hidden;
    margin: 0 auto;
    z-index: -1;
    padding: 1px 0;
}

    .sakuhin_bottom_slide_wrap{
        display: none;
    }

@media screen and (max-width: 460px) {
    .sakuhin_bottom_slide_wrap{
        display: block;
    }
    
    .sakuhin_bottom_slide {
        width: 102%;
        height: 300px;
    }

    .img-01,
    .img-02,
    .img-03 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .img-01 {
        background-image: url('../images/sakuhin_bottom_slide01.jpg');
        animation: slide-animation-01 24s infinite;
    }

    .img-02 {
        background-image: url('../images/sakuhin_bottom_slide02.jpg');
        animation: slide-animation-02 24s infinite;
    }

    .img-03 {
        background-image: url('../images/sakuhin_bottom_slide03.jpg');
        animation: slide-animation-03 24s infinite;
    }

    @keyframes slide-animation-01 {
        0% {
            opacity: 1;
            transform: scale(1.0);
        }

        30% {
            opacity: 1;
        }

        40% {
            opacity: 0;
            transform: scale(1.15);
        }

        90% {
            opacity: 0
        }

        100% {
            opacity: 1;
            transform: scale(1.0);
        }
    }

    @keyframes slide-animation-02 {
        0% {
            opacity: 0;
        }

        30% {
            opacity: 0;
            transform: scale(1.1);
        }

        40% {
            opacity: 1;
        }

        60% {
            opacity: 1;
        }

        70% {
            opacity: 0;
            transform: scale(1.0);
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes slide-animation-03 {
        0% {
            opacity: 0;
        }

        60% {
            opacity: 0;
            transform: scale(1.0);
        }

        70% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            transform: scale(1.1);
        }
    }
}

/* ------------ 受賞作品スライダー下スライダー ------------ */


.naname_img {
    width: 100%;
    margin: 0 0 40px 0;
}


/* ------------ 応募概要 ------------ */

.oubo-gaiyo {
    padding: 150px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.oubo-gaiyo_ttl {
    font-size: 36px;
    text-align: center;
    margin: 0 6.25vw 56px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.oubo-gaiyo_ttl::before,
.oubo-gaiyo_ttl::after {
    background-color: #000;
    /* 横線の色 */
    content: "";
    height: 1px;
    /* 横線の高さ */
    width: 300px;
    /* 横線の長さ */
}

.oubo-gaiyo_ttl::before {
    margin-right: 32px;
    /* 文字との余白 */
}

.oubo-gaiyo_ttl::after {
    margin-left: 32px;
    /* 文字との余白 */
}

.oubogaiyo_box01,
.oubogaiyo_box02 {
    background-color: #edf9f1;
    border-radius: 20px;
    padding: 28px 50px 40px;
}

.oubogaiyo_box01 {
    margin: 0 6.25vw 34px;
}

.oubogaiyo_box01 h3,
.oubogaiyo_box02 h3 {
    text-align: center;
    border-radius: 50px;
    background-color: #00A73C;
    color: #fff;
    font-weight: 700;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.oubogaiyo_box01 h3 {
    font-size: 27px;
}

.oubogaiyo_box02 h3 {
    font-size: 24px;
}

.oubogaiyo_box01 p,
.oubogaiyo_box02 p {
    font-size: 18px;
}

.kikan p {
    font-size: 21px;
    text-align: center;
    font-weight: 700;
    line-height: 1.7;
}

.oubogaiyo_box02_wrap {
    display: flex;
    gap: 2.5vw;
    justify-content: center;
}

.oubogaiyo_box02_l,
.oubogaiyo_box02_r {
    width: calc(50% - 20px);
}

.oubogaiyo_box02 {
    margin: 0 auto 34px;
}

.oubogaiyo_box02 a {
    color: #0097e0;
    text-decoration: underline;
}

.oubogaiyo_box02 p {
    font-size: 17px;
    line-height: 1.7;
}

.chirashi {
    text-align: center;
}

.chirashi_img {
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.19));
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.chirashi_btn {
    display: inline-block;
    border: 2px solid #00A73C;
    border-radius: 50px;
    padding: 17px 45px 17px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.chirashi_btn p {
    color: #00A73C;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.chirashi_btn:hover {
    background-color: #00A73C;
}

.chirashi_btn:hover p {
    color: #fff;
}

.chirashi_btn::after {
    content: "";
    background: url(../images/chirashi_btn_icon.png) no-repeat;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.chirashi_btn:hover::after {
    background: url(../images/chirashi_btn_icon_hover.png) no-repeat;
}




@media screen and (max-width: 820px) {
    .oubo-gaiyo {
        padding: 60px 10px;
    }

    .oubo-gaiyo_ttl::before,
    .oubo-gaiyo_ttl::after {
        width: 140px;
    }

    .oubo-gaiyo_ttl::before {
        margin-right: 30px;
    }

    .oubo-gaiyo_ttl::after {
        margin-left: 30px;
    }

    .oubogaiyo_box01 h3,
    .oubogaiyo_box02 h3 {
        padding: 5px 20px;
    }

    .oubogaiyo_box01,
    .oubogaiyo_box02 {
        padding: 20px 4.5vw 30px;
    }
}

@media screen and (max-width: 460px) {
    .oubo-gaiyo {
        padding: 60px 0;
    }

    .oubo-gaiyo_ttl {
        font-size: 27px;
        margin: 0 6.25vw 20px;
    }

    .oubo-gaiyo_ttl::before,
    .oubo-gaiyo_ttl::after {
        width: 60px;
    }

    .oubo-gaiyo_ttl::before {
        margin-right: 15px;
    }

    .oubo-gaiyo_ttl::after {
        margin-left: 15px;
    }

    .oubogaiyo_box01 h3,
    .oubogaiyo_box02 h3 {
        font-size: 21px;
    }

    .oubogaiyo_box01 h3,
    .oubogaiyo_box02 h3 {
        margin-bottom: 16px;
    }

    .oubogaiyo_box01 p,
    .oubogaiyo_box02 p {
        font-size: 17px;
    }

    .kikan p {
        font-size: 20px;
        font-weight: 500;
    }

    .oubogaiyo_box02_wrap {
        flex-direction: column;
    }

    .oubogaiyo_box02_l {
        width: auto;
        margin: 0 6.25vw 34px;
    }

    .oubogaiyo_box02_r {
        width: auto;
        margin: 0 6.25vw 0;
    }
}



/* ------------ 応募概要 ------------ */


/* ------------ 応募フォーム ------------ */

.oubo-foam_wrap {
    background: url(../images/oubo-foam_bgimg.jpg) no-repeat top center;
    background-size: cover;
    padding: 150px 7.5vw;
}

.oubo-foam {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
    padding: 60px 7.5vw;
    border-radius: 100px;
}

.oubo-foam_ttl {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
}

.oubo-foam_txt01 {
    font-size: 24px;
}

.oubo-foam_txt01-2 {
    font-size: 24px;
    font-weight: 500;
    color: crimson;
    padding: 20px 0;
}

.oubo-foam_txt02 {
    font-size: 18px;
}


.oubo-foam_btn {
    display: none;
    /* display: inline-block; */
    border-radius: 50px;
    padding: 12px 46px;
    transition: all 0.3s ease;
    position: relative;
    background-color: #FFF000;
    margin: 15px auto 26px;
}

.oubo-foam_btn p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.oubo-foam_btn:hover {
    background-color: #00A73C;
}

.oubo-foam_btn:hover p {
    color: #fff;
}

.oubo-foam_btn::after {
    content: "";
    background: url(../images/chirashi_btn_icon.png) no-repeat;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.oubo-foam_btn:hover::after {
    background: url(../images/chirashi_btn_icon_hover.png) no-repeat;
}

.oubo-foam_txt02 a {
    color: #0097e0;
    text-decoration: underline;
    display: inline-block;
    padding-top: 10px;
}

@media screen and (max-width: 820px) {
    .oubo-foam_wrap {
        padding: 80px 7.5vw;
    }
}

@media (max-width: 460px) {
    .oubo-foam_wrap {
        padding: 60px 20px;
    }

    .oubo-foam_ttl {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .oubo-foam_txt01 {
        font-size: 20px;
    }

    .oubo-foam_txt01-2 {
        font-size: 20px;
    }

}


/* ------------ 応募フォーム ------------ */



/* ------------ 表彰内容 ------------ */

.hyosyo_wrap {
    background-color: #ffef96;
    background-image: radial-gradient(circle, #fbcf00 1.5px, transparent 1.5px);
    background-position: 0 0;
    background-size: 13px 13px;
    padding: 100px 10px 40px;
    z-index: -2;
    position: relative;
    margin: 0 0 150px 0;
}

.hyosyo_ttl {
    font-size: 40px;
    text-align: center;
    margin-bottom: 46px;
    background: url(../images/hyosyo_ttl_bgimg.png) no-repeat center center;
    padding-bottom: 6px;
    padding-left: 10px;
    letter-spacing: 0.8rem;
}

.hyosyo_ttl span {
    padding: 20px 0;
    display: inline-block;
}

.hyosyo_ttl_bottom_txt {
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    padding: 0 20px;
    background-color: #ffef96;
}

.hyosyo_box,
.hyosyo_2column_box {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    border-radius: 20px;
    position: relative;
    border: 1px solid #000;
}

.hyosyo_box:before,
.hyosyo_2column_box::before {
    border-radius: 20px;
    background: #fff;
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hyosyo_box_l,
.hyosyo_box_r {
    width: 50%;
}

.hyosyo_box_r img {
    width: 100%;
}

.hyosyo_2column_box {
    padding: 30px 40px;
}

.hyosyo_box_l {
    padding: 54px 30px 20px 40px;
}

.second {
    padding: 40px 30px 20px 40px;
}

.hyosyo_2column_box h3 {
    font-size: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
}

.hyosyo_box_l h3,
.second h3 {
    font-size: 36px;
    padding-bottom: 20px;
    font-weight: 700;
    padding-left: 50px;
    position: relative;
}

.hyosyo_box_l h3::before {
    content: url(../images/hyosyo_cup_gold.png);
    position: absolute;
    left: 0;
    bottom: 15px;
}

.second h3::before {
    content: url(../images/hyosyo_cup_silver.png);
    position: absolute;
    left: 0;
    bottom: 15px;
}

.hyosyo_box_l p,
.second p {
    font-size: 18px;
    line-height: 2;
}

.hyosyo_box_r {
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.hyosyo_2column {
    display: flex;
    max-width: 1000px;
    margin: 0 auto 30px;
    gap: 0 40px;
    flex-wrap: wrap;
}

.hyosyo_2column_box {
    width: calc(50% - 20px);
    display: block;
}

.hyosyo_2column_box h3:not(.second h3, .hyosyo_2column_box_nyusen_ttl) {
    padding-bottom: 10px;
    line-height: 1.4;
}

.hyosyo_doronko_2column {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
}

.hyosyo_doronko_2column_l {
    width: 688px;
}

.hyosyo_doronko_2column_r {
    width: 527px;
    margin: 3px 0 30px -19px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #000;
    padding: 30px 40px;
}

.doronko-syo {
    z-index: 10;
    position: relative;
    width: 100%;
}

.hyosyo_doronko_2column_r::before {
    border-radius: 20px;
    background: #fff;
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hyosyo_doronko_2column_r h3 {
    font-size: 20px;
    padding-bottom: 16px;
    line-height: 1.8;
}

.hyosyo_doronko_2column_l p {
    width: 100%;
    padding: 0 35% 0 0;
    margin: 0 auto 0 0;
    font-size: 18px;
    line-height: 2;
    margin-top: -60px;
    font-weight: 500;
}

.hyosyo_doronko_2column_r p {
    font-size: 18px;
    line-height: 2;
}

.nyusen {
    align-items: flex-start;
    max-width: 1200px;
}

.coffee_wrap {
    display: flex;
}

.coffee {
    max-width: 120px;
    height: 100%;
    float: left;
    margin: 0 10px 10px 0;
}

h3.hyosyo_2column_box_nyusen_ttl {
    display: inline-block;
    padding-bottom: 0;
    padding-right: 60px;
}

.hyosyo_2column_box_nyusen_txt {
    font-size: 18px;
    display: inline-block;
}


@media (max-width: 820px) {

    .hyosyo_wrap {
        margin: 0 0 60px 0;
    }

    .hyosyo_box {
        flex-direction: column;
    }

    .hyosyo_ttl {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .hyosyo_box_l,
    .hyosyo_box_r {
        width: auto;
    }

    .hyosyo_box_l {
        padding: 40px 20px 0;
    }

    .hyosyo_box_r {
        margin: 20px;
        border-radius: 20px;
    }

    .hyosyo_box_l h3,
    .second h3 {
        font-size: 30px;
        padding-left: 50px;
        border-radius: 20px;
    }

    .hyosyo_2column {
        flex-direction: column;
    }

    .hyosyo_2column_box {
        width: 100%;
        padding: 30px 20px;
    }

    .second {
        padding: 30px 20px;
    }

    .hyosyo_doronko_2column {
        flex-direction: column-reverse;
    }

    .hyosyo_doronko_2column_l,
    .hyosyo_doronko_2column_r {
        width: 100%;
    }

    .hyosyo_doronko_2column_r {
        margin: 3px 0 30px;
        padding: 30px 20px;
    }

    .hyosyo_2column_box:last-child {
        margin: 0 auto;
    }

    .hyosyo_doronko_2column_l p {
        line-height: 1.5;
    }

    .hyosyo_2column_box h3 {
        line-height: 1.6;
    }

    .hyosyo_2column_box h3:not(.second h3, .hyosyo_2column_box_nyusen_ttl) {
        padding-bottom: 10px;
    }
}

@media (max-width: 460px) {
    .coffee_wrap {
        flex-direction: column;
        align-items: center;
    }

    .coffee {
        max-width: 240px;
    }

    .hyosyo_doronko_2column_l p {
        margin-top: 0;
        padding: 0 20px;
    }
}


/* ------------ 表彰内容 ------------ */



/* ------------ 表彰式 ------------ */

.hyosyo-shiki_wrap {
    padding: 0 20px;
}

.hyosyo-shiki {
    max-width: 1000px;
    margin: 130px auto 140px;
    background-color: #EDF9F1;
    border-radius: 23px;
    text-align: center;
    padding: 70px 10px;
}

.hyosho-shiki_ttl {
    font-size: 40px;
    padding-bottom: 50px;
}

.hyosho-shiki_ttl span {
    display: inline-block;
    position: relative;
    padding-top: 5px;
}

.hyosho-shiki_ttl span::before,
.hyosho-shiki_ttl span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 38px;
    height: 79px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.hyosho-shiki_ttl span::before {
    content: "";
    background-image: url(../images/hyosho-shiki_ttl_l.png);
    left: -70px;
}

.hyosho-shiki_ttl span::after {
    content: "";
    background-image: url(../images/hyosho-shiki_ttl_r.png);
    right: -70px;
}

.hyosho-shiki_txt {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
}

.hyosho-shiki_date {
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    background-color: #fff;
    padding: 10px 20px;
}


@media (max-width: 460px) {
    .hyosho-shiki_ttl {
        font-size: 32px;
    }

    .hyosho-shiki_ttl span::before,
    .hyosho-shiki_ttl span::after {
        width: 30px;
        height: 62.368px;
        top: 10px;
    }

    .hyosho-shiki_ttl span::before {
        left: -50px;
    }

    .hyosho-shiki_ttl span::after {
        right: -50px;
    }

    .hyosho-shiki_txt {
        font-size: 17px;
    }

    .hyosho-shiki_date {
        font-size: 19px;
        padding: 10px;
    }

}

/* ------------ 表彰式 ------------ */



/* ------------ 審査員 ------------ */

.shinsain {
    max-width: 1020px;
    padding: 0 10px;
    margin: 0 auto;
}

.shinsain_ttl {
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
    font-weight: 700;
}

.sensyukai_list {
    max-width: 900px;
    margin: 0 auto 100px;
}

.sensyukai {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}

.sensyukai_logo {
    text-align: center;
    width: calc(30% - 10px);
    height: 60px;
    display: grid;
    place-items: center;
}

.sensyukai_txt {
    width: 70%;
    font-size: 22px;
    font-weight: 700;
}

.sensyukai_txt span {
    font-size: 18px;
    font-weight: 400;
}


.shinsain_chomeijin {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    flex-wrap: wrap;
}

.shinsain_chomeijin_box {
    width: 20%;
}

.shinsain_chomeijin_name {
    font-size: 19px;
    font-weight: 700;
}

.shinsain_chomeijin_img {
    padding: 18px 0 15px;
    width: 100%;
}

.shinsain_chomeijin_ttl {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    padding-bottom: 8px;
}

.shinsain_chomeijin_subttl {
    font-size: 18px;
    text-align: left;
}


@media (max-width: 460px) {
    .shinsain_ttl {
        font-size: 32px;
    }

    .sensyukai_txt {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }

    .sensyukai {
        flex-direction: column;
    }

    .shinsain_chomeijin_box {
        width: 45%;
        margin-bottom: 60px;
    }

}


/* ------------ 審査員 ------------ */



/* ------------ 関係者 ------------ */

.kankeisya {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 60px auto 110px;
}

.syusai {
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}

.syusai p {
    font-size: 26px;
    font-weight: 700;
    padding-right: 36px;
}

.kyousan {
    display: flex;
    padding-bottom: 68px;
}

.kyousan p {
    font-size: 22px;
    font-weight: 700;
    padding-right: 36px;
}

.kyoryoku {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.kyoryoku p {
    font-size: 20px;
    font-weight: 700;
    padding-right: 10px;
}

.kyoryoku img {
    padding-right: 20px;
}

.kyoryoku_txt {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 80px;
}

.kouen {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.kouen p {
    font-size: 20px;
    font-weight: 700;
    padding-right: 10px;
}

.kouen img {
    padding-right: 20px;
}

.kouen_txt {
    font-size: 18px;
    font-weight: 700;
}


@media (max-width: 460px) {
    .kankeisya {
        padding: 50px 20px 60px;
        margin: 60px auto;
    }

    .syusai {
        flex-wrap: wrap;
        justify-content: center;
    }

    .syusai p {
        font-size: 24px;
        padding-right: 10px;
    }

    .kyousan {
        flex-wrap: wrap;
    }

    .kyousan p {
        padding-right: 0;
        padding-bottom: 10px;
    }

    .kyousan_link {
        padding: 0 0 10px 66px;
    }

    .kyoryoku {
        padding: 0 0 10px 66px;
    }

    .kyoryoku p {
        margin: 0 0 0 -66px;
    }

    .kyoryoku_txt {
        padding: 0 0 60px 66px;
    }

    .kouen {
        padding: 0 0 10px 66px;
    }

    .kouen p {
        margin: 0 0 0 -66px;
    }

    .kouen_txt {
        padding: 0 0 0 66px;
    }
}


/* ------------ 関係者 ------------ */



/* ------------ 問い合わせ ------------ */


.toiawase {
    width: 100%;
    padding: 70px 16px;
    text-align: center;
    background-color: #007D49;
}

.toiawase_ttl {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    padding-bottom: 25px;
    letter-spacing: 0.1em;
}

.toiawase_txt {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 25px;
}

.toiawase_btn {
    display: inline-block;
    border-radius: 50px;
    padding: 12px 46px;
    transition: all 0.3s ease;
    position: relative;
    background-color: #FFF000;
    margin: 15px auto;
}

.toiawase_btn p {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s ease;
}

.toiawase_btn:hover {
    background-color: #fff;
}

.toiawase_btn:hover p {
    color: #1a1a1a;
}

.toiawase_btn::after {
    content: "";
    background: url(../images/chirashi_btn_icon.png) no-repeat;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transition: all 0.3s ease;
}

@media (max-width: 460px) {
    .toiawase {
        padding: 50px 16px 40px;
    }

    .toiawase_ttl {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .toiawase_txt {
        font-size: 18px;
        padding-bottom: 12px;
    }
}

/* ------------ 問い合わせ ------------ */



/* ------------ footer ------------ */

footer {
    width: 100%;
    font-weight: 500;
}

.footer_url,
.sns_wrap {
    width: 100%;
}

.footer_url {
    text-align: center;
    font-size: 26px;
    padding: 40px 10px;
}

.footer_url a {
    font-size: 26px;
    color: #0097e0;
    text-decoration: underline;
}

.sns_wrap {
    text-align: center;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #fbcf00 1px, transparent 1px);
    background-position: 0 0;
    background-size: 12px 12px;
    padding: 70px 0;
}

.sns {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.sns a {
    padding: 0 10px;
}

.sns a img {
    max-width: 100%;
}

.sns_wrap p {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    margin: 0 auto 30px;
    padding: 0 20px;
    border-radius: 100px;
    background-color: #fff;
}


@media (max-width: 820px) {
    footer {
        flex-direction: column-reverse;
    }

    .footer_url {
        font-size: 18px;
        padding: 25px 10px 20px;
    }

    .footer_url a {
        font-size: 18px;
        color: #0097e0;
        text-decoration: underline;
    }

    .sns {
        width: 90%;
    }

    .sns_wrap {
        padding: 40px 10px;
    }

    .sns_wrap p {
        font-size: 18px;
    }

}

/* ------------ footer ------------ */



.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 100px;
    background: #fff;
    border: solid 1px #000;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}


@media (max-width: 460px) {
    .pagetop{
        height: 40px;
    width: 40px;
    right: 10px;
    bottom: 70px;
    }
}