@charset "UTF-8";
/* ===================================================================
  2023
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');


@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
    
@keyframes zoom {
  0% {
    transform: scale(100%);
  }
  60% {
    transform: scale(130%);
  }
  100% {
    transform: scale(120%);
  }
}


/*----------------------------------------------------
	全体
----------------------------------------------------*/
html, body {
  padding: 0;
  margin: 0; }

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", YuGothic, Avenir, Verdana, Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Roboto, Meiryo, sans-serif;
  font-size: 18px;
  line-height: 2;
  color: #FFF;
  position: relative;
  -webkit-text-size-adjust: none;
}
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%; 
}
ul, li {
  list-style: none;
  margin: 0;
  padding: 0; }

body * {
  text-shadow: none; }

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

img { max-width: 100%; }

.tC { text-align: center; }
.tL { text-align: left; }
.tR { text-align: right; }

.m-left { margin-right: auto; }
.m-right { margin-left: auto; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

/* link
----------------------------------------------------*/
a, a:active, a:visited, a:hover {
  color: inherit;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.6); }

a {
  color: #FFF;
  transition: all .3s;
}
a:hover {
    color: #8e7c88;
    text-decoration: none;
}
*:focus {
  outline: none;
}

img.link {
  opacity: 1;
  transition: all .3s; }
  img.link:hover {
    opacity: 0.6; }

/*----------------------------------------------------
	テキスト
----------------------------------------------------*/
h1 {
  padding: 0;
  margin: 0;
}
h2 {
  font-size: 300%;
  padding: .5em 0;
  text-align: center;
  position: relative;
  font-family: 'Yeseva One', cursive;
}
h2 span {
    font-size: 30%;
    font-weight: normal;
    display: block;
}
h3 {
  font-size: 200%;
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 2;
  margin: 0 0 1em 0;
  padding: .25em 0;
  text-align: center;
}

h4 {
  font-size: 150%;
  font-weight: bold;
  margin: 1em 0;
}

h5 {
    font-size: 130%;
    font-weight: bold;
    padding: .25em 0;
}
h5.underline {
    font-size: 130%;
    font-weight: bold;
    padding: .5em 0;
    border-bottom: 1px solid #61667A;
}
h6 {
    font-size: 120%;
    font-weight: bold;
    padding: .25em 0;
}

p {
  margin: 0 0 1em 0; }
  
.font-e {
    font-family: 'Yeseva One', cursive;
}

.font-s {
  font-size: 85%;
  line-height: 1.5;
}
.font-m {
  font-size: 95%;
  line-height: 1.5;
}
.font-l {
  font-size: 120%;
}

.sp-br {
  display: none; }
  @media (max-width: 480px) {
    .sp-br {
      display: block; } }

.pc-br {
  display: block; }
@media (max-width: 480px) {
    .pc-br {
      display: none; } }

@media (max-width: 768px) {
  body { font-size: 16px; }
}
@media (max-width: 480px) {
  body { font-size: 14px; }
}
.row {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between; }

.row .col-2 {
  width: calc((100% - 5%) / 2); }
    

/*	余白
----------------------------------------------------*/
.m10 { margin: 1em; }
.m10t { margin-top: 1em; }
.m15t { margin-top: 1.5em; }
.m20t { margin-top: 2em; }
.m05b { margin-bottom: 0.5em; }
.m10b { margin-bottom: 1em; }
.m15b { margin-bottom: 1.5em; }
.m20b { margin-bottom: 2em; }
.m30b { margin-bottom: 3em; }
.m40b { margin-bottom: 4em; }
.p10 { padding: 1em 0.5em; }
.p15t { padding-top: 1.5em; }
.p20tb { padding: 2em 0; }
.p20 { padding: 1em 2em; }


/*	アニメーション用
----------------------------------------------------*/

/* slide Up */
.delighter.ani-su {
    transition: all .8s ease-out;
    transform: translateY(20%);
    opacity: 0;
}
.delighter.ani-su.started {
    transform: none;
    opacity: 1;
}

/* bg */
.delighter.bg-scroll {
    transition: all 10s ease-out;
    transform: translateY(20%);
    opacity: 0;
}
.delighter.bg-scroll.started {
    transform: none;
    opacity: 1;
}

/* zoom */
.delighter.zoom {
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.575);
    scale: .5;
    opacity: 0;
}
.delighter.zoom.started {
    transform: none;
    scale: 1;
    opacity: 1;
}



/*----------------------------------------------------
	共通
----------------------------------------------------*/
#wrapper {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top:0;
}

