.header_fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
}

.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5e91a6;
  height: 56px;
}

.header_top_title {
  display: flex;
  width: 100%;
}

.header_top_title .logo {
  padding-left: 40px;
}

.header_top_catch {
  font-size: 10px;
  padding-left: 25px;
  line-height: 1.2em;
  letter-spacing: 1.05px;
  display: flex;
  align-items: center;
}

.header_top_sns {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.header_top_sns>p {
  padding-right: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header_top_sns_wrap {
  display: flex;
  /*  width: 120px;*/
  justify-content: space-between;
  align-items: baseline;
}

.header_top_sns_wrap_item {
  /*
  width: 16px;
  height: 16px;
*/
  padding-left: 16px;
}

.header_top_sns_wrap_item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}


.header_bottom {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  background: rgba(94, 145, 166, 0.5);
}

.header_bottom_container {
  margin: 0 auto;
}

.header_menu {
  display: flex;
  justify-content: space-between;
  width: 900px;
}

.header_menu_list {
  display: flex;
  align-items: center;
  height: 56px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.header_menu_list_link,
.drop-menu_item_link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fff;
	padding-bottom: 3px;
  text-decoration: none;
}

.header_menu_list_link::after,
.drop-menu_item_link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.header_menu_list_link:hover::after,
.drop-menu_item_link:hover::after {
  transform: translate(0, 0);
}

.header_menu_list .drop-menu {
  position: absolute;
  top: 56px;
  width: 160px;
  transition: all .3s;
}

.header_menu_list .drop-menu_item_link {
  display: block;
  line-height: 0;
  padding: 0 8px;
  transform: scaleY(0);
  transition: all .3s;
}

.header_menu_list .drop-menu_item {
  background-image: linear-gradient(120deg, rgba(94, 145, 166, 0.7) 0%, rgba(94, 145, 166, 0.1) 100%);
}

.header_menu_list .drop-menu_item_link.is-active {
  display: inline-block;
  margin: 8px 0 8px 16px;
  padding: 0 8px;
  line-height: 1.6;
  transform: scaleY(1);
}

.header_action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  margin-left: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #5e91a6;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.header_action img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.header_action_link {
  color: #5e91a6;
}

#drawer {
  display: none;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 1024px) {

  .header_bottom,
  .header_top_list,
  .header_fixed {
    display: none;
  }

  .header_top {
    height: 80px;
/*	  上記元*/
	position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    z-index: 2;
	background-color: transparent;
	  transition: all .3s ease;
  }
.header_top.cc {
	background-color: #fff;
	height: 80px;
	top: 0;
  }
	
  .header_top .logo_sp>img {
    width: 90px;
	  height: auto;
    object-fit: contain;
    margin-left: 24px;
	  margin-top: 15px;
  }
	
  .header_menu_list {
    display: block;
	height: auto;
  }

}

@media screen and (max-width: 560px) {
  .header_top {
    height: 64px;
  }
	.header_top.cc {
	background-color: #fff;
	height: 65px;
	top: 0;
  }
  .header_top .logo_sp {
    padding-left: 25px;
	  position: fixed;
	  fill: #afc8d3;
  }

  .header_top .logo_sp>img {
    width: 77px;
	  height: auto;
    margin-left: 3px;
	  margin-top: 8px;
  }

  .header_top .header_top_list_link_insta {
    margin: 0 0 0 16px;
  }

  .sp_only {
    display: block;
  }
}

/*—————————————————————————————————
drawer
—————————————————————————————————*/
/*
nav
———————————*/
#drawer {
  display: block;
}

