@charset "utf-8";

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

body {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    font-family: "Be Vietnam Pro", 'Zen Kaku Gothic New', sans-serif;
    background: #fff;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: .1em;
}

p {
    text-align: justify;
    font-weight: 600;
}

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


.montserrat,
.course_num,
.tohostories_ttl,
.seemore,
.adv_ttl {
    font-family: 'Montserrat', 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: rgba(254, 130, 254, 1);
}

.bg_pink {
    background: #ED6D81;
}

.bg_coral {
    background: #D2AE94;
}

/*****ANIMATION*****/
.sa {
    opacity: 0;
    -webkit-transition: all .9s ease;
    -webkit-transition: all .9s ease;
    transition: all .9s 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: 5px solid red;
    padding: 25px;
    background: white;
    border-radius: 20px;
}

.alart_box p {
    font-weight: 600;
    font-size: 17px;
}

.alart_box dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alart_box dl dt {
    width: 10%;
}

.alart_box dl dd {
    width: 88%;
}

.alart_box dl dd h2 {
    text-align: left;
    border-bottom: 1px solid red;
    margin-bottom: 10px;
    color: red;
}

.alart_box dl:nth-child(n+2) {
    margin-top: 25px;
}

/*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: 70px;
    cursor: pointer;
    background: #000;
    padding: 17px;
    border-radius: 100px;
}

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

#nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    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: 5px;
}

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

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

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

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

.open #nav-toggle span {
    background: #fff;
}

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

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

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

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

#container {
    z-index: 900;
}

#gloval-nav {
    background: rgba(0, 0, 0, .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;
    height: 100px;
}

#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: 100px;
    top: 29px;
}


.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;
    height: 100px;
    background: #fff;
    background: rgba(0, 0, 0, 0);
    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;
    width: 50%;
    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);
    }
}

.main_v {
    height: 100vh;
    width: 100%;
    position: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(images/main_v_bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.main_v:after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    height: 100vh;
    width: 100%;
}

.main_v_inner {
    width: 70%;
    max-width: 660px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1
}

.datebadge {
    position: absolute;
    width: 50vw;
    max-width: 300px;
    z-index: 9999;
    left: 2rem;
    bottom: 2rem;
}

.logo {
    width: 43vw;
    margin: 2vw auto 0 auto;
    max-width: 250px;
}

.datebadge img {
    width: 100%;
}

.layer01 {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding-top: 100vh;
}

.top_comment {
    color: #000;
    font-size: 1.5rem;
    line-height: 4rem;
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 600;
}

.hidden {
    display: none;
}

#area02 {
    background: linear-gradient(45deg, rgba(253, 226, 180, 1) 0%, rgba(250, 176, 176, 1) 100%);
}

.fes_ttl {
    width: 60%;
    margin: 0 auto;
}

.event_ttl span {
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: #FE82FE;
    color: #FE82FE;
    font-weight: 600 !important;
}

.event_ttl h2 {
    font-size: 2.3rem;
    -webkit-text-stroke-width: 0.10rem;
    -webkit-text-stroke-color: #FE82FE;
    border-bottom: solid 1px #FE82FE;
    position: relative;
    width: 100%;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: left;
    line-height: 1em;
    margin-bottom: 2vw;
}


.event_ttl p {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.01em;
}

.content_in {
    list-style: none;
}

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

.coming p {
    font-size: 1.5rem;
    text-align: center;
    color: #fe82fe
}

.flex_box_line,
.flex_box_noline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
}

.flex_box_line .tohostories_ttl_box {
    margin: 20px 0 10px 0;
}

.flex_box_line li {
    width: calc(100% / 2 - 30px);
    text-align: center;
    background: #fff;
    padding: 20px;
}

.flex_box_noline li {
    width: calc(100% / 1);
    text-align: center;
    background: #fff;
}

.flex_box a {
    width: calc(100% / 2 - 30px);
}

.flex_box_line li p,
.flex_box_noline li p {
    text-align: center;
}

.flex_box_line li:nth-child(1) {
    border: 2px solid #ED6D81;
}

.flex_box_line li:nth-child(2) {
    border: 2px solid #D2AE94;
}

.course_num {
    font-style: italic;
    line-height: 1em;
}

.flex_box_line li:nth-child(1) .course_num {
    color: #ED6D81;
}

.flex_box_line li:nth-child(2) .course_num {
    color: #D2AE94;
}

.flex_box_line li h3 {
    font-size: 28px;
    line-height: 1em;
    margin: 15px 0;
}

.flex_box_line li:nth-child(1) h3 {
    color: #ED6D81;
}

.flex_box_line li:nth-child(2) h3 {
    color: #D2AE94;
}

.flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_box_line li .flex_box p {
    color: #fff;
    font-weight: 600;
    padding: 3px 20px;
    border-radius: 100px;
    width: 48%;
}

.flex_box_line li:nth-child(1) .flex_box p {
    background: #ed6d81;
}

.flex_box_line li:nth-child(2) .flex_box p {
    background: #D2AE94;
}

.flex_box_line li a,
.flex_box_noline li a {
    text-decoration: none;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.flex_box_line li a:hover,
.flex_box_noline li a:hover {
    opacity: 0.8;
}


.flex_box_line li:nth-child(1) .tohostories_ttl h4.stroke {
    -webkit-text-stroke: 3px #ed6d81;
    -webkit-text-fill-color: #fff;
}

.flex_box_line li:nth-child(2) .tohostories_ttl h4.stroke {
    -webkit-text-stroke: 3px #D2AE94;
    -webkit-text-fill-color: #fff;
}


.cat_ttl {
    color: #fff;
    background: #333;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 8px 15px;
}


.toho_st_copy p {
    color: #333
}

.flex_box_line li:nth-child(1) .toho_st_copy h4,
.flex_box_noline li:nth-child(1) .toho_st_copy h4 {
    color: #ED6D81;
}

.flex_box_line li:nth-child(2) .toho_st_copy h4,
.flex_box_noline li:nth-child(2) .toho_st_copy h4 {
    color: #D2AE94;
}

.stu_name {
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

p.seemore {
    color: #fff;
    background: #333;
    font-weight: 300 !important;
    letter-spacing: 0.1em;
    padding: 8px 15px;
    font-style: italic;
}

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


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

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


.loopSlide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    overflow: hidden;
}

.loopSlide ul {
    padding: 0;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.loopSlide ul:first-child {
    -webkit-animation: slide1 60s -30s linear infinite;
    animation: slide1 60s -30s linear infinite;
}

.loopSlide ul:last-child {
    -webkit-animation: slide2 60s linear infinite;
    animation: slide2 60s linear infinite;
}

.loopSlide ul li {
    display: inline-block;
    width: 100%;
    min-width: 250px;
    margin-right: 20px;
    list-style: none;
    text-align: center;
}

.loopSlide ul li img {
    display: block;
    width: 100%;
    height: auto;
}

.loopSlide:hover ul {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes slide1 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

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

@keyframes slide1 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

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

@-webkit-keyframes slide2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

@keyframes slide2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.campus_photo_ttl {
    width: 30%;
    margin: 0 auto;
}


.opencampus_ttl {
    background: url(images/oc_bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.opencampus_ttl p {
    text-align: center;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px
}

.opencampus_ttl img {
    width: 80%;
    margin: 0 auto;
}

.octype {
    margin-top: 20px;
    padding: 50px;
}

.octype img {
    width: 50%;
    margin: 0 auto;
    display: block;
}

.octype .flex_box {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 300px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.octype h4 {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 10px
}

.octype p {
    color: #fff;
    font-weight: 600;
}

p.white_sq {
    border: 1px solid #fff;
    padding: 3px 10px;
}

/*タブメニュー*/

