@charset 'UTF-8';

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {


/* トグルコンテンツ
------------------------------------------------- */
.sample1 {
  width: 450px;
  margin: auto;
  margin-top: 100px;
}

.toggle_wrap:last-of-type {
  border-bottom: 1px solid gray;
}
.toggle_switch {
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  border-top: 1px solid gray;
}
.toggle_switch.open {
  border-bottom: 1px solid gray;
}
.toggle_switch:hover {
  background-color: #eee;
}
.toggle_switch::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 11px;
  background: url(../img/arrow_down.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: transform .2s;
}
.toggle_switch.open::after {
  transform: rotateZ(180deg);
  top: 46%;
}
.toggle_contents {
  display: none;
  padding: 5px 10px;
}



/* トグルメニュー
------------------------------------------------- */
.sample2 {
  width: 1000px;
  margin: auto;
}
header {
	width: 25%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	height: 11.8vw;
	padding: 0 2vw;
	box-sizing: border-box;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
	background-image: url(../img/menu.svg);
	background-size: contain;
}
header.member {
	width: 34%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	height: 11.8vw;
	padding: 0 2vw;
	box-sizing: border-box;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
	background-image: url(../img/menu.svg);
	background-size: contain;
}
.menu-trigger {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 11.8vw;
	vertical-align: middle;
	cursor: pointer;
}
 p.menu-text{
	color: #fff;
	font-size: 2vw;
	bottom: 0;
	position: absolute;
	text-align: center;
	line-height: 1;
	padding-bottom: 1vw;
	margin: auto;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all .5s .2s;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 20%;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(2.5vw) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 42%;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 35%;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-2.5vw) rotate(45deg);
}
nav {
	width: 100%;
	background-color: #E4F0D7;
	color: #fff;
	text-align: center;
	display: none;
	position: absolute;
	top: 11.8vw;
	left: 0;
	z-index: 1;
}
nav ul {
  padding: 20px 0;
}
nav ul li {
  padding: 15px 0;
}
main nav.Hamburger p {
	line-height: 3.5;
	color: #006837;
}
.menu-trigger-off {
    display: none;
}
}