@charset "UTF-8";

/* ---- reset ----- */

body {
    margin: 0;
    padding: 0 !important;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    word-wrap: break-word;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Noto Sans JP", sans-serif;
}

ol,
ul,
li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a,
a img {
    display: block;
    overflow: hidden;
    color: #f144b6;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
}

h1 {
    font-weight: bold;
}

h2 {
    font-weight: bold;
}

h3 {
    font-weight: bold;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    touch-callout: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    box-sizing: border-box;
    outline: none;
}

main:after,
article:after,
section:after,
div:after,
ul:after,
li:after,
dl:after {
    content: "" "";
    display: block;
    clear: both;
}

table {
    border-collapse: collapse;
    /* テーブルのセルの境界線を重ねる */
    border-spacing: 0;
    /* セル間のスペースをなくす */
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    /* セルの幅を固定 */
}

td,
th {
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
    /* セル内のコンテンツの縦揃えをトップに */
}

tr {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    vertical-align: inherit;
}

/* ---- reset ----- */


html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    scrollbar-width: none;
}

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    color: #fff;
    background: none;
}
body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

a {
    color: #fff;
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

img {
    vertical-align:top;
}

strong {
    font-weight: bolder;
}


.sp {
    display: block;
}

.pc {
    display: none;
}


/* common */

#wrap {
    overflow-x: hidden;
}
#wrap::before {
    content: "";
    background-image: url(../images/bg_sp_green.jpg);
    background-position: center;
    background-size: contain;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -10;
}

/* header */

.fix_menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    z-index: 1000;
    background-color: #f9eaa8;
    border: 1px solid #6daa9a;
    border-radius: 50%;
}
.menu-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.menu-trigger span {
    position: absolute;
    display: block;
    width: 22px;
    height: 1px;
    background-color: #6daa9a;
    transition: 0.3s;
}
.menu-trigger span:nth-child(1) {
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu-trigger span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu-trigger p {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.01rem;
    color: #6daa9a;
    transition: 0.3s;
}
.menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.3s;
}
.menu-trigger.active span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.3s;
}
.menu-trigger.active p {
    opacity: 0;
    transition: 0.3s;
}

.gnavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    text-align: center;
    background-color: rgba(249, 234, 168, 0.9);
}
.gnavi .gnavi_in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.gnavi_wrap li {
    margin-bottom: 1.5rem;
}
.gnavi_wrap li:last-of-type {
    margin-bottom: 0;
}
.gnavi_wrap li a {
    font-size: 1.1rem;
    font-family: "eloquent-jf-pro", serif;
    font-weight: 400;
    font-style: normal;
    color: #6daa9a;
}

/* header */

/* main */

