@charset "utf-8";

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

body {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    background: #fff;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: .1em;
    font-weight: 500;
}

main {
    overflow: hidden;
}

.hidden {
    display: none;
}

p {
    text-align: justify;

}

h2 {
    font-weight: 800;
}

strong {
    font-weight: 800;
}

.indent-1 {
    padding-left: 1em;
    text-indent: -1em;
}

a {
    color: #e52d27;
    text-decoration: none;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.oswald {
    font-family: "Oswald", sans-serif;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.wrap1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.wrap1000 {
    max-width: 1000px;
    margin: 0 auto;

}

.align_center {
    text-align: center;
}

.align_left {
    text-align: left !important;
}

#color_area {
    width: 100%;
    padding: 120px 0;
    background: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg_pink {
    background: #ED6D81;
}

.bg_coral {
    background: #D2AE94;
}

/*****ANIMATION*****/
.sa {
    opacity: 0;
    -webkit-transition: all .8s ease;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

.sa.show {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.sa--lr {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}

.sa--rl {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
}

.sa--up {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
}

.sa--down {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
}

.sa--scaleUp {
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

/*******************/

.m120 {
    padding: 120px 0;
}

.mt120 {
    padding-top: 120px;
}

.mb120 {
    padding-bottom: 120px;
}


.m100 {
    padding: 100px 0;
}

.mt100 {
    padding-top: 100px;
}

.mb100 {
    padding-bottom: 100px;
}

.m80 {
    padding: 80px 0;
}

.mt80 {
    padding-top: 80px;
}

.mb80 {
    padding-bottom: 80px;
}

.m50 {
    padding: 50px 0;
}

.mt50 {
    padding-top: 50px;
}

.mb50 {
    padding-bottom: 50px;
}

.m30 {
    padding: 30px 0;
}

.mt30 {
    padding-top: 30px;
}

.mb30 {
    padding-bottom: 30px;
}

.m20 {
    padding: 20px 0;
}

.mt20 {
    padding-top: 20px;
}

.mb20 {
    padding-bottom: 20px;
}

.m15 {
    padding: 15px 0;
}

.mt15 {
    padding-top: 15px;
}

.mb15 {
    padding-bottom: 15px;
}

.pc_only {
    display: block;
}

.octype h4 .pc_only {
    display: inline;
}

.sp_only {
    display: none;
}

.alart_box {
    border: 2px solid red;
    padding: 25px;
    background: white;
}

.alart_box p {
    color: red;
    font-weight: 600;
    text-align: center;
    font-size: 23px;
}

/*HEADER----------------------------------------------------------------------*/

.inner {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inner:after {
    clear: both;
    display: block;
}

/* header */
#nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 69px;
    cursor: pointer;
    background: #22b573;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid #FFF;
}

#nav-toggle > div {
    position: relative;
    width: 45px;
}

#nav-toggle span {
    width: 80%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    background: #fff;
    position: absolute;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease;
    transition: transform 0.3s ease-in-out, top 0.3s ease, -webkit-transform 0.3s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 8px;
}

#nav-toggle span:nth-child(2) {
    top: 22px;
}

#nav-toggle span:nth-child(3) {
    top: 37px;
}

#nav-toggle:hover span:nth-child(1) {
    top: 10px;
}

#nav-toggle:hover span:nth-child(3) {
    top: 35px;
}

.open #nav-toggle span {
    background: #fff;
    top: 50%;
    left: 10%;
}

.open #nav-toggle span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
    top: 22px;
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-toggle {
    z-index: 1000;
}

#container {
    z-index: 900;
}

#gloval-nav {
    background: rgba(16, 175, 103, .7);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease;
}

#gloval-nav a:hover {
    color: #666;
}

#gloval-nav ul {
    list-style: none;
}

#gloval-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: transform 0.6s ease, opacity 0.2s ease;
    transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}

#gloval-nav ul li:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

#gloval-nav ul li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#gloval-nav ul li:nth-child(4) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

#gloval-nav ul li:nth-child(5) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

#gloval-nav ul li:nth-child(6) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