.contents {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5em;
    position: relative;
    z-index: 1;
}
section {
    width: 100%;
    max-width: 620px;
    padding: 1em 1.5em;
    margin: 0 auto;
}

.sp-text, .sp-img {
  display: none !important; }

.pc-text, .pc-img {
  display: inherit !important; }

@media (max-width: 480px) {
  .sp-text, .sp-img {
    display: inherit !important; }

  .pc-text, .pc-img {
    display: none !important; } }


/*----------------------------------------------------
	list
----------------------------------------------------*/

ul.def-type {
    margin-left: 16px;
    margin-bottom: 15px;
}
ul.def-type li {
    margin: 5px 0 10px 0;
    padding-left: 5px;
    list-style-type: disc;
    border: none;
    line-height: 1.5;
}

ol.def-type {
    margin-left: 16px;
    margin-bottom: 15px;
}
ol.def-type li {
    margin: 5px 0 10px 0;
    padding-left: 5px;
    list-style-type: decimal;
    border: none;
    line-height: 1.5;
}


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

/*menu*/
.menu-nav {
    height: 30px;
    width: 30px;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 13px;
    transition: all .3s;
    display: flex;
    z-index: 9999;
}
.menu-nav:hover {
    cursor: pointer;
}

.menu {
  height: 24px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  z-index: 9999; }

.menu__line {
  background: #4969CD;
  display: block;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%; }

.menu__line--top.active {
  top: 10px;
  transform: rotate(45deg); }

.menu__line--center {
  top: 10px; }
  .menu__line--center.active {
    transform: scaleX(0); }

.menu__line--bottom {
  bottom: 0; }
  .menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg); }

@media (max-width: 1024px) {
  .c_head .h-nav {
    display: flex; }

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

  .c_head .menu-nav {
    display: flex; } }
@media (max-width: 480px) {
  .c_head .h-nav {
    display: none; }

  .c_head .menu-nav {
    display: flex; } }

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.gnav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 10px;
  z-index: 9998;
  /*overflow-y: scroll;*/
}
.gnav .gnav-inner {
    background: #D6FC16;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative; 
}
.gnav section {
    padding: 1em 1.5em;
    padding-top: 30px;
    padding-bottom: 0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Yeseva One', cursive;
}
.gnav section ul {
    width: 100%;
}
.gnav section li {
    padding: 0;
    font-size: 140%;
}
.gnav section li a {
    text-decoration: none;
    color: #4969CD;
}
.gnav section li a:hover {
    text-decoration: none;
    color: #4969CD;
    opacity: 0.3;
}

.gnav section li .preparation {
    color: #4969CD;
    opacity: 0.3;
}


/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
    width: 100%;
    padding: 0;
    padding-top: 3em;
    margin: 0;
    color: #61667A;
    background: #FFF;
}
.sns-bn img{
    width: 80px;
}
@media (max-width: 480px) {
    .sns-bn img { width: 60px; }
}
footer .copyright {
    width: 100%;
    font-size: 90%;
    text-align: center;
    padding: 3em 2em;
}
@media (max-width: 480px) {
    footer .copyright { font-size: 80%; }
}
footer .copyright a { text-decoration: none; }

/* page-top */
#page-top {
    position: relative;
    border-top: 1px solid #61667A;
    padding: 1.5em;
    text-align: center;
}
#page-top img {
    width: 100%;
    max-width: 50px;
}
#page-top .pagetop a {
    transition: all .5s;
}
#page-top .pagetop a:hover {
    opacity: .7;
}

/*----------------------------------------------------
　　メイン
----------------------------------------------------*/