/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 20px 20px 0px 0px rgba(0, 0, 0, 1);
    border: 1.5px solid #000;
}

/*タブのスタイル*/
.tab_item {
    width: calc(100%/2) !important;
    height: 80px;
    background-color: #000;
    line-height: 80px;
    font-size: 1.7rem;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-top-left-radius: 30px;
}

.tab_item:nth-child(n+3) {
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
}

.tab_item:hover {
    opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    clear: both;
    padding: 2.5rem;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background-color: #FE82FE;
    color: #000;
}

.tab_content_description .flex_box {
    list-style: none;
}

.tab_content_description .flex_box li {
    width: calc(100% / 2 - 30px);
    background: #fff;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tab_content_description .flex_box li h2 {
    background: #ED6D81;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}


/*button*/

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

.btn_main {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #000;
    border: 2px solid #000;
    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;
    border-radius: 100px;
}

.btn_main:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn_main2 {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #fe82fe;
    border: 2px solid #fe82fe;
    font-size: 16px;
    color: #000;
    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;
    border-radius: 100px;
}

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


/*---------------------------------
アコーディオンボックス
--------------------------------*/
.cp_box *,
.cp_box *:before,
.cp_box *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_box {
    position: relative;
}

.cp_box label {
    position: absolute;
    z-index: 1;
    bottom: -50px;
    width: 100%;
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 252, 252, 0)), color-stop(90%, rgba(250, 252, 252, 0.95)));
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.cp_box input:checked + label {
    background: inherit;
    /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    width: 16rem;
    font-family: FontAwesome;
    content: '\f13a'' 続きを見る';
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    font-weight: 600;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    text-align: center;
    background-color: #fe82fe;
    border: 2px solid #fe82fe;
    font-size: 16px;
    color: #000;
    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;
    border-radius: 100px;
}