#gloval-nav ul li:nth-child(7) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.open {
    overflow: hidden;
}

.open #gloval-nav {
    visibility: visible;
    opacity: 1;
}

.open #gloval-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

#top-head {
    top: -100px;
    margin-top: 100px;
    position: absolute;
    width: 100%;
    padding: 0 15px;
    line-height: 1;
    z-index: 999;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#top-head a,
#top-head {
    text-decoration: none;
}

#top-head .inner {
    position: relative;
}

#top-head .logo {
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 250px;
}


.insta_btn {
    position: absolute;
    right: 80px;
    top: 9px;
}


.insta_btn a {
    font-size: 40px !important;
    color: #fff;
}

#global-nav ul li a:hover {
    color: #90cee4;
}

/* Fixed */

#top-head.fixed .insta_btn a {
    color: #fff;
}

#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    z-index: 9999;
}

#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}

.fixed_btn ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fixed_btn ul li a {
    color: #fff;
    height: 60px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0 25px;
    line-height: 60px;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.fixed_btn ul li a:hover {
    opacity: 0.7;
}

.fixed_btn {
    position: absolute;
    top: 0;
    right: 60px;
}



.streaming_btn a {
    background: #fff;
    color: #288C57 !important;
    padding: 5px 10px;
    border-radius: 100px;
    border: 2px solid #fff;
    -webkit-transition: .5s;
    transition: .5s;
    font-weight: bold;
}

.streaming_btn a:hover {
    background: transparent;
    color: #fff !important;
}

a.contact_btn {
    background: #288c57;
    color: #fff !important;
    padding: 6px 20px;
    border-radius: 5px;
    border: 2px solid #288c57;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.contact_btn:hover {
    background: transparent;
    color: #288c57 !important;
    border: 2px solid #288c57;
}


.head_logo {
    max-width: 250px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*HEADERend-------------------------------------------------------------------*/

/*MAIN------------------------------------------------------------------------*/

main {
    position: relative;
}


.scroll {
    padding-bottom: 16px;
    position: absolute;
    bottom: 40px;
    text-decoration: none;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.scroll span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 25px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
        transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        transform: rotate(-45deg) translate(0, 0);
    }
}

/* All delay classes will take half the time to start */
.custom-delay {
    animation-delay: 0.5s;
}

.main_v {
    width: 100%;
    height: 100vh;
    min-height: 860px;
    position: relative;
    background: url(images/mainv_pc.webp) center / cover no-repeat;
}

.sitettl_cont {
    margin-top: 3vw;
    position: absolute;
    width: 100%;
}

.sitettl {
    background: rgba(255, 255, 255, .8);
    padding: 30px 20px;
    text-align: center;
    top: 0;
}

.sitettl img {
    max-width: 1200px;
}

.mainv_p01,
.mainv_p02,
.mainv_p03 {
    position: absolute;
}

.mainv_p01 {
    right: 3%;
    bottom: 5%;
    width: 30%;
    max-width: 440px
}

.mainv_p02 {
    left: 3%;
    bottom: 23%;
    width: 25%;
    max-width: 150%
}

.mainv_p03 {
    left: 3%;
    bottom: 5%;
    width: 30%;
    max-width: 600px
}

/***申込ボタン**/
#floatingButton {
    position: fixed;
    right: -320px;
    bottom: 5%;
    transition: right 0.4s ease;
    z-index: 1000;
    max-width: 320px;
    width: 15vw
}

#floatingButton.show {
    right: 20px;
}

#floatingButton.hide {
    right -320px;
}

.sidebtn a {
    display: block;
    transition: 0.4s;
}

.sidebtn a:hover {
    opacity: .5;
}

.sidebtn a:last-child {
    margin-top: 15px;
}

.resist_date {
    background: #E85B9C;
    padding: 80px 20px;
}

#area01 {
    background: url(images/bg.webp) center / cover no-repeat;
    position: relative;
    padding: 100px 0;
    z-index: 0;
}

#area01::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    /* 半透明 */
    z-index: 1;
}

.content_inner {
    position: relative;
    z-index: 2;
}

