@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: 4%;

}

.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; /*表示位置を指定*/
	/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: #111B30; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	color: #DBE5F2;
	padding: 1em 0;
}

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

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

.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%;
}
/*↑↑↑ここまでハンバーガーの中↑↑↑*/

main {
    background-image: url(../images/sea.jpg);
    background-size: 100% 100%;
    padding-bottom: 3vw;
}

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

.border1 {
    width: 95%;
    margin-bottom: 2vw;
    border-bottom: solid 5px #9ED7D6;
}

.top {
    display: flex;
    padding-left: 4.5vw;
    padding-top: 0.3vw;
    padding-bottom: 0.3vw;
    background-color: #303030bd;
    
}



.top li {
    list-style-type: none;
    
}

.top p {
    color: #fff;
    font-size: 0.9vw;
}

.top .kakko {
    font-size: 1.2vw;
    color: #101010;
    line-height: 1.7;
    margin-top: 0.1vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
   
}

.top li a {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #101010;
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.7;
}

.top li a:hover {
    color: #4682b4;
}

.parent {
    width: 90%;
    background-color: #ffff;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5vw;
}

.main-up .main-h3 {  
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2vw;
}

.main-up p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2vw;
    color: #101010; 
    line-height: 1.7;
    text-align: justify;
}

.main-up p a {
    text-decoration: none;
    color: #4682b4;
}

.contact {
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #4682b4;
    padding: 2%;
    display: flex;
}

.contact .text {
    width: 50%;
}

.contact .text .next {
   list-style-type: none;  
}

.contact .text .next li {
    margin-bottom: 2vw;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2vw;
}

.contact .text .next span {
    color: #4682b4;
    font-size: 1.5vw;
}

address {
    display: flex;
    color: #101010;
    font-size: 1.2vw;
}

address a {
    color: #101010;
    text-decoration: none;
}

address .fax {
    text-indent: 1em;
}

.question {
    width: 50%; 
}

.question ul {
    display: flex;
    list-style-type: none;
}

.question ul .icon {
    width: 48%;
}

.question ul .icon:nth-of-type(2) {
    margin-left: 1.5vw;
}

.question ul .icon a {
    display: block;
    background-color: #f5f5f5;
    padding: 3vw 0;
    text-align: center;
    color: #101010;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2vw;  
    transition: 1s;
}

.question ul .icon a:hover {
    background-color: #111B30;
    color: #ffff;
    transition: 1s;
}

.question ul .icon a i {
    font-size: 2.5vw;
    margin-top: 1vw;
}

.question ul .icon a li {
    margin-top: 1vw;
}
    

/*    フッター    */
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*/