.cp_box input {
    display: none;
}

.cp_box .cp_container {
    overflow: hidden;
    height: 400px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cp_box input:checked + label {
    /* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box input:checked + label:after {
    font-family: FontAwesome;
    content: '\f139'' 閉じる';
}

.cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 80px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.acbox {
    width: auto;
    font-size: 0px;
    /* ラベルと開く部分を分離する時は数値を入れる */
    position: relative;
    text-align: center;
}

.acbox label {
    margin: 0 auto;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.acbox label:hover {}

.acbox input {
    display: none;
}

.acbox label:after {
    width: 100%;
    color: #000;
    font-family: FontAwesome;
    content: '\f13a''スクールバスでお越しの方はこちら';
    font-weight: 600;
    display: inline-block;
    text-align: center;
    background-color: #fe82fe;
    border: 2px solid #fe82fe;
    font-size: 16px;
    color: #000;
    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;
    border-radius: 100px;
}

.acbox input:checked ~ label::after {
    font-family: FontAwesome;
    content: '\f139'' 閉じる';
}

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

.acbox input:checked ~ .acbox-under {
    margin-top: 25px;
    height: auto;
    /* 開いた部分の枠内の余白 */
    border-radius: 0px;
    /* 開いた部分の背景色 */
    opacity: 1;
}

.acbox input:checked ~ label {
    /* クリック後のラベルの背景色 */
}

.acbox-under {
    font-size: 16px;
    /* 開いた部分の文字サイズ */
    color: #555555;
    /* 開いた部分の文字色 */
    text-align: left;
}

.acbox2 {
    width: auto;
    font-size: 0px;
    /* ラベルと開く部分を分離する時は数値を入れる */
    position: relative;
    text-align: center;
}

.acbox2 label {
    margin: 0 auto;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.acbox2 label:hover {}

.acbox2 input {
    display: none;
}

.acbox2 label:after {
    width: 100%;
    color: #000;
    font-family: FontAwesome;
    content: '\f13a''駐車場はこちら';
    font-weight: 600;
    display: inline-block;
    text-align: center;
    background-color: #fe82fe;
    border: 2px solid #fe82fe;
    font-size: 16px;
    color: 000;
    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;
    border-radius: 100px;
}

.acbox2 input:checked ~ label::after {
    font-family: FontAwesome;
    content: '\f139'' 閉じる';
}

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

.acbox2 input:checked ~ .acbox-under {
    margin-top: 25px;
    height: auto;
    /* 開いた部分の枠内の余白 */
    border-radius: 0px;
    /* 開いた部分の背景色 */
    opacity: 1;
}

.acbox2 input:checked ~ label {
    /* クリック後のラベルの背景色 */
}

.cp_container .shop_card li {
    box-shadow: none;
    border: 1.5px solid #000;
}

ul.float_bnr {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    width: 100%;
    z-index: 99;
}

ul.float_bnr li {
    width: calc(100% / 3 - 20px);
    background: none !important;
}

ul.float_bnr li a,
ul.float_bnr_sp li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

ul.float_bnr li a:hover,
ul.float_bnr_sp li a:hover {
    opacity: 0.8;
}

ul.float_bnr_sp {
    padding: 0 65px;
    margin-top: 20px;
}

.bnr_come {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
    padding: 2px 10px;
    min-width: 120px;
    width: 100%;
    color: #ed6d81;
    font-size: 16px;
    background: #fff;
    text-align: center;
    font-weight: 600;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.bnr_come:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
}

ul.bottom_btn {
    position: fixed;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    z-index: 9;
}

ul.bottom_btn li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 18px;
    padding: 5px 10px;
}

ul.bottom_btn li {
    width: calc(100% / 2);
}


.bigger {
    font-size: 35px !important;
}


.shop_card,
.comedy,
.busmap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.shop_card::after {
    content: "";
    display: block;
    width: calc(100% / 3 - 25px);
}

.shop_card li {
    border-radius: 20px;
    overflow: hidden;
    background: #fff8e0;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
}

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

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

.comedy li:nth-child(n+2) {
    margin-top: 50px !important;
}

.shop_card li:nth-child(n+2),
.comedy li:nth-child(n+2),
.busmap li:nth-child(n+2) {
    margin-top: 0;
}

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

.shop_card li h3 {
    text-align: center;
    color: #000;
    background: #fe82fe;
    padding: 15px 5px;
    font-size: 1.5em;
    line-height: 1em;
}

.card_content {
    padding: 20px;
}

.small_txt {
    font-size: 12px;
}

.profbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff8e0;
    border: 1.5px solid #000;
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}

.prof_l {
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
}

.prof_l2 {
    width: 20%
}

.prof_r {
    width: 60%;
}

.prof_r2 {
    width: 80%;
}

.prof_r h3,
.prof_r2 h3 {
    color: #000;
    font-size: 1.7rem;
    padding-left: 15px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #000;
    margin-bottom: 10px;
    line-height: 1em;
    font-weight: 900;
}

.prof_r h3 {
    text-align: left
}

.prof_r p,
.prof_r2 p {
    margin-left: 15px;
}

.ttl_box {
    text-align: center;
}

h2.area_ttl {
    position: relative;
    display: inline-block;
    padding: 0 45px;
    margin: 0 auto;
    font-size: 30px;
    color: #fe82fe;
    margin-bottom: 25px;
}

h2.area_ttl:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    background-color: #fe82fe;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

h2.area_ttl:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    background-color: #fe82fe;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    margin-bottom: 50px;
}

