@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

body {
    background-color: #111B30;
}


#page-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
}

#page-top img {
    width: 100%;
    border-radius: 50%;
    transform: rotate(-90deg);
}

#page-top a {
    text-decoration: none;
    width: 60px;
    height: 60px;
    display: block;
    opacity: 0.9;
    transition: all .4s ease;
}

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

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 10;
}

.header.change-color {
    background-color: #111B30;/*スクロールしたあとのヘッダー背景色*/
    transition: 1s; /*滑らかに*/
}

.header-inner {
    width: 80%;
    height: 60px;
    display: flex;
}

.header-inner a {
    width: 5%;

}

.header-inner a img {
    width: 100%;
    margin-top: 2.5px;
    margin-left: 5px;
}

.header-inner h1 {
    font-size: 30px;
    margin-left: 10px;
    font-family: "Kosugi", sans-serif;
    color: #DBE5F2;
    margin-top: 15px;
    margin-left: 20px;
}

.header-nav {
    width: 50%;
    margin-left: auto;
    margin-right: 2vw;
}

/* .header-nav-items {
    display: flex;
} */


.nav-item_ticket {
	position: fixed;
	width: 100px;
    height: 60px;
    top: 0;
    right: 80px;
    padding-left: 1vw;
    padding-right: 1vw;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 10;/*ボタンを一番上にしている(押せなくなるから)*/
    background-color: #0d44bb;
    text-align: center;
}

.nav-item_ticket img {
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
}

.nav-item_ticket p {
    margin-top: 3px;
    font-size: 12px;
    color: #fff;
}


.nav-item_access {
	position: fixed;
	width: 100px;
    height: 60px;
    top: 0;
    right: 195px;
    padding-left: 8px;
    padding-right: 8px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 10;/*ボタンを一番上にしている(押せなくなるから)*/
    background-color: #002468;
    font-size: 1.1vw;
    text-align: center;
}

.nav-item_access img {
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
}

.nav-item_access p {
    margin-top: 3px;
    font-size: 12px;
    color: #fff;
}

/*ナビメニューのスタイルを指定*/
nav.NavMenu{
    position: fixed; /*表示位置を固定*/
	z-index: 14; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background-color: rgba(0, 0, 0, 0.8);
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}


/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
    position: fixed;
    top: 0;
    right: 0;
	width: 80px;
	height: 60px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 15;/*ボタンを一番上にしている(押せなくなるから)*/
    background-color: #DBE5F2;
}

.Toggle span {
	display: block;
	position: absolute;
    margin-top: 10px;
    margin-left: 20px;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}


/*↓↓↓ここからハンバーガーの中↓↓↓*/
.hamburger-touka {
    position: relative;
}

.hamburger-box {
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    padding-bottom: 2%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1vw;
}

.hamburger-left {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 7%;
}

.hamburger-left img {
    width: 50%;
}

.hamburger-left a::before {
    position: relative;
    display: block;
    width: 30%;
    text-align: left;
    text-decoration: none;
    color: #DBE5F2;
}

.hamburger-center {
    width: 37.5%;
    padding-top: 5%;
}

.hamburger-center-top a {
    position: relative;
    display: block;
    width: 75%;
    padding: 2% 0 3% 5%;
    text-align: left;
    background-color: #DBE5F2;
    border-radius: 15px;
    white-space: pre-wrap;
    text-decoration: none;
    font-size: 1.1vw;
    font-weight: 500;
    color: #111B30;
}

.hamburger-center-top a::before {
    position: absolute;
    border-right: 1px solid #111B30;
    border-top: 1px solid #111B30;
    bottom: 0;
    content: "";
    height: 7px;
    margin: auto;
    top: 0;
    left: 5;
    transform: rotate(45deg);
    transition: all .5s;
    width: 7px;
  }

.hamburger-center-top a:nth-of-type(2) {
    margin-top: 5%;
}

.hamburger-center-text {
    display: flex;
    width: 100%;
}

.hamburger-center-text p {
    display: block;
    width: 70%;
    margin-top: 5%;
    text-align: left;
    color: #DBE5F2;
    font-size: 1.2vw;
    font-weight: 600;
    border-bottom: 1px solid #DBE5F2;
}

.hamburger-center-text-left,.hamburger-center-text-right {
    width: 46%;
    margin-right: 2%;
    margin-top: 5%;
}


.hamburger-center-text a:nth-of-type(1) {
    margin-top: 5%;
}

.hamburger-center-text a {
    position: relative;
    display: block;
    width: 90%;
    margin-right: auto;
    text-align: left;
    font-size: 1vw;
    color: #DBE5F2;
}

.hamburger-center-text a::before {
    position: absolute;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    bottom: 0;
    content: "";
    height: 7px;
    margin: auto;
    top: 0;
    left: 0;
    transform: rotate(45deg);
    transition: all .5s;
    width: 7px;
}