.common_wrapper {
    max-width: 1100px;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.common_heading {
    text-align: center;
    font-size: 2rem;
    font-family: "eloquent-jf-pro", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 2.5rem;
}

/* main */

/* footer */

.footer {
    padding: 5rem 0 0;
    background-color: #fff;
    position: relative;
}

.topbtncont {
    transition: 0.3s;
    transform: translateY(20px);
    opacity: 0;
    max-width: 80px;
    width: 15%;
    position: fixed;
    bottom: 2.5rem;
    right: 1.25rem;
    z-index: 100;
    pointer-events: none;
}

.topbtncont.active {
    transition: 0.3s;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.topbtn {
    display: block;
}

.share {
    color: #000;
    font-weight: bold;
    text-align: center;
}

.snslist {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 2rem;
}

.snslist li {
    width: 2.1rem;
    margin-right: 2.5rem;
}

.snslist li:last-child {
    margin-right: 0;
}


.footer_logoarea {
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fooerlogo {
    width: 14%;
    max-width: 80px;
    margin: 0 auto;
}

.copy {
    padding: 1rem 1rem 1.5rem;
    text-align: center;
    font-size: 10px;
    color: #000;
}

/* footer */

/* common */


/* TOP */

.top_kv_area {
    position: relative;
}
.top_kv_area h1 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 42.5%;
    height: auto;
}

.news_container {
    padding-top: 4rem;
}
.news_container .news_wrapper {
    position: relative;
}
.news_container .news_wrapper .news_more_btn {
    position: absolute;
    width: 3.25rem;
    height: auto;
    top: 1rem;
    right: 1.25rem;
    font-size: 0.85rem;
    line-height: 1;
}
.news_container .news_wrapper .news_more_btn::after {
    content: "";
    background-image: url(../images/arrow_right.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    aspect-ratio: 3 / 4;
    width: 0.4rem;
    height: auto;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
    transition: 0.5s;
}
.news_container .news_wrapper .news_article {
    border-bottom: 1px solid #f9eaa8;
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
}
.news_container .news_wrapper .news_article .news_article_title {
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.news_container .news_wrapper .news_article .news_article_title:hover {
    opacity: 0.7;
    transition: 0.3s;
}
.news_container .news_wrapper .news_article .news_article_title::after {
    content: "";
    background-image: url(../images/arrow_bottom.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 1.25rem;
    height: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.5s;
}
.news_container .news_wrapper .news_article .news_article_title.active::after {
    transform: translateY(-50%) rotate(-180deg);
}
.news_container .news_wrapper .news_article .news_article_title p.date {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.news_container .news_wrapper .news_article .news_article_title h3 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 1.75rem;
}
.news_container .news_wrapper .news_article .news_article_text {
    display: none;
    margin-top: 1.25rem;
}
.news_container .news_wrapper .news_article .news_article_text img {
    width: 100%;
    margin-bottom: 1.25rem;
}
.news_container .news_wrapper .news_article .news_article_text p {
    font-size: 0.85rem;
}

.movie_container {
    padding-top: 4rem;
    margin-bottom: 4rem;
}
.movie_container .movie_area {
    width: 85%;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.movie_container .movie_area iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
.movie_container .movie_prime-video_area {
    text-align: center;
}
.movie_container .movie_prime-video_area p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.movie_container .movie_prime-video_area .movie_prime-video_logo {
    width: 40%;
    max-width: 240px;
    margin: 0 auto 1.5rem;
}
.movie_container .movie_prime-video_area .movie_prime-video_btn {
    width: 85%;
    max-width: 380px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #3678f4;
    border-radius: 40px;
    padding: 0.5rem;
    margin: 0 auto;
}

.introduction_container {
    position: relative;
    padding: 4rem 0;
}
.introduction_container::before {
    content: "";
    background-image: url(../images/bg_sp_purple.jpg);
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.introduction_container .introduction_text {
    max-width: 375px;
    margin: 0 auto;
}
.introduction_container .introduction_text p {
    font-size: 0.85rem;
}

.comment_container {
    position: relative;
    padding: 4rem 0;
}
.comment_container::before {
    content: "";
    background-image: url(../images/bg_sp_yellow.jpg);
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.comment_container .comment_wrapper {
    color: #646464;
}
.comment_container .comment_wrapper .comment_text {
    max-width: 375px;
    margin: 0 auto;
}
.comment_container .comment_wrapper .comment_text p {
    font-size: 0.85rem;
}
.comment_name {
    font-size: 0.85rem;
    text-align: right;
}

/* TOP */

/* NEWS */

.news_page .main {
    min-height: calc(100vh - 300px);
}

.news_page .top_container {
    margin: 1rem auto 3rem;
}
.news_page .top_kv_area h1 {
    position: relative;
    width: 22%;
    height: auto;
    max-width: 100px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
}

.news_page .news_container {
    padding-top: 0;
    margin-bottom: 4rem;
}
.news_page .news_container .news_article_list {
    margin-bottom: 2.5rem;
}
.news_page .news_container .top_btn_area {
    text-align: center;
    margin: 0 auto;
}
.news_page .news_container .top_btn_area .top_btn {
    position: relative;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    padding-right: 10px;
}
.news_page .news_container .top_btn_area .top_btn::after {
    content: "";
    background-image: url(../images/arrow_right.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    aspect-ratio: 3 / 4;
    width: 0.4rem;
    height: auto;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
    transition: 0.5s;
}

/* NEWS */


@media screen and (min-width: 1024px) {

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* common */

    #wrap::before {
        content: "";
        background-image: url(../images/bg_pc_green.jpg);
    }

    /* header */

    .gnavi {
        display: block !important;
        position: absolute;
        left: auto;
        right: 0;
        height: 100px;
        text-align: center;
        background: none;
    }
    .gnavi .gnavi_in {
        flex-direction: row;
        justify-content: flex-end;
        width: 97.5%;
        height: 100%;
    }
    .gnavi_wrap {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
    }
    .gnavi_wrap li {
        margin-left: .8rem;
        margin-bottom: 0;
    }
    .gnavi_wrap li:first-child {
        margin-left: 0;
    }
    .gnavi_wrap li a {
        font-size: 1.1rem;
        color: #fff;
    }

    /* header */

    /* main */

    .common_heading {
        font-size: 4rem;
        margin-bottom: 5rem;
    }

    /* main */

    /* footer */

    .topbtncont {
        bottom: 11.5rem;
        right: 2.5rem;
    }

    .sec.footer {
        padding-bottom: 1rem;
    }

    .footer_menu ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .footer_menu ul li {
        margin-bottom: 0;
        margin-right: 2rem;
    }

    .footer_menu ul li:last-child {
        margin-right: 0;
    }


    .footer_logoarea {
        margin-top: 3rem;
    }

    .copy {
        padding-top: 2rem;
    }

    /* footer */

    /* common */

    /* TOP */

    .top_container {
        margin-bottom: 4rem;
    }
    .top_kv_area h1 {
        bottom: 17.5%;
        left: 6%;
    }

    .news_container {
        margin-bottom: 4rem;
    }
    .news_container .news_wrapper .news_more_btn {
        width: 3.75rem;
        top: 3rem;
        font-size: 1rem;
    }
    .news_container .news_wrapper .news_article {
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;
    }
    .news_container .news_wrapper .news_article .news_article_title {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .news_container .news_wrapper .news_article .news_article_title p.date {
        font-size: 1rem;
        margin-right: 2.5rem;
        margin-bottom: 0;
    }
    .news_container .news_wrapper .news_article .news_article_title h3 {
        font-size: 1rem;
        margin-right: 0;
    }
    .news_container .news_wrapper .news_article .news_article_text {
        margin-top: 2rem;
    }
    .news_container .news_wrapper .news_article .news_article_text img {
        margin-bottom: 2rem;
    }
    .news_container .news_wrapper .news_article .news_article_text p {
        font-size: 1rem;
    }

    .movie_container {
        margin-bottom: 6rem;
    }
    .movie_container .movie_area {
        margin: 0 auto 2.5rem;
    }
    .movie_container .movie_prime-video_area p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    .movie_container .movie_prime-video_area .movie_prime-video_logo {
        margin: 0 auto 2.5rem;
    }
    .movie_container .movie_prime-video_area .movie_prime-video_btn {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .introduction_container {
        padding: 8rem 0;
    }
    .introduction_container::before {
        background-image: url(../images/bg_pc_purple.jpg);
    }
    .introduction_container .introduction_text {
        max-width: 600px;
    }
    .introduction_container .introduction_text p {
        font-size: 1rem;
    }

    .comment_container {
        padding: 8rem 0;
    }
    .comment_container::before {
        background-image: url(../images/bg_pc_yellow.jpg);
    }
    .comment_container .comment_wrapper .comment_text {
        max-width: 600px;
    }
    .comment_container .comment_wrapper .comment_text p {
        font-size: 1rem;
    }

    /* TOP */

    /* NEWS */

    .news_page .top_container {
        margin: 1rem auto 4rem;
    }
    .news_page .top_kv_area h1 {
        margin: 0.5rem 2.5%;
    }

    .news_page .news_container {
        margin-bottom: 6rem;
    }
    .news_page .news_container h2 {
        margin-bottom: 6rem;
    }
    .news_page .news_container .news_article_list {
        margin-bottom: 5rem;
    }
    .news_page .news_container .top_btn_area .top_btn {
        font-size: 1.1rem;
    }

    /* NEWS */

}


@media screen and (min-width: 1300px) {

    /* header */

    .gnavi .gnavi_in {
        width: 95%;
    }
    .gnavi_wrap li {
        margin-left: 1.5rem;
    }
    .gnavi_wrap li a {
        font-size: 1.3rem;
    }

    /* header */

    /* NEWS */

    .news_page .top_kv_area h1 {
        margin: 0.5rem 5%;
    }

    /* NEWS */

}



/* inview */

.fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.fadeup.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .5s;
}

/* inview */