h2.area_ttl:before {
    left: 0;
}

h2.area_ttl:after {
    right: 0;
}

.bus {
    text-align: center;
    margin-bottom: 20px;
}

.bus h3 {
    color: #fe82fe;
    border: 2px solid #fe82fe;
    padding: 10px 15px;
    text-align: center;
    display: inline-block;
    min-width: 250px
}

.busmap li h4 {
    color: #fe82fe;
    text-align: center;
    border: 2px solid #fe82fe;
    border-radius: 100px;
    margin-bottom: 20px;
}

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

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

.busroute {
    margin-top: 20px;
    text-align: center;
}

.busroute p {
    text-align: center;
    color: #22b573;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px
}

.busstop {
    border: 2px solid #22b573;
    padding: 5px 15px;
    border-radius: 100px;
}

.bus_timebox {
    margin-top: 50px;
}

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

.bus_time,
.bus_time td,
.bus_time th {
    border: 1px solid #000;
    border-collapse: collapse;
}

.bus_time td,
.bus_time th {
    padding: 3px;
    width: 30px;
    height: 25px;
}

.bus_time th {
    background: #000;
    color: #fff;
}

.bus_time td {
    background: #fff;
}

.station th {
    background: #ffd9ff;
    color: #000;
}

.live {
    background: #000;
    margin-right: 10px;
    padding: 0.1em 0.5em;
    border-radius: 100px;
    color: #fff;
    font-size: 0.5em;
    vertical-align: middle;
}