.bg {
    background-image: url(../../img/noise.svg), linear-gradient(#fef4c9 2%, #70e9e5 3%, #70e9e5 20%, #70e9e5 25%, #70e9e5 65%, #bee745 75%, #fef4c9 98%, #fef4c9);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
}

#bg {
    background-image: url(../../img/noise.svg), linear-gradient(#fef4c9 5%, #fef4c9 10%, #70e9e5 35%, #70e9e5 82%, #70e9e5);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    width: 100%;
    height: 100%;
    position: relative;
}
#bg::after {
    content: "";
    background-image: url(../../img/noise.svg), linear-gradient(#fef4c9 5%, #fef4c9 10%, #70e9e5 35%, #70e9e5 82%, #70e9e5);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -2;
}

.home-img {
    width: 100%;
    height: auto;
    background-image: url(../../img/noise.svg), linear-gradient(#fef4c9 5%, #fef4c9 10%, #70e9e5 35%, #70e9e5 82%, #70e9e5);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    position: relative;
}
.home-img .cloud-img {
    width: 100%;
    position: fixed;
    top: 30%;
    left: 0;
    margin: auto;
    text-align: center;
    overflow: hidden;
    mix-blend-mode: screen;
}
.home-img .cloud-img img{
    mix-blend-mode: screen;
    width: 100%;
    max-width: 800px;
    opacity: 0.9;
    animation-name: SlideUp;
	animation-duration: 2.5s;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

.home-img .home-img_inner {
    width: 100%;
    max-width: 700px;
    height: 100%;
    margin: 0 auto;
    padding: 1em 1em 6em 1em;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative
}
.home-img .home-img_inner .onsale {
    width: 120px;
    height: 120px;
    position: absolute;
    bottom: 0;
    right: 20px;
}

.home-img .home-img_inner .onsale {
    transition: all .5s;
}
.home-img .home-img_inner .onsale:hover{
    animation-name: zoom;
	animation-duration: 0.3s;
    animation-fill-mode: both;
}

.home-img .home-img_inner .main-img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 90%;
}
.home-img .home-img_inner .main-img h1 {
    position: absolute;
    top:38px;
    left:0;
    animation-name: fadeIn;
	animation-duration: 2.5s;
    animation-fill-mode: both;
}
.home-img .home-img_inner .event-info{
    animation-name: fadeIn;
	animation-duration: 2.5s;
    animation-delay: 1s;
    animation-fill-mode: both;
    margin-bottom: 1.5em;
}

.home-img .home-img_inner .date{
    animation-name: SlideUp;
	animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
}
.home-img .home-img_inner .place{
    animation-name: SlideUp;
	animation-duration: 2.5s;
    animation-delay: 2.5s;
    animation-fill-mode: both;
}
.home-img .home-img_inner .presented{
    animation-name: SlideUp;
	animation-duration: 3s;
    animation-delay: 3s;
    animation-fill-mode: both;
}


.home-img .home-img_inner.news-head {
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
    padding: 1em;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative
}
.home-img .home-img_inner .news-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding-top: 60%;
}
.home-img .home-img_inner .news-img h1 {
    position: absolute;
    top: 38px;
    left: 0;
}


.day-title {
    width: 100%;
    font-size: 200%;
    position: relative;
    display: inline-block;
    padding: 0 55px;
    margin-bottom: 2em;
    font-family: 'Yeseva One', cursive;
}

.day-title:before, .day-title:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30%;
    height: 1px;
    background-color: #FFF;
}

.day-title:before {
    left:0;
}
.day-title:after {
    right: 0;
}

/*----------------------------------------------------
　　about
----------------------------------------------------*/

#about {
    background: #FFF;
    color: #61667A;
}
.about-img {
    position: sticky;
    top: 0;
    z-index: 10;
}
.mainvisual {
    overflow-x: hidden;
}
.mainvisual .slide-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    padding: 0;
}
.mainvisual .swiper-slide {
    margin: 0;
    padding: 0;
}



.catch {
    padding: 6em 0;
    font-size: 120%;
}
.catch h4{
    letter-spacing: 1.5px;
    line-height: 2;
    color: #5CCCC6;
}

.w-block {
    background: #FFF;
    border-radius: 15px;
    padding: 2em;
    color: #61667A;
}
.movie-block {
    max-width: 1100px;
    margin: 60px auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .movie-block iframe {
    width: 100%;
    height: 100%;
  }

.artist-block {
    font-size: 95%;
}
.artist-block h3{
    font-size: 150%;
    margin-bottom: 2em;
}
.artist-block h3.capt{
    font-size: 150%;
    margin-bottom: 0;
    text-align: center;
}
.artist-block a {
    display: block;
}

.artist-block img.w65 {
    width: 65%;
    margin: 0 auto;
}

.artist-block a{
    position: relative;
    text-decoration: none;
    color: #FFF;
}
.artist-block a:hover{
    text-decoration: none;
    color: #FFF;
    opacity: .6;
}
.artist-block a::after {
    content: "+";
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border: 2px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-block .captn{
    font-size: 80%;
    margin-bottom: 6em;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; }

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%; }

.modal__content {
  background: #FFF;
  border-radius: 10px;
  left: 50%;
  padding: .5em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: scroll; }

.w-block a {
    text-decoration: none;
    color: #8e7c88;
}
.w-block a:hover {
    text-decoration: none;
    color: #8e7c88;
}
.artist01-modal-close,
.artist02-modal-close,
.artist03-modal-close,
.artist04-modal-close {
    font-size: 250%;
}
  
/*----------------------------------------------------
　　ticket
----------------------------------------------------*/
.ticket-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ticket-nav .btn2 {
    min-width: 150px;
    margin: 10px; 
}
.ticket-nav .btn2 a{
    padding: .5em 2em;
    background: #FFF;
    color: #61667A;
}
#ticket hr {
    border: 4px solid #FFF;
    border-radius: 2px;
}
#ticket h4 {
    margin: 0;
}
.ticket-info {
    padding: 0;
}
.ticket-info table{
    width: 100%;
    font-size: 120%;
    border-collapse: separate;
    border-spacing: 10px;
}
.ticket-info th{
    width: 60%;
    text-align: left;
    font-weight: normal;
    line-height: 1.5;
    vertical-align: top;
    margin-bottom: 10px;
}
.ticket-info td{
    width: 40%;
    text-align: right;
    line-height: 1.5;
    vertical-align: top;
    margin-bottom: 10px;
}
.ticket-info p{
    font-size: 120%;
    padding: 0 5px;
    margin: 0;
}
.ticket-info p.price{
    text-align: right;
}
p.att{
    font-size: 90%;
    line-height: 1.7;
    padding: 5px;
    margin: 0;
}
span.roundtrip {
    border:1px solid #959DBD;
    padding: 0px 5px;
    border-radius: 5px;
    font-size: 75%;
}
span.soldout {
    background: #4969CD;
    padding: 0px 5px;
    border-radius: 5px;
    font-size: 75%;
    color: #FFF;
}


