@charset "utf-8";

/*========= ナビゲーションドロップダウンのためのCSS ===============*/
@media screen and (max-width: 480px){
/*SPメニュー*/
header {
    padding: 10px;
    background-color: #09445c;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    font-weight: bold;
    text-decoration: underline;
}
header a , header a:hover{
    color: #fff;
    text-decoration: none;
}
header ul {
    list-style: none;
    padding-inline-start: 10px;
	padding-inline-end:10px;
    margin-top: 20px;
}
header ul li {
    padding-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
    border-top: 1px solid #D7D7D7;
    font-size: 14px;
}

.button {
    background: #919099;
    color: #FFF !important;
    border-radius: 2px;
    padding: 10px;
}
.button:hover {
    background-color: #7B7A83;
}
.button2 {
    background: #F6995C;
    color: #FFF !important;
    border-radius: 2px;
	 padding: 10px;
}
.button2:hover {
    background-color: #E97E38;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: fixed;
    top: 13px;
    left: 13px;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: rgb(0 0 0 / 0.9);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{text-align:center;margin:auto;}



.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 0em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;

}
.title {

padding: 0em;
display: block;
color: #333;

}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 0.5em;
width: 2px;
height: 0.9em;
background-color: #ED1E79;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 0;
padding: 0em;
font-size: 0.9em;
line-height: 1.5;
}
.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}
}

/* ナビゲーションメニュー */
.nav-menu {
  color: #fff; /* メニューテキストの色 */
}
.menu-list {
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item {
  position: relative;
}


/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  visibility: visible; /* 下層メニューを表示 */
}

.menu-item a {
  align-items: center;
  color: #fff; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 50px;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
  width: 150px;
}
.menu-item a:hover {
	text-decoration: none; /* リンクの下線を非表示 */
	background-color: rgba(0,0,0,0.40);
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  left: 0;
  position: absolute;
  top: 100%;
  /*transition: opacity .3s, visibility .3s;  アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
	width: 220px;
	background-color: rgba(0,0,0,0.80);
}
.menu-item .drop-menu-list a{
	width: 220px;
	text-align: left;
	text-decoration: none;
	font-size: 14px;
	/* transition: opacity .3s, visibility .3s; アニメーション設定 */
}
.menu-item .drop-menu-list a:hover{background-color: rgba(255,255,255,0.20);
/* transition: opacity .3s, visibility .3s; アニメーション設定 */}


/* スクロールヘッダー */

#globalMenu {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  align-items: baseline;
  justify-content: space-between;
  overflow: hidden;
 transition: .2s;
}
#globalMenu.fixed {
	height: 60px;
	background-color: rgba(9,68,92,0.9);
	overflow: inherit;
	transition: .2s;
}
#navi-view{min-height: 50px;}