.drawer_inner {
  display: block;
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  width: 400px;
background: #91b8c8;
/*  background: rgba(94, 145, 166, 0.8);*/
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
.open .drawer_inner {
  left: 0;
  opacity: 1;
}

.drawer_inner .drawer_wrap {
  padding: 0 40px;
}

.drawer_inner .drawer_wrap img {
  object-fit: contain;
}

.drawer_inner .drawer_wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_menu_box {
	padding-top: 60px!important;
}

.drawer_inner .drawer_wrap ul li {
  position: relative;
  margin: 0;
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}

.drawer_inner .drawer_wrap ul li a {
  display: block;
  font-size: 14px;
  padding: 1.5em 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}

.drawer_inner.drawer_wrap ul li a:hover {
  background: #e4e4e4;
}

.drawer_inner .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0 30px;
}

.drawer_inner .sns_list .sns_list_item {
  display: block;
  padding: 8px;
}

.drawer_wrap_sns {
  display: block;
  padding: 1em 0;
  margin-top: 8px;
}

.drawer_wrap_sns_list img {
  width: 20px;
}

.drawer_wrap_sns_list:nth-child(n + 2) {
  margin-left: 16px;
}

.drawer_wrap_sns_text {
  margin-top: 2%;
  color: #fff;
  letter-spacing: 0.175em;
  font-size: 10px;
  line-height: 1.2;
}

.drawer_wrap .header_store {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding: 16px 0;
  letter-spacing: 0.05em;
  color: #5e91a6;
  background-color: rgba(255, 255, 255, 0.8);
}

.drawer_wrap .header_store p {
/*  margin-left: 8px;*/
  font-size: 14px;
}

/*
.toggle_btn
———————————*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
background-color: #afc8d3;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 20px;
}

.toggle_btn span:nth-child(3) {
  bottom: -8px;
}

.open .toggle_btn span {
  background-color: #afc8d3;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(20px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-13px) rotate(315deg);
}

.toggle_btn {
  display: none;
}
.mail_scale {
	transform: scale(1.3);
	display: none;
	
}
@media screen and (max-width: 1024px) {
  .toggle_btn {
    display: block;
    top: 25px;
    right: 40px;
  }

  .toggle_btn span {
    width: 30px;
  }
}

@media screen and (max-width: 560px) {
	.drawer_inner {
  left: -100%;
  width: 100%;
	}	

	
  .toggle_btn {
    top: 16px;
    right: 30px;
    width: 30px;
  }

  .toggle_btn span {
    width: 30px;
  }
	.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(17px) rotate(-315deg);
	}
	.toggle_btn span:nth-child(1) {
  top: 4px;
	}

	.toggle_btn span:nth-child(2) {
	  top: 19px;
	}

	.toggle_btn span:nth-child(3) {
	  bottom: -5px;
	}
}

/*
#mask
———————————*/
#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/*
accordion
———————————*/
.header_menu_list_sub_item {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  border-bottom: none !important;
}

.header_menu_list .js-drawer-accordion {
  position: relative;
}

.header_menu_list .js-drawer-accordion::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  width: 12px;
  background: #fff;
  transition: all 0.3s;
}

.header_menu_list_link.js-drawer-accordion.is-open::before {
  transform: rotate(180deg);
}

.header_menu_list_link.js-drawer-accordion.is-open::after {
  opacity: 0;
}

.header_menu_list .js-drawer-accordion:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 308px;
  height: 1px;
  width: 12px;
  transform: rotate(90deg);
  background: #fff;
  transition: all 0.3s;
}

.header_menu_list_link.js-drawer-accordion:hover::after {
  transform: rotate(90deg);
}

.header_menu_list_sub_item.is-open {
  max-height: 80px;
}

.header_menu_list_sub_item:last-of-type {
  border-bottom: none !important;
}

.header_menu_list_sub_item .link {
  padding: 0.3em 1em 1.8em 2em !important;
  color: #fff;
}
@media screen and (max-width: 560px) {
	.drawer_inner .drawer_wrap ul li a {
    padding: 1.5em 1em 1.5em 0;
	}
	.header_menu_list .js-drawer-accordion {
	width: 180px;
	}
	.header_menu_list .js-drawer-accordion:after {
  	left: 168px;
	}

}