.waku-line {
    border: 1px solid #FFF;
    border-radius: 10px;
    padding: 1.5em 1.5em 1em 1.5em;
}

.attention {
    border: 1px solid #4969CD;
    padding: 1em;
    color: #4969CD;
    font-size: 105%;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}

/*----------------------------------------------------
　　access
----------------------------------------------------*/

.menu label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 2%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 2%;
  top: 7%;
  bottom: 0;
  margin: auto;
}


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

h4.car {
    background: url("../../img/icon-car.png") no-repeat left center;
    background-size: 40px 40px;
    padding: 20px;
    padding-left: 48px;
    margin: 0;
    border-top: 1px solid #FFF;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}
h4.car:hover {
    background-color: rgba(255,255,255,.2);
}
h4.car::after{
    content:"";
    display:block;
    width: 15px;
    height: 15px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position:absolute;
    right: 5%;
    top: 0;
    bottom: 15%;
    margin: auto;
}
h4.car.active {
    border-bottom: 1px solid #FFF;
}
h4.car.active::after {
    top: 15%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

h4.train {
    background: url("../../img/icon-train.png") no-repeat left center;
    background-size: 40px 40px;
    padding: 20px;
    padding-left: 48px;
    margin: 0;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}
h4.train:hover {
    background-color: rgba(255,255,255,.2);
}

h4.train::after{
    content:"";
    display:block;
    width: 15px;
    height: 15px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position:absolute;
    right: 5%;
    top: 0;
    bottom: 15%;
    margin: auto;
}
h4.train.active::after {
    top: 15%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.car-info,
.train-info {
    padding: 1em .5em;
    display: none;
}

h6.train {
    background: url("../../img/icon-train.png") no-repeat left center;
    background-size: 30px 30px;
    padding: 15px;
    padding-left: 35px;
}
h6.parking {
    background: url("../../img/icon-parking.png") no-repeat left center;
    background-size: 30px 30px;
    padding: 15px;
    padding-left: 35px;
}



/*----------------------------------------------------
　　note
----------------------------------------------------*/
#notes {
    padding: 1.5em;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
#notes h2{
    font-size: 200%;
}
.notes-bg {
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    padding: 2em 0;
    color: #61667A;
}

h4.guideline {
    font-size: 110%;
    font-weight: normal;
    padding: 15px 5px;
    margin: 0;
    border-top: 1px solid #959DBD;
    color: #61667A;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}
h4.guideline:hover {
    background-color: rgba(255,255,255,.2);
}

h4.guideline::after{
    content:"";
    display:block;
    width: 15px;
    height: 15px;
    border-top: #61667A 2px solid;
    border-right: #61667A 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position:absolute;
    right: 5%;
    top: 0;
    bottom: 15%;
    margin: auto;
}
h4.guideline.active::after {
    top: 15%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.guideline-info {
    padding: 1em .5em;
    display: none;
    font-size: 95%;
    line-height: 1.7;
}
.guideline-info a {
    text-decoration: underline;
    color: #8e7c88;
}
.guideline-info a:hover {
    text-decoration: underline;
    color: #4969CD;
}


/* btn
----------------------------------------------------*/
.btn {
    margin: 1.5em 0;
    text-align: center;
}
.btn a {
    display: block;
    padding: .5em;
    text-decoration: none;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 40px;
    transition: all .3s; }
.btn a:hover {
    background: #FFF;
    color: #65ace2;
}

.btn2 {
    margin: 1.5em 0;
    text-align: center;
}
.btn2 a {
    display: block;
    padding: .5em;
    text-decoration: none;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 40px;
    transition: all .3s; }
.btn2 a:hover {
    background: #4969CD;
    color: #FFF;
}

.btn3 {
    margin: 1.5em 0;
    text-align: center;
}
.btn3 a {
    display: block;
    padding: .75em .5em;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    color: #4969CD;
    background: #D6FC16;
    border-radius: 40px;
    transition: all .3s;
}
.btn3 a:hover {
    background: #4969CD;
    text-decoration: none;
    color: #FFF;
}
.btn3 span {
    display: block;
    padding: .75em .5em;
    font-size: 110%;
    font-weight: bold;
    color: #4969CD;
    background: #D6FC16;
    border-radius: 40px;
    opacity: .4;
}
.btn4 {
    margin: 1.5em 0;
    text-align: center;
    display: block;
    padding: .75em .5em;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    color: #61667A;
    background: #e7e5e6;
    border-radius: 40px;
    transition: all .3s;
}


/*----------------------------------------------------
　　News
----------------------------------------------------*/

.head-news {
    padding: .75em 1em;
    margin: 0 auto;
    height: 62px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background: #ffffff;
}
.head-news img{
    width: auto;
    height: 40px;
    margin-right: 10px;
}
.head-news h4{
    font-size: 90%;
    margin: 0;
}
.head-news a{
    color: #4969CD;
}
.home-news_inner .swiper-container {
    width: 100%;
    height: auto;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.home-news_inner .swiper-container .swiper-wrapper {
    width: 100%;
    margin: 0 10px;
    position: relative;
    flex-wrap: nowrap;
}
.swiper-slide{
    padding: 0 5px;
}

#news {
    margin-bottom: 2em;
}
#news ul {
    border-top: 1px solid #FFF;
}
#news li {
    padding: 1em;
    border-bottom: 1px solid #FFF;
}
#news li h4{
    margin: 0;
}
#news li .update{
    font-size: 110%;
    font-weight: bold;
    padding: 2px;
}