.menu_copy {
    text-align: center;
    color: #E85B9C;
}

.menu_list,
.menu_list2 {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.menu_list {
    justify-content: space-between;
}

.menu_list2 {
    justify-content: center;
    margin-top: 50px;
}

.menu_list2 li:nth-child(1) {
    margin-right: 40px;
}

.menu_list li,
.menu_list2 li {
    width: calc(100% / 3 - 20px);
}

/* ダミー列で中央寄せ */
.menu_list::after,
.menu_list2 li::after {
    content: "";
    width: calc(100% / 3 - 20px);
}

#area02 {
    background: url(images/BG2.webp) center / cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.event_list {
    list-style: none;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event_list li {
    width: calc(100% / 2 - 20px);
}

.event_list li:nth-child(n+3) {
    margin-top: 40px;
}

.kyotu_eve {
    background: #FF86BE;
    padding: 25px 20px;
    border-radius: 20px;
}

.kyotu_eve p {
    text-align: center;
    color: #fff;
    font-size: clamp(25px, calc(24px + 0.3125vw), 30px);
    font-weight: 600;
}

#area03 {
    padding: 100px 20px;
}

.maps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.maps .separate {
    width: calc(100% / 2);
}

.maps .separate:nth-child(1) {
    padding-right: 20px;
    border-right: 1px solid #000;
}

.maps .separate:nth-child(2) {
    padding-left: 20px;
}

.access {
    background: #CEEAF3;
    padding: 100px 20px;
}

.cam_info {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1em;
}

.cam_info dt {
    margin-right: 1em;
}

.cam_info dt h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: clamp(40px, calc(36px + 1.25vw), 60px);
    line-height: 1em;
}

.cam_info dd {
    font-size: 13px;
}

.area_ttl {
    font-family: "Oswald", sans-serif;
    margin-bottom: 50px;
    display: flex;
    align-items: baseline;
    color: #E85B9C;
}

.area_ttl h2 {
    font-size: clamp(3rem, calc(2.6rem + 2vw), 5rem);
    line-height: 1em !important;
    font-weight: 500;
    margin-right: 15px;
}

.area_ttl p {
    font-weight: 600;
    font-size: 18px;
}

.schettl {
    border-radius: 100px;
    text-align: center;
    background: #E85B9C;
    font-weight: 600;
    color: #fff;
    padding: 5px;
    margin-bottom: 10px;
}

.font_wht {
    color: #fff;
}

.font_red {
    color: #E52D27;
}

.ocdate_area {
    background: #EBEBEB;
    padding: 100px 20px;
}

/*media acordion------------------
---------------------------------*/

.accordion-container {
    margin: 0px auto 0;
    width: 100%;
}

.accordion-list {
    border: 1.5px solid #10AF67;
}

.accordion-list:not(:first-child) {
    margin-top: 50px;
}

.accordion-title {
    cursor: pointer;
    font-size: 28px;
    padding: 20px 20px;
    position: relative;
    text-align: center;
    background: #fff;
    font-weight: 600;
    color: #10AF67;
}



.dli-chevron-down {
    display: block;
    vertical-align: middle;
    color: #10AF67;
    line-height: 1;
    width: 1.8em;
    height: 1.8em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    margin: 20px auto;
}


.accordion-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #10AF67;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.accordion-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #10AF67;
    transition: all .3s ease-in-out;
}

.accordion-title.open:before {
    transform: rotate(180deg);
}

.accordion-title.open:after {
    opacity: 0;
}

.accordion-text {
    display: none;
    padding: 30px background: #fff;
}

