@charset "UTF-8";

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

a {
    color: #019ac6;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1vw;
    color: #019ac6;
    font-family: "Shippori Mincho", serif;
}

h2 {
    font-size: 2vw;
    font-weight: 600;
    font-family: monospace;
    color: #000000;
}


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

nav.NavMenu ul{
	background: #019ac6; /*背景をグレーにする*/
	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 solid #fff;
}

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

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
}

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

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 28px;
	top: 28px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 9999;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #000000;
	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) {
  display: block;
	top: 18px;
  margin-left: -57vw;
	transform: rotate(-45deg);
}

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

/* ハンバーガーメニュー内 */
.navmenu-top {
    width: 100%;
    display: flex;
}

.navmenu-top-1 {
    width: 35%;
    display: flex;
}

.navmenu-top-1 ul li a {
    display: block;
    padding: 2vw;
    font-size: 1.4vw;
    color: #fff;
}

.navmenu-top-1 ul li a:hover {
    display: block;
    padding: 2vw;
    font-size: 1.4vw;
    color: #fff;
    background-color: #00c559;
}

.nav-menu-box {
    padding: 10vw;
}

.navmenu-top-flex {
    width: 65%;
}

.navmenu-top-2 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.menu-item1 {
    width: 100%;
    margin: 3vw 0;
    display: flex;
    justify-content: space-around;
}

.menu-item1 p a {
    width: 50%;
    padding: 1vw 2vw;
    font-size: 1.5vw;
    font-weight: bolder;
    background-color: gray;
    color: #fff;
    border-radius: 5px;
}

.menu-item1 p a:hover {
    background-color: #000;
    transition: 0.5s;
}

.menu-item2 {
    width: 100%;
    margin-top: 2vw;
    display: flex;
    justify-content: space-between;
}

.menu-item2-1,
.menu-item2-2,
.menu-item2-3 {
    width: 20%;
    padding: 1vw;
    border: 1px solid gray;
}

.menu-item2-1 a p,
.menu-item2-2 a p,
.menu-item2-3 a p  {
    color: #000;
}

.menu-item2-1 {
    margin-left: 1vw;
}

.menu-item2-3 {
    margin-right: 1vw;
}

.menu-item2 a img {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

.navmenu-top-3 {
    width: 80%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.6;
}

.navmenu-top-3 div p {
  padding-left: 1vw;
  margin-bottom: 2vw;
  background-color: #019bc63f;
}

.navmenu-top-3 ul li a {
  width: 100%;
    display: block;
    padding: 1.2vw 0 1.2vw 1vw;
    line-height: 0.4;
    background-color: #ffffff;
}

.menu-li1 a span,
.menu-li2 a span,
.menu-li3 a span {
  display: block;
  width: 10%;
  margin-left: auto;
  color: #019ac6;
}

.header1 {
    display: flex;
    margin-top: 1vw;
}

.header1-title a {
  display: flex;
}

.logo-img {
  width: 60px;
  height: 45px;
  margin-top: 0.5vw;
  margin-left: 2vw;
}


.airport-box {
    margin-left: auto;
    margin-right: 2vw;
}

.airport {
	display: none;
}
.Label {		/*タイトル*/
    position: relative;
	  padding-top: 1em;
    padding-left: 0.7em;
    padding-right: 1.5em;
	  display: block;
    height: 65px;
    margin-left: -128px;
	  background-color: #ffffff;
    color: #019ac6;
    font-size: 18px;
    font-weight: 600;
    box-sizing: border-box;
    
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #019ac6;
	border-right: 2px solid #019ac6;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 5px );
	right: 10px;
	transform: rotate(135deg);
}
.Label,
.content {
    margin-left: -128px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
    border:1px solid #019ac6;
    position: absolute;
    z-index: 200;
}
.content {		/*本文*/
    width: 90px;
    margin-top: 64px;
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
    border-top: none;
    background-color: #fff;
}
.airport:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding: 20px ;
	transition: all .3s;
}
.airport:checked + .Label::before {
    margin-top: 3px;
	transform: rotate(-45deg) !important;
    transition: 0.2s;
}

.content ul {
    margin-top: -15px;
}

.content ul li {
    padding-top: 5px;
}

.content ul li a{
    color: #019ac6;
}

.rogin {
    display: flex;
    width: 100px;
    height: 67px;
    margin-right: 10vw;
    background-color: #019ac6;
    justify-content: center;
    align-items: center;
}

.rogin a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}
/* ヘッダー末尾 */

body {
  background-image: url(../images/erea_bg.jpg);
  background-size: 110% 120%;
  background-position:  -20vw -10vw;
  background-color: rgba(255,255,255,0.4);
  background-blend-mode: lighten;
}

.rogin-content1-top {
  width: 20%;
  margin-top: 3vw;
  margin-left: 10%;
  margin-bottom: 2vw;
  display: flex;
}

.rogin-content1-top img {
  width: 15%;
  margin-right: 1vw;
}

.rogin-content1-top h2 {
  display: flex;
  align-items: center;
  font-size: 2.5vw;
}

.rogin-content1-flex {
  display: flex;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.rogin-content1-box {
  width: 48%;
  padding: 2vw;
  border: 1px solid gray;
  box-sizing: border-box;
}

.rogin-content1-box div h3 {
  font-size: 1.7vw;
  margin-bottom: 2vw;
}

.rogin-content1-box div p {
  font-size: 1.2vw;
  margin-bottom: 2vw;
}


.rogin-content1 a {
  display: block;
  margin-top: 1vw;
  padding-bottom: 2vw;
  text-align: center;
  border-bottom: 2px solid gray;
}

.send {
  display: block;
  width: 50%;
  height: 4vw;
  margin-top: 3vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #7bb9ca;
  border: none;
  border-radius: 10px;
  box-shadow: 1px 1px #000000, 2px 2px #797979;
}

.send:hover {
  display: block;
  width: 60%;
  height: 4vw;
  margin-top: 3vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #c7d8dd;
  border: none;
  border-radius: 10px;
  box-shadow: 1px 1px #000000, 2px 2px #797979;
  transition: 0.5s;
}


h4 {
  margin-top: 2vw;
}

.flexbox {
  display: flex;
  margin-bottom: 2vw;
}

.flexbox label {
  display: block;
  width: 25%;
  font-size: 1.1vw;
  line-height: 3;
}

.flexbox input {
  display: block;
  width: 70%;
  line-height: 3;
  border:none;
  padding: 2px 8px;
  box-shadow: 1px 1px 5px 1px;
  border-radius: 10px;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 1.3vw;
}

.footer-flex {
    display: flex;
    width: 80%;
    margin: 2vw auto;
    padding: 1vw 0;
    justify-content: space-around;
    background-color: #019bc61a;
    font-size: 1.3vw;
}

/* z-index
    nav 9998-9999
    Label 200
    heroimg 5-9
    tab 100 */

/* メインカラー#019ac6 */