.time_table {
    width: 100%;
    border: 1px solid #000 !important;
    border-radius: 10px;
    overflow:
}

.time_table,
.time_table td,
.time_table th {
    border: 1px solid #000 !important;
    border-collapse: collapse;
}

.time_table td,
.time_table th {
    padding: 15px;
    height: 25px;
    text-align: center;
}

.time_table td {
    border-bottom: 1px solid #000;
    border-top: none;
    border-right: none;
    border-left: none;
    background: #fff;
}

.time_table td h2 {
    color: #000;
    font-size: 16px;
    line-height: 1.5em;
}

.tttd_last {
    border: none !important;
    background: #fff;
}


th.tt_time {
    background: #ffd9ff;
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid #000;
    border-top: none;
    border-right: none;
    border-left: none;
}

.tt_time_last {
    background: #60a3bc;
    color: #fff;
    font-size: 16px;
    border: none !important;
}

.tt_seki_ttl,
.tt_kani_ttl {
    font-size: 16px;
    color: #000;
    border: none !important;
}

.tt_seki_ttl {
    background: #000;
    color: #fff;
}

.tt_kani_ttl {
    background: #fe82fe;
}

.tt_kani_ttl:nth-child(2) {
    border-left: 1px solid #000 !important;
}

.even {
    background: #fbf8f0;
}

.odd {
    background: #fefcf9;
}

.daybox {
    text-align: center;
}

.daybox h2 {
    font-size: 18px;
    color: #fff;
    background: #0071bc;
    display: block;
    width: 100px;
    border-radius: 100px;
    margin: 0 auto 15px;
}

.daybox img {
    max-width: 60%;
}

.course {
    font-size: 16px;
}

ul.mov_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px;
    margin-top: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

ul.mov_ttl li {
    margin-top: 0 !important;
}

ul.mov_ttl li:first-child {
    width: 30%;
}

ul.mov_ttl li:last-child {
    width: 68%;
}

ul.mov_ttl li h2 {
    line-height: 1em;
    color: #26935a;
    font-size: 2em;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

ul.mov_ttl li h2 span {
    font-size: 0.5em;
    display: inline-block;
}

.whtbox {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}

.whtbox h2 {
    color: #0071bc;
    text-align: center;
}

.message_box:nth-child(n+2) {
    margin-top: 30px;
}

.team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
}

.team_pic {
    width: 49%;
}

.pre h3 {
    font-size: 25px;
    border: 1px solid #000;
    padding: 30px;
}

.stage_type {
    color: #000;
    background: #fe82fe;
    padding: 10px;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 10px
}

.calm_2 li {
    width: calc(100% / 2 - 20px);
    border: 1.5px solid #000;
}

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

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

.ticket {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    margin-left: 15px
}

.ticket h2 {
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7em;
}

.ticket p {
    margin: 0;
    font-size: 12px;
}

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

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

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

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

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

.footer_btm {
    background: #000;
    padding: 10px 0;
    color: #fff;
    font-size: 10px;
}