.theme_contain {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.theme_contain_in {
    width: calc(100% / 2 - 10px)
}

.theme_contain h3 {
    text-align: center;
    border-radius: 50px;
    color: #fff;
    padding: 5px;
    margin-bottom: 20px;
}

.theme_contain .theme_in {
    list-style: none;

}

.theme_contain .theme_in li {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme_contain .theme_in li:nth-child(n+2) {
    margin-top: 20px;
}

.theme_contain .theme_in li img {
    width: 20%;
}

.theme_contain .theme_in li p {
    width: 78%;
    font-weight: 600;
    font-size: 18px;
}

/*------------------------------
-----------------------------*/


/*acbox----------------------------
-----------------------------*/

.acbox_seemore {
    width: 100%;
    margin: 0 auto;
    /* ラベルと開く部分を分離する時は数値を入れる */
    /* ボックス全体の位置調整 */
}

.acbox_seemore label {
    color: #fff;
    width: auto;
    font-size: 18px;
    /* ラベルの文字サイズ */
    font-weight: bold;
    text-align: center;
    position: relative;
    display: block;
    padding: 15px;
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
    border: 1px solid #fff;
    max-width: 360px;
    margin: 0 auto;
}

.acbox_seemore label:hover {
    background: #fff;
    color: #E52D27;
}

.acbox_seemore input {
    display: none;
}

.acbox_seemore input:checked ~ label::after {
    content: "\f077";
    /* ラベルのアイコン */
    position: absolute;
    top: 44%;
    margin-top: -14px;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.acbox_seemore label:after {
    content: "\f078";
    /* ラベルのアイコン */
    position: absolute;
    top: 44%;
    margin-top: -14px;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.acbox_seemore .acbox-under {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    /* 開閉スピードの設定 */
}

.acbox_seemore input:checked ~ .acbox-under {
    height: auto;
    padding: 20px 0;
    /* 開いた部分の枠内の余白 */
    border-radius: 0px;
    background: transparent;
    /* 開いた部分の背景色 */
    opacity: 1 !important;
}

/*------------------------------
-----------------------------*/

.photo_on {
    display: flex;
    justify-content: space-between;
}

.photo_box {
    width: 30%
}

.tex_box {
    width: 68%;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-block;
}



/*button*/

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

.btn_main {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #E85B9C;
    border: 2px solid #E85B9C;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 30px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition: ease .3s;
    border-radius: 100px;
    font-weight: 600;
}

.btn_main:after {
    content: '';
    position: absolute;
    top: 38%;
    right: 30px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

.btn_main:hover {
    background-color: transparent;
    border-color: #E85B9C;
    color: #E85B9C;
    opacity: 1;
}


.btn_main:hover:after {
    right: 25px;
    border-top: 1px solid #E85B9C;
    border-right: 1px solid #E85B9C;
}


.btn_main2 {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #007131;
    border: 2px solid #007131;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 25px 10px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn_main2:hover {
    background-color: transparent;
    border-color: #007131;
    color: #007131;
}


.newspaper {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newspaper li {
    width: calc(100% / 3 - 20px);
}

.topic_ttl {
    color: #e52d27;
    border-bottom: 1px solid #e52d27;
    margin-bottom: 20px;
}

/*MAINend---------------------------------------------------------------------*/

/*FOOTER----------------------------------------------------------------------*/

.footer_top {
    background: #a5b2b7;
    padding: 50px 0;
}

.footer_top p {
    text-align: center;
    font-weight: bold;
}

.footer_logo {
    max-width: 450px;
    margin: 0 auto;
}

.footer_btm {
    background: #E85B9C;
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 15px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}

#page-top a {
    background: #22b573;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 22px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}

.past_site {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.past_site li {
    width: calc(100% / 3 - 20px);
}

.footer_btnbox {
    padding: clamp(80px, 10vw, 120px) 0;
}

.footer_btnbox {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer_btnbox li {
    width: calc(100% / 3 - 50px);
}

.footer_btnbox li a {
    transition: .5s;
}

.footer_btnbox li a:hover {
    opacity: .7;
}

.sidebtnsp {
    display: flex;
    justify-content: space-between;
    width: 100;
}

.sidebtnsp a {
    width: calc(100% / 1);
}

#floatingButtonsp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    transition: transform 0.5s ease;
}


/* スライドアウト状態 */
#floatingButtonsp.hide {
    transform: translateY(100%);
}

/*FOOTERend-------------------------------------------------------------------*/


@media only screen and (max-width: 1200px) {
    .wrap1200 {
        padding: 0 15px;
    }
}


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



    /*HEADER----------------------------------------------------------------------*/


    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
        background: transparent;
    }


    #top-head.fixed .logo {
        font-size: 24px;
        color: #333;
    }



    #top-head.fixed .logo,
    #top-head .logo {
        max-width: 300px
    }


    /*HEADERend-------------------------------------------------------------------*/

    /*MAIN------------------------------------------------------------------------*/

    .wrap1000 {
        padding: 0 15px;
    }


    .books li {
        width: calc(100% / 3 - 20px);
    }

    .books li:nth-child(n+4) {
        margin-top: 50px;
    }

    /* 親要素の疑似要素 */
    .books::after {
        content: "";
        display: block;
        width: calc(100% / 3 - 20px);
    }

    .cover {
        height: 45vw;
    }

    .main_v_name {
        width: 40vw;
        bottom: 5%;
    }

    .main_v_parson {
        width: 75vw;
        top: auto;
        bottom: -11vw;
        right: -5%;
        z-index: 1;
        max-width: 700px;
    }


    .main_v_copy {
        width: 60vw
    }

    /*MAINend---------------------------------------------------------------------*/

    /*FOOTER----------------------------------------------------------------------*/

    .past_site li {
        width: calc(100% / 1);
    }

    .past_site li:nth-child(n+2) {
        margin-top: 20px;
    }

    /*FOOTERend-------------------------------------------------------------------*/

}

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

    body {
        font-size: 12px;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .m100,
    #color_area {
        padding: 21vw 0;
    }

    .mt100 {
        padding-top: 21vw;
    }

    .mb100 {
        padding-bottom: 21vw;
    }

    /*HEADER----------------------------------------------------------------------*/

    #top-head.fixed .logo,
    #top-head .logo {
        max-width: 250px;
    }

    /*HEADERend-------------------------------------------------------------------*/

    /*MAIN------------------------------------------------------------------------*/
    .main_v {
        background: url(images/mainv_sp.webp) center / cover no-repeat;
        min-height: 680px;
    }

    .sitettl {
        margin-top: 10vw;
        background: rgba(255, 255, 255, .8);
        padding: 30px 20px;
        text-align: center;
        position: absolute;
        width: 100%;
        top: 0;
    }

    .mainv_p01 {
        bottom: 2%;
        width: 45%
    }

    .mainv_p02 {
        left: 3%;
        bottom: 2%;
        width: 100%;
        width: 45%
    }

    .mainv_p03 {
        left: auto;
        right: 3%;
        bottom: 25%;
        width: 45%;
    }

    .menu_list li {
        width: calc(100% / 2 - 10px);
    }

    .menu_list2 li,
    .event_list li,
    .maps .separate {
        width: 100%;
    }

    .maps .separate:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #000;
        padding-bottom: 2em;
    }

    .maps .separate:nth-child(2) {
        padding-top: 2em;
    }

    .maps .separate:nth-child(1),
    .maps .separate:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
    }

    .menu_list2 li:nth-child(n+2),
    .event_list li:nth-child(n+2) {
        margin-top: 30px;
    }

    .menu_list li:nth-child(n+3),
    .event_list {
        margin-top: 20px;
    }

    .area_ttl,
    .cam_info {
        flex-direction: column;
    }

    .cam_info {
        align-items: flex-start;
    }

    .cam_info dd {
        margin-top: 1em;
    }

    .m120 {
        padding: 80px 0;
    }

    .btn_main {
        padding: 15px;
        font-size: 11px;
    }

    .theme_contain .theme_in li p {
        font-size: 13px;
    }

    .theme_contain .theme_in li img {
        width: 27%;
    }

    .theme_contain .theme_in li p {
        width: 71%;
    }

    .accordion-title {
        font-size: 20px;
    }

    /*MAINend---------------------------------------------------------------------*/

    /*FOOTER----------------------------------------------------------------------*/

    .footer_btnbox li {
        width: 100%;
    }

    .footer_btnbox li:nth-child(n+2) {
        margin-top: 20px;
    }

    /*FOOTERend-------------------------------------------------------------------*/

}
