@charset "UTF-8";
/* CSS Document (ハンバーガーメニュー) */

.hamburger_menu{
}

/*アイコン*/
#nav_toggle{
  position: fixed;
  top: 0;
  right: 0;
  aspect-ratio: 1 / 1;
  width: 80px;
  cursor: pointer;
  z-index: 999;
  background: #385492;
}
#nav_toggle > div{
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%,0);
  width: 30px;
  height: 20px;
}
#nav_toggle span{
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  display: block;
  background: #fff;
  transition: transform 0.4s ease-in-out, top 0.3s ease;
}
#nav_toggle span:nth-child(1) {
  top: 0;
}
#nav_toggle span:nth-child(2) {
  top: 9px;
}
#nav_toggle span:nth-child(3) {
  top: 18px;
}
#nav_toggle p{
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  pointer-events: none;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
#nav_toggle p.t_close{
  display: none;
}
/*open*/
.open #nav_toggle span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.open #nav_toggle span:nth-child(2) {
  top: 9px;
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
.open #nav_toggle p.t_open{
  display: none;
}
.open #nav_toggle p.t_close{
  display: block;
}

.open .site_header{
	background-color: #fff;
}


/*中身*/
.hamburger_nav{
  background: #385492;
  position: fixed;
  top: 80px;
  right: 0;
  z-index: -1;
  width: 85%;
  max-width: 350px;
  height: calc(100vh - 80px);
  transition: 0.4s;
  padding: 20px;
  overflow-y: scroll;
  transform: translateX(100%);
}
.hamburger_nav .wrap{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
/*スクロールバー*/
.hamburger_nav::-webkit-scrollbar{
  display: none;
}

.hamburger_nav ul{
  padding: 0;
}


.hamburger_nav .mobile_head{
  margin-bottom: 10px;
}
.hamburger_nav .mobile_head .big{
  margin-bottom: 20px;
}
.hamburger_nav .mobile_head .big .item{
  margin-bottom: 5px;
}
.hamburger_nav .mobile_head .big .item:last-child{
  margin-bottom: 0 !important;
}
.hamburger_nav .mobile_head .big .item a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 2px solid #385492;
  background-color: #385492;
  color: #fff;
}
.hamburger_nav .mobile_head .big .item a::after{
	display: block;
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	font-weight: 900;
	transition: 0.6s;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  color: #fff;
}
.hamburger_nav .mobile_head .big .item2 a{
  border-color: #385492;
  background-color: #385492;
}
.hamburger_nav .mobile_head .big .item a .icon{
  display: block;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1 / 1;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 50%;
}
.hamburger_nav .mobile_head .big .item a .txt{
  display: block;
}


.hamburger_nav .mobile_head .small{
  display: flex;
  justify-content: space-between;
}
.hamburger_nav .mobile_head .small .item{
  width: 32%;
  width: 49%;
}
.hamburger_nav .mobile_head .small .item a{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
}
.hamburger_nav .mobile_head .small .item a .icon{
  display: block;
  width: 60%;
  max-width: 40px;
  margin: 0 auto;
  margin-bottom: 5px;
}

.hamburger_nav .mobile_head .item a:hover{
  opacity: 0.6;
}


.hamburger_nav ul.mobile_menu{
}
.hamburger_nav ul.mobile_menu > li{
  border-bottom: 1px dashed #ddd;
}
.hamburger_nav ul.mobile_menu > li > a{
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  padding: 10px;
}
.hamburger_nav ul.mobile_menu > li > a img.icon{
  display: block;
  width: 40px;
  margin-right: 15px;
}


.hamburger_nav ul.mobile_menu > li.single > a::after{
	display: block;
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	font-weight: 900;
	transition: 0.6s;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  color: #385492;
}



/*+マーク*/
.m_drop .m_drop_subject::before,
.m_drop .m_drop_subject::after{
	position: absolute;
	top:48%;
	right: 10px;
	content:'';
	width: 12px;
	height: 2px;
	background-color: #385492;
}
.m_drop .m_drop_subject::before{
	transform: rotate(0deg);
}
.m_drop .m_drop_subject::after{
	transform: rotate(90deg);
}
.m_drop .m_drop_subject.area_close::before{
transform: rotate(45deg);
}
.m_drop .m_drop_subject.area_close::after{
transform: rotate(-45deg);
}
.m_drop .m_drop_area{
  display: none;
  margin-bottom: 20px;
}
.m_drop .m_drop_area li{

}
.m_drop .m_drop_area li a{
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  background-color: #f9f9f9;
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 4px;
  transition: 0.2s;
}
.m_drop .m_drop_area li:last-child a{
  margin-bottom: 0;
}
.m_drop .m_drop_area li a::before{
	font-family: "Font Awesome 6 Free";
  display: inline-block;
	content: "\f111";
	font-weight: bold;
	margin-right: 10px;
  font-size: 0.6em;
  transition: transform 0.2s;
  color: #385492;
}
.m_drop .m_drop_area li a:hover{
  opacity: 0.6;
}
.m_drop .m_drop_area li a:hover::before{
}



.hamburger_nav .sbtn{
  max-width: none;
}


#page_container{
  position: relative;
}
#page_container::after{
  content: '';
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}


/* open */
.open{
}
.open .hamburger_nav{
  transform: translateX(0);
}
.open #page_container::after{
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.1s;
}

/*ブレイクポイント*/
@media (max-width: 1200px){
  #nav_toggle{
    display: block;
  }
}
@media (max-width: 750px){
  #nav_toggle{
    width: 70px;
  }
  #nav_toggle > div{
    top: 25%;
  }
  #nav_toggle p{
    bottom: 6px;
  }

  .hamburger_nav{
    top: 70px;
    height: calc(100vh - 70px);
    padding-bottom: 120px;
  }
}