#news-bg {
    background-image: url(../../img/noise.svg), linear-gradient(#febc94 50%, #f3ae8c 65%, #f3ae8c 75%, #afbebc 82%, #71cce8);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    width: 100%;
    height: 100vh;
    min-height: 1500px;
    position: relative;
}
#news-bg::after {
    content: "";
    background-image: url(../../img/noise.svg), linear-gradient(#71cce8 5%, #71cce8 12%, #71cce8);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -2;
}

.home-img2 {
    width: 100%;
    height: auto;
    background-image: url(../../img/noise.svg), linear-gradient(#66b1db 0%, #71cce8 70%, #febc94);
    background-repeat: repeat, no-repeat;
    background-position: top center, top center;
    background-size: 500px, auto;
    position: relative;
}
.home-img2 .home-img_inner {
    width: 100%;
    max-width: 700px;
    height: 100%;
    margin: 0 auto;
    padding: 1em 1em 4em 1em;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative
}
.home-img2 .home-img_inner .main-img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 85%;
}
.home-img2 .home-img_inner .main-img h1 {
    position: absolute;
    top:0;
    left:0;
}
.home-img2 .home-img_inner .main-img .event-info{
    position: absolute;
    top:0;
    left:0;
}

#news {
    margin-bottom: 2em;
}
#news section {
    background-color: #FFF;
    border-radius: 10px;
    padding: 1em 1.5em;
    margin-bottom: 2em;
    color: #61667A;
}
#news section .post{
    padding: 1em 0.5em;
}
#news section a {
    color: #61667A;
    transition: all .3s;
    text-decoration: underline;
  }
  #news section a:hover {
      color: #4969CD;
      text-decoration: none;
  }
#news section .update {
    text-align: center;
    letter-spacing: 2px;
    font-size: 100%;
    font-weight: bold;
    padding: 0.5em;
    border-bottom:  1px solid #61667A;
}
#news section .sml {
    font-size: 85%;
    padding: 0.5em;
    line-height: 1.5em;
}
#news section .listt {
    font-size: 100%;
    padding: 0 0.5em 0.25em;
    border-bottom:  1px solid #61667A;
}

/*----------------------------------------------------
　　News
----------------------------------------------------*/


@media (max-width: 480px) {
    .timetable .col-2{ width: 100%;}
}
