@charset "utf-8";
/* ---------------------------
共通スタイル
-------------------------------*/
*, *::before, *::after{
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	height: 100%;
	position: relative;
    -webkit-text-size-adjust: 100%;
}
body{
	font-family:'メイリオ', 'Meiryo',noto-sans-cjk-jp,'游ゴシック体',YuGothic,'Yu Gothic',sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
	color:#333;
	margin: 0 auto;
	line-height: 1;
	position:relative;
	background: url(../img/common/bg_pc.jpg) repeat center top/auto;
	background-attachment: fixed;
	min-height: 100vh;
	z-index: -2;
}

img{
	width: 100%;
	max-width: 100%;
    height: auto;
}
a img{
    transition: 0.3s;
}
a:hover img{
    opacity: 0.5;
  }
.main{
    z-index: 9999;
    position: relative;
}
strong{
    font-weight: bold;
}
.t-center{
    text-align: center;
}
a.link{
    text-decoration: underline;
}
.white{
    color: #fff;
}
.green{
    color:#005557;
}
.l-green{
    color: #008b92;
}
.w-green{
    color: #d9e7e8;
}
.red{
    color: #e94829;
}
.anchor{
	display: block;
	padding-top: 100px;
	margin-top: -100px;
}
a.disabled{
    pointer-events: none;
    opacity: 0.5;
  }
  @media screen and (max-width:768px) {
    .anchor{
        display: block;
        padding-top: 80px;
        margin-top: -80px;
    }
  }