.hamburger-right {
    width: 37.5%;
    padding-top: 5%;
}
/*↑↑↑ここまでハンバーガーの中↑↑↑*/



/*問い合わせ*/
h2 {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    height: 4vw;
    font-size: 2.4vw;
    text-align: center;
    color: white;
    background-color: #303030;
    font-weight: 300;
    font-family: "Noto Sans JP", sans-serif;
}

.toiawase-back {
    background-image: url(../images/f67af746d7cd8a9d3ce0ac1e752bf7cc.jpg);
    background-size: cover;
}

.front-box {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 3%;
    font-family: "Noto Sans JP", sans-serif;
}

.front-box p {
    padding-bottom: 2%;
    font-size: 1.1vw;
    white-space: pre-wrap;
    color: #fff;
}

.front-box a {
    display: inline-block;
    margin-left: 5%;
    color: #fff;
    font-size: 1.1vw;
}

.front-box a::before {
    content: "■　";
}

.front-box a:nth-of-type(1) {
    margin-top: 3%;
}

.front-box a:nth-of-type(2) {
    margin-top: 1%;
}

h3 {
    width: 95%;
    margin-top: 5%;
    padding-left: 2%;
    text-align: left;
    line-height: 2;
    color: #fff;
    font-size: 1.8vw;
    font-weight: normal;
    border-bottom: 1px solid #6986A8;
    border-left: 15px solid  #6986A8;
}

.toiawase-box {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#pukapuka {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47%;
    height: 20vh;
    margin-top: 2%;
    margin-right: 6%;
    background-color: rgba(254, 254, 254, 0.255);
    animation: pukapuka 10s infinite;
 }

 @keyframes pukapuka {
    0%{ border-radius: 50% 50% 70% 68% / 90% 80% 90% 90%; }
   20%{ border-radius: 60% 70% 70% 60% / 90% 70% 80% 80%; }
   40%{ border-radius: 50% 70% 60% 70% / 80% 80% 70% 70%; }
   60%{ border-radius: 40% 70% 50% 80% / 80% 70% 70% 60%; }
   80%{ border-radius: 50% 70% 50% 70% / 90% 80% 80% 70%; }
  100%{ border-radius: 50% 50% 70% 68% / 90% 80% 90% 90%; }
  }

#pukapuka p,#pukapuka2 p {
    position: absolute;
    top: 20%;
    left: 12%;
    font-size: 1.4vw;
    color: #fff;
    text-shadow: 0 0 5px #fff,0 0 10px #fff;
}

#pukapuka p:nth-of-type(2),#pukapuka2 p:nth-of-type(2) {
    position: absolute;
    top: 35%;
    left: 12%;
    font-size: 1.3vw;
    color: #fff;
    text-shadow: 0 0 5px #fff,0 0 10px #fff;
}

#pukapuka p:nth-of-type(3),#pukapuka2 p:nth-of-type(3) {
    position: absolute;
    top: 45%;
    left: 12%;
    font-size: 1.2vw;
    color: #fff;
    text-shadow: 0 0 10px #fff,0 0 15px #fff;
}

#pukapuka p:nth-of-type(4),#pukapuka2 p:nth-of-type(4) {
    position: absolute;
    top: 52%;
    left: 12%;
    font-size: 1.2vw;
    color: #fff;
    text-shadow: 0 0 10px #fff,0 0 15px #fff;
}

#pukapuka p:nth-of-type(5),#pukapuka2 p:nth-of-type(5) {
    position: absolute;
    top: 68%;
    left: 22%;
    font-size: 1.8vw;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 0 10px #fff,0 0 15px #fff;
}

  
#pukapuka2 {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47%;
    height: 20vh;
    margin-top: 2%;
    background-color: rgba(254, 254, 254, 0.255);
    animation: pukapuka2 10s infinite;
 }

 @keyframes pukapuka2 {
    0%{ border-radius: 50% 70% 60% 70% / 80% 80% 70% 70%; }
   20%{ border-radius: 40% 70% 50% 80% / 80% 70% 70% 60%; }
   40%{ border-radius: 50% 70% 50% 70% / 90% 80% 80% 70%; }
   60%{ border-radius: 50% 50% 70% 68% / 90% 80% 90% 90%; }
   80%{ border-radius: 60% 70% 70% 60% / 90% 70% 80% 80%; }
  100%{ border-radius: 50% 70% 60% 70% / 80% 80% 70% 70%; }
  }


.cyuuijikou {
    width: 85%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    padding: 6%;
    background-color: rgba(254, 254, 254, 0.255);
    animation: pukapuka3 10s infinite;
}

