@charset "UTF-8";
/* 全体のリセット */
body, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hd{
	position: fixed;
	background: #fff;
	height: 90px;
	top: 0px;
	width: 100%;	
}

/* ハンバーガーメニューのボタン */
.hamburger-menu {
    position: fixed;
    top: 28px;
    right: 30px;
    width: 50px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.hamburger-menu span {
    display: block;
    width: 50px;
    height: 1px;
    background: #000;  
    margin: 9px auto;
    transition: all 0.3s ease-in-out;
}

.menu_logo{
	top: 35px;
	left: 45px;
	position: fixed;
}

.menu_logo_tx1{
	color: #333;
	font-size: 32px;
	font-weight: 100;
}

.menu_logo_tx2{
	color: #333;
	font-size: 10px;
	padding: 10px 0 0 7px;
}

/*----*/
  .menu-wrapper {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      font-family: sans-serif;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 35px 10px 35px 10px;
      border-bottom: 0.5px solid #000;
      cursor: pointer;
      overflow: hidden;
      position: relative;
    }


   .menu-text {
      display: flex;
      align-items: baseline;
	   color: #333;
    }

    .menu-text span:first-child {
      width: 300px;
		font-size: 18px;
    }

   .menu-text .en {
      font-size: 11px;
      color: #999;
      width: 250px;
      text-align: left;
	   transition: color 0.3s;
    }

 .menu-item:hover .menu-text .en {
     color: #333333;
	 transition: color 0.3s;
    }

    .arrow {
      transition: transform 0.3s ease;
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
		font-size: 26px;
		font-weight: 100;
		color: #666;
    }

    .menu-item:hover .arrow {
      transform: translate(5px, -50%);
    }

    @media (max-width: 768px) {
		
.hd{
	position: fixed;
	background: #fff;
	height: 58px;
	top: 0px;
	width: 100%;	
}
		
.hamburger-menu {
    top: 12px;
   
}
		
.menu_logo{
	top: 25px;
	left: 25px;
	position: fixed;
}
		
.menu-wrapper {
      width: 85%;
 
    }
		
      .menu-item {
        flex-direction: column;
        align-items: flex-start;
        /*padding-right: 20px;*/
		  padding: 25px 10px 25px 15px
      }
		
		    
		
		

		.menu-text {
        flex-direction: column;
      }
		
 .menu-text .en {
     padding-top: 9px;
    }

      .menu-text span:first-child,
      .menu-text .en {
        width: auto;
      }

      .arrow {
        top: 50%;
        right: 5px;
      }
    }

/*----*/



/* メニュー開いた時のボタン */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0; /* 透明にしない */
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* フルスクリーンメニュー */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-image: linear-gradient(110deg, rgba(228, 222, 231, 1) 47%, rgba(255, 238, 223, 1) 89%);
   /* background: rgba(0, 0, 0, 0.9);*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
	z-index: 9999; /* 念のため */
}

/* メニューが開いたとき */
.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
	z-index: 9999; /* 念のため */
}