@media screen and (max-width:600px) {
    body{
        font-size: 14px;
        font-size: 1.4rem;
    }
}
/* ---------------------------
レイアウトスタイル
-------------------------------*/
.sp__container{
    max-width: 768px;
    background: #009fa8;
    margin: 0 auto;
    z-index: -2;
    position: relative;
    -moz-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.3);
}
section{
    padding:15% 0;
}
.sec-inner{
    padding:0 4%;
}
@media screen and (max-width: 768px) {
    .sp__container{
        width: 100%;
    }
}
@media screen and (min-width:601px) {
    .pc{
        display: block;
    }
    .sp{
        display: none;
    }
}
@media screen and (max-width:600px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
/* ---------------------------
タイトルスタイル
-------------------------------*/
.heading{
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    margin-bottom:90px;
}
.heading::after{
    content:"";
    background: url(../img/common/heading_ud.svg) no-repeat;
    background-size: 50px 4px;
    width:50px;
    height:4px;
    position: absolute;
    left:0;
    right:0;
    bottom:-45px;
    margin:auto;
}
.heading span{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.6rem;
    font-style: italic;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom:10px;
}
@media screen and (max-width: 600px) {
    .heading{
        font-size: 1.2rem;
        margin-bottom:60px;
    }
    .heading::after{
        bottom:-30px;
    }
    .heading span{
        font-size: 2.4rem;
    }
}
/* ---------------------------
ボタンスタイル
-------------------------------*/
.btn{
    display: block;
    width:80%;
    text-align: center;
    color: #fff;
    padding:3%;
    margin:10% auto 0;
    position: relative;
}
.btn::after{
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    position: absolute;
    top:0;
    bottom:0;
    right:15px;
    margin:auto;
}
.btn.btn-border{
    border:1px solid #fff;
}
.btn.btn-black{
    background: #000;
}
@media screen and (max-width:600px) {
    .btn::after{
        width: 7px;
        height: 7px;
    }
}
/* ---------------------------
ヘッダー
-------------------------------*/
.header{
    position: relative;
}
/* ---------------------------
グローバルナビ 
-------------------------------*/
.header .g-nav.m_fixed {
    position: fixed;
	left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    max-width: 768px;
    margin: auto;
}
.header .g-nav ul{
    display: flex;
    background: #000;
}
.header .g-nav::-webkit-scrollbar { 
    height: 5px; 
} 
.header .g-nav::-webkit-scrollbar-track { 
    background: transparent; 
} 
.header .g-nav::-webkit-scrollbar-thumb { 
    background: #d9e7e8; 
    border-radius: 5px;
}
.header .g-nav ul li{
    width: 16.66%;
}
.header .g-nav ul li:not(:last-of-type){
    border-right:1px solid #009fa8;
}
.header .g-nav ul li a{
    display: block;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    padding: 19% 0;
    height: 100%;
}
.header .g-nav ul li a .icon{
    height: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.header .g-nav ul li a img{
    opacity: 0.5;
    display: block;
}
.header .g-nav ul li.item-home a img{
    width:31.2%;
}
.header .g-nav ul li.item-news a img{
    width:31.2%;
}
.header .g-nav ul li.item-about a img{
    width:31.2%;
}
.header .g-nav ul li.item-activity a img{
    width:35.5%;
}
.header .g-nav ul li.item-ticket a img{
    width:35.5%;
}
.header .g-nav ul li.item-calendar a img{
    width:35%;
}
.header .g-nav ul li.item-access a img{
    width:35%;
}
.header .g-nav ul li.item-faq a img{
    width:31.2%;
}
.header .g-nav ul li a span{
    display: block;
    margin-top:5%;
}
@media screen and (max-width: 600px) {
    .header .g-nav ul li a{
        font-size: 1rem;
    }
}
@media screen and (max-width: 414px){
    .header .g-nav ul li a .icon{
        height:60%;
    }
}
/* ---------------------------
フッター
-------------------------------*/
.footer .footer-inner{
    padding:0 4%;
}
.footer .banner-area{
    background:#008a92;
    padding:15% 4%;
}
.footer .banner-area figure:not(:first-of-type){
    margin-top: 2%;
}
.footer .banner-area figure a{
    display: block;
}
.footer .footer-nav-area{
    background: #005557;
    padding-top: 10%;
}
.footer .footer-nav-area .footer-nav a{
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    padding:15px 4%;
    border-top:1px solid #fff;
}
.footer .footer-nav-area .footer-nav a.border-bottom{
    border-bottom:1px solid #fff;
}
.footer .footer-nav-area .footer-nav a:after{
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    position: absolute;
    top:0;
    bottom:0;
    right:10px;
    margin:auto;
}
.footer .footer-nav-area .footer-nav .flex-box{
    display: flex;
}
.footer .footer-nav-area .footer-nav .flex-box a.half{
    width:50%;
}
.footer .footer-nav-area .footer-nav .flex-box a.half:first-of-type{
    border-right:1px solid #fff;
}
.footer .footer-nav-area figure{
    max-width: 30%;
    margin:10% auto;
}
.footer .footer-nav-area .copy{
    color: #fff;
    font-size: 1rem;
    background: #000;
    padding:5px;
    text-align: center;
}
@media screen and (max-width:600px) {
    .footer .footer-nav-area .footer-nav a:after{
        width: 7px;
        height: 7px;
    }
}

/* ---------------------------
ページトップボタン
-------------------------------*/
#page-top{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999999;
    width:60px;
    height: 60px;
}
#page-top a{
    display: block;
}
/* ---------------------------
アコーディオン
-------------------------------*/
.ac { 
    width: 100%; 
    margin: 0 auto; 
} 
.ac-parent { 
    background-color: #005557; 
    color: #fff; 
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding-right:8%;
    line-height: 1.3;
}
.ac-parent:after { 
    content: ""; 
    display: inline-block; 
    position: absolute; 
    top: 45%; 
    right: 4%; 
    width: 10px; 
    height: 10px; 
    border-right: 1px solid #fff; 
    border-bottom: 1px solid #fff; 
    transform: translateY(-50%) rotate(45deg); 
    transition: .3s; 
} 
.ac-parent.open:after { 
    transform: rotate(225deg); 
}
.ac-parent .numb{
    display: inline-block;
    background: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-right:10px;
    padding:3% 0;
    width:13%;
    flex-shrink: 0;
}
.ac-child { 
    display: none; 
    padding: 2em 1em; 
    background-color: #009fa8; 
}
.ac-child span.caution{
    display: block;
    position: relative;
    padding-left: 1.5em;
}
.ac-child span.caution::before{
    content: "※";
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    margin:auto;
}
.ac-child ul.list li{
    position: relative;
    padding-left:1.5em;
}
.ac-child ul.list li::before{
    content: "・";
    position: absolute;
    top:0;
    bottom:0;
    margin:auto;
    left:0;
}
@media screen and (max-width:600px) {
    .ac-parent {
        font-size: 1.6rem;
    }
    .ac-parent:after{
        width: 7px;
        height: 7px;
    }
    .ac-parent .numb{
        font-size: 2.1rem;
    }
}
/* ---------------------------
注意事項共通スタイル
-------------------------------*/
p.intro-txt{
    line-height: 1.7;
    margin-bottom:4%;
}
.notes-wrap dt{
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    background: #006467;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:4%;
    line-height: 1.3;
}
.notes-wrap dt img{
    width:27px;
    margin-right:10px;
}
.notes-wrap dd{
    background: #fff;
    padding:4% 4% 16%;
    line-height: 2;
}
.notes-wrap dd h3{
    color:#005557;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    border-left:5px solid #008b92;
    padding: 3%;
    background: #d9e7e8;
    border-bottom: 3px solid #c3d4d5;
    margin-bottom: 4%;
}
.notes-wrap dd h3 span{
    font-size: 1.2rem;
    margin-left:0.5em;
}
.notes-wrap dd span.caution,
.tickets .notes-wrap dd strong.caution{
    position: relative;
    padding-left:1.5em;
    display: block;
}
.notes-wrap dd span.caution::before,
.tickets .notes-wrap dd strong.caution::before{
    content: "※";
    position: absolute;
    top:0;
    bottom:0;
    margin:auto;
    left:0;
}
.notes-wrap dd .inner:not(:last-of-type){
    margin-bottom:12%;
  }