#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% / 2 - 20px);
}

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

/*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;
    }

    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: rgba(0, 0, 0, 0);
        transition: top 0.65s ease-in;
        -webkit-transition: top 0.65s ease-in;
        -moz-transition: top 0.65s ease-in;
    }



    #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;
    }


    .event_in {
        margin-left: 0;
    }

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

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

    /*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_inner {
        width: 80%;
    }

    .flex_box a,
    .tab_content_description .flex_box li,
    .flex_box_line li:nth-child(1) .flex_box p,
    .octype img,
    .flex_box_line li:nth-child(2) .flex_box p,
    ul.float_bnr li {
        width: 100%;

    }

    .top_right,
    .top_left {
        height: 50vh;
    }

    .top_right li {
        height: 33.3333vh !important;
    }

    .octype .flex_box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .flex_box_line,
    .flex_box_noline,
    .flex_box,
    .tab_content_description .flex_box li,
    .adv_content,
    ul.float_bnr,
    ul.mov_ttl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex_box_line li,
    .flex_box_noline li,
    .adv_content li,
    ul.mov_ttl li:first-child,
    ul.mov_ttl li:last-child {
        width: 100%;
    }

    ul.float_bnr {
        position: static;
    }

    .bnr_come {
        padding: 10px;
        margin-bottom: 5px;
        font-size: 12px;
    }

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

    .top_copy ul li h3 {
        font-size: 11px;
    }

    .tab_item {
        font-size: 1rem;
        line-height: 70px;
        height: 70px;
    }

    .tabs {
        box-shadow: 10px 5px 0px 0px rgba(0, 0, 0, 1);
    }

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

    .flex_box_line li:nth-child(1) .flex_box p:nth-child(n+2),
    .flex_box_line li:nth-child(2) .flex_box p:nth-child(n+2) {
        margin-top: 15px;
    }

    .flex_box_line li:nth-child(2),
    .adv_content li:nth-child(n+2),
    .flex_box_noline li:nth-child(n+2) {
        margin-top: 50px;
    }

    .adv_ttl {
        font-size: 28px;
    }

    .feat_ttl h3 {
        text-align: center;
    }

    .feat_icon {
        margin: 0 0 10px 0;
        display: inline-block;
    }

    a.menulist {
        font-size: 15px;
    }


    .shop_card li,
    .comedy li,
    .busmap li {
        width: calc(100% / 1 - 0px);
    }

    .shop_card li,
    .comedy li {
        flex-direction: column;
    }

    .profbox {
        padding: 1rem;
    }

    .prof_l,
    .prof_r {
        width: 100%;
    }

    .prof_l {
        margin-bottom: 20px;
    }

    .shop_card li:nth-child(n+2),
    .comedy li:nth-child(n+2),
    .busmap li:nth-child(n+2) {
        margin-top: 50px !important;
    }

    .busstop {
        display: inherit;
    }

    h2.area_ttl {
        font-size: 4vw;
        padding: 0 40px;
    }

    .tab_content {
        padding: 25px;
    }

    .event_ttl h2 {
        font-size: 28px;
    }

    .prof_r h3,
    .prof_r2 h3 {
        font-size: 1.2rem;
        padding-left: 0;
    }

    .prof_r p,
    .prof_r2 p {
        margin-left: 0;
    }

    .map_box img {
        width: 100%;

    }

    .bus_timebox .bus_time,
    .time_table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

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

    .top_comment {
        font-size: 1.1rem;
        line-height: 2.5rem;
    }

    a.btn_main {
        font-size: 12px;
    }

    .alart_box dl {
        flex-direction: column;
    }

    .alart_box dl dd {
        width: 100%;
    }

    .alart_box dl dt {
        width: 40%;
        margin-bottom: 10px;
    }

    .alart_box dl dd h2 {
        text-align: center;
        font-size: 2em
    }

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

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

}