@keyframes pukapuka3 {
    0%{ border-radius: 50% 50% 70% 68% / 90% 80% 90% 90%; }
   20%{ border-radius: 60% 70% 70% 60% / 90% 70% 80% 80%; }
   40%{ border-radius: 50% 70% 60% 70% / 80% 80% 70% 70%; }
   60%{ border-radius: 40% 70% 50% 80% / 80% 70% 70% 60%; }
   80%{ border-radius: 50% 70% 50% 70% / 90% 80% 80% 70%; }
  100%{ border-radius: 50% 50% 70% 68% / 90% 80% 90% 90%; }
  }

.cyuuijikou span {
    display: block;
    font-size: 1.1vw;
    padding-left: 10%;
    margin-bottom: 1%;
    font-weight: 600;
    font-size: 1.2vw;
    color: #fff;
}

.cyuuijikou span::before {
    content: "■　";
}

.cyuuijikou p {
    font-size: 1.1vw;
    color: #fff;
}

.cyuuijikou p:nth-of-type(1) {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
}

.cyuuijikou p:nth-of-type(2) {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cyuuijikou p:nth-of-type(3) {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2%;
}

.toiawase-form {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    background-color: rgba(49, 48, 48, 0.255);
    font-size: 1.2vw;
    color: #fff;
}

form {
    width: 95%;
	margin-bottom: 5%;
    padding: 7% 2% 2% 3%;
	border: 1px solid #fff;
    box-shadow: 0 0 10px #fff,0 0 15px #fff;
}

.flexbox {
    display: flex;
    margin-bottom: 5%;
}

.leftbox {
    width: 20%;
    margin-left: 2%;
    font-weight: 600;
}

.name-box {
    display: flex;
    width: 70%;
}

.name-input-size {
    width: 48%;
    line-height: 3;
    font-size: 1.2vw;
}

.name-input-size:nth-of-type(2) {
    margin-left: 4%;
}

.input-size {
	width: 70%;
	line-height: 3;
    font-size: 1.2vw;
}

.textarea-size {
	width: 70%;
	height: 10vw;
	font-size: 1.0vw;
}


select {
	width: 20%;
    height: 2.7vw;
    font-size: 1.2vw;
}

.send {
    display: block;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7%;
    margin-bottom: 5%;
    line-height: 2;
    color: #fff;
    font-size: 1.2vw;
    background-color: #111B30;
    cursor: pointer;
    transition: 1s;
}

.send:hover {
    background-color: #6986A8;
    transition: 1s;
}

form p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
}



/* フッター */
footer {
    width: 100%;
    background-color: #222222;
}

.footer-parent-box1 {
    display: flex;
    padding-top: 5%;
    margin-left: 5%;
    width: 85%;
    height: 60vw;
}

.footer-parent-box1 div ul li {
    width: 100%;
    margin-bottom: 5%;
}

.footer-parent-box1 div ul {
    width: 100%;
    margin-top: 1vw;
}

.footer-parent-box1 div ul li a {
    display: block;
    font-size: 0.9vw;
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
}

.footer-box1 {
    width: 20%;
    margin-right: 8%;
}

.footer-box2 {
    width: 20%;
    margin-right: 8%;
}

.footer-box3 {
    width: 20%;
    margin-right: 8%;
}

.footer-box4 {
    width: 20%;
}


h4 {
    width: 100%;
    color: white;
}

.h4-box1 {
    width: 120%;
    margin-top: 3%;
    border-bottom: dotted 0.5px white;
}

.h4-box1:not(:nth-of-type(1)) {
    margin-top: 2vw;
}

.h4-box1 h4 a {
    display: block;
    margin-bottom: 3%;
    font-size: 1.1vw;
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

footer {
    overflow: hidden;
}

/* footer ul {
   width: 100%;
   margin-top: 5%;
} */
footer ul li {
    width: 100%;
}

/* footer ul li a {
    display: block;
    font-size: 0.9vw;
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
} */

.sns-box {
    width: 100%;
    margin-top: 4%;
}

.sns-box ul {
    display: flex;
    
}

.sns-box ul li  {
    display: block;
    margin-right: 5%;
}

i {
    display: block;
    font-size: 2vw;
}

.fa-x-twitter {
    color: #000
}

.fa-square-facebook {
    color: #3d5998;
}

.fa-square-instagram {
    color: #cf2e92;
}

.fa-line {
    color: #00b990;
}

.fa-square-youtube {
    color: red;
}

.footer-info {
    width: 100%;
    background-color: #111B30;
    display: flex;
    align-items: center;
}

.footer-info ul {
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
}

.footer-info ul li {
    width: 25%;
    height: 1.5vw;
    border-right: solid 1px white;
}

.footer-info ul li a {
    display: block;
    font-size: 1vw;
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    text-align: center;
}

.footer-info ul li:nth-child(3) {
    border-right: none;
}

.footer-info p {
    width: 15%;
    margin-left: auto;
    margin-right: 10vw;
    font-size: 1vw;
    color: white;
    text-align: center;
}



/*メイン 6割紺#111B30 2割青#6986A8 1.5割水色#9ED7D6 0.5割白よりのグレー#DBE5F2*/