.notes-wrap dd .box{
    border-top: 1px solid #d9e7e8;
    padding:4% 0;
}
.notes-wrap dd .box:first-of-type{
    margin-top:4%;
}
.notes-wrap dd .box h4{
    font-weight: bold;
}
.notes-wrap dd ul li{
    position: relative;
    padding-left:1.5em;
}
.notes-wrap dd ul li::before{
    position: absolute;
    top:0;
    bottom:0;
    margin:auto;
    left:0;
}
.notes-wrap dd ul.list li::before{
    content: "・";
}
.notes-wrap dd ul.list li ul li{
    font-size: 1.4rem;
}
.notes-wrap dd ul.list li ul li::before{
    content: "";
    width:5px;
    height:5px;
    border: 1px solid #333;
    border-radius: 100%;
}
.notes-wrap dd ul.caution li::before{
    content: "※";
}
.notes-wrap dd ol{
    margin-left: 2.5em;
}
.notes-wrap dd ol li{
    list-style-type: none;
	counter-increment: cnt;
}
.notes-wrap dd ol li::before{
    content: "(" counter(cnt) ") ";
    display:inline-block;
	margin-left:-2em; 
	width: 2em;
}
@media screen and (max-width:600px) {
    .notes-wrap dt{
        font-size: 1.6rem;
    }
    .notes-wrap dt img{
        width:17px;
    }
    .notes-wrap dt{
        font-size: 1.6rem;
    }
    .notes-wrap dd{
        font-size: 1.2rem;
    }
    .notes-wrap dd h3{
        font-size: 1.6rem;
    }
    .notes-wrap dd h3 span{
        font-size: 1rem;
    }
    .notes-wrap dd ul.list li ul li{
        font-size: 1.1rem;
    }
}
/* ---------------------------
Twitter
-------------------------------*/
section.twitter{
    background: #009fa8;
    padding: 15% 4%;
  }
.twitter .inner{
margin: 0 auto;
overflow-y:scroll;
width: 100%;
height: 50vh;
}
.timeline-Header{
display: none !important;
}
.timeline-Widget{
border-radius: 0 !important;
}
.twitter .inner::-webkit-scrollbar {
width: 5px;
}
.twitter .inner::-webkit-scrollbar-track {
background-color: #009fa8;
}
.twitter .inner::-webkit-scrollbar-thumb {
background-color: #d3d3d3;
}
@media screen and (min-width: 414px) {
.twitter .inner{
    height: 70vh;
}
}

/******************************
パンくずリスト
******************************/
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 1rem;
  margin: 0;
}

.breadcrumb li + li::before {
  content: ">";
  padding: 0 0.5em;
  color: #333;
}

.breadcrumb li a {
  text-decoration: none;
  color: #333;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}