/****************************** mobile,cpmmon ******************************/

/* -------------------- ヘッダーバー -------------------- */
.header_con {
  height:50px;
  position: fixed;
	width: 100vw;
  top: 0;
	z-index: 9997;
  transition: 0.5s;
  transition-delay: 0.2s;
  width: 100%;
  background: var(--common_bg);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.logoCon {
	position: absolute;
	left: 15px;
  top: 15px;
}
.logoCon h1,
.logoCon>div {
  display: flex;
}
.logoCon a {
	position: relative;
}
.logoConImg {
  height: 25px;
  width: auto;
	z-index: 9995;
  margin-right: 10px;
}
.logoCon p {
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  transform: translate(0px, -4px);
}

/* -------------------- メニュー -------------------- */

/* メニュー画面全体 */
#nav {
	height: 100vh;
	width: 100%;
	background: var(--common_bg);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9997;
  overflow: auto;
  margin-top: 50px;
}

/* メニュー要素全体 */
#menuItem {
  position: relative;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

/* メニュー内見出し */
.nav_head_con {
  margin-bottom: 40px;
}
.nav_logo_con {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-end;
}
.nav_logo_con img {
  width: 16px;
  margin-right: 8px;
}
.nav_head_con a {
  font-size: 10px;
}

/* ナビゲーションリスト */
.navList {
	margin-bottom: 30px;
}
.nav_item {
	font-size: 14px;
  border-bottom: 1px dotted var(--corp_color);
  font-weight: 600;
  height: 40px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}
.nav_acr {
	padding: 0px 0 0px 5px;
  line-height: 40px;
}

.nav_item_open {
  height: auto;
}

.menu_arrow {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 4px;
  height: 4px;
  border-top: 2px solid var(--corp_color);
  border-right: 2px solid var(--corp_color);
  transform: rotate(135deg);
  transition: 0.5s;
}
.menu_arrow_open {
  transform: rotate(-45deg);
}

/* 子アイテム */
.nav_child_con {
  padding: 5px 0 20px 10px;
}
.nav_child_list {
  font-size: 13px;
}
.nav_child_item {
  position: relative;
  font-weight: 400;
  padding-left: 16px;
  box-sizing: border-box;
}
.nav_child_item:not(:last-child) {
  margin-bottom: 15px;
}
.nav_child_item:after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  height: 1px;
  width: 9px;
  background: var(--corp_color);
}
.nav_child_hide {
  visibility: hidden;
  height: 0px;
  padding: 0px;
}

/* -------------------- お問い合わせ・SNS -------------------- */
.cntct_acr {
	display: block;
}
.cntct_icon {
  margin-right: 2px;
}
.cntct_icon>i {
  transform: translateY(1.5px);
}
.cntct_text {
	font-size: 13px;
  font-weight: 600;
}
.nav_btn {
  margin-bottom: 10px;
  box-shadow: 1px 1px 10px rgb(0 0 0 / 10%);
}

/* SNSリスト */
.sns_list {
  display: flex;
  justify-content: space-between;
}
.sns_item {
  width: 48.8%;
}

/* メニュー表示・非表示 */
.close,
.open {
	transition : .5s;
}
.open {
	/* transition-delay: .25s */
}
.close {
	transform: translate(100%, 0px);
}
.open {
	transform: translate(0px, 0px);
}

/* -------------------- ハンバーガーボタン -------------------- */
/* 優先度 */
#menuWrapper,
#menuButton span,
#menuButton:before,
#menuButton:after {
	z-index: 9998;
}
/* 要素サイズ */
#menuWrapper,
#menuButton {
  width: 55px;
  height: 55px;
	display: block;
}
#menuWrapper {
	position: fixed;
	top: 0;
	right: 0;
}
#menuButton {
  position: relative;
  cursor: pointer;
}
/* 線について */
#menuButton span,
#menuButton:before,
#menuButton:after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left:0;
  right: 0;
  width: 28px;
  height: 2px;
  margin: auto;
  background: var(--common_text);
  border-radius: 5px;
}
/* アニメーション時間 */
#menuButton span,
#menuButton:before,
#menuButton:after,
#menuButton.active span {
	transition: 0.5s;
	/* transition-delay: 0.5s; */
}
#menuButton:before,
#menuButton:after {
	content: "";
}
#menuButton:before {
  transform: translate(0, -6px);
}
#menuButton:after {
  transform: translate(0, 6px);
}
#menuButton.active span {
  transform: scale(0);
}
#menuButton.active:before {
  transform: rotate(45deg);
}
#menuButton.active:after {
  transform: rotate(-45deg);
}

/****************************** tablet ******************************/
@media (min-width: 600px){

  header .cntct_list {
    display: flex;
    justify-content: space-between;
  }
}

/****************************** tablet Pro ******************************/
@media (min-width: 1025px){

	/* -------------------- ヘッダーバー -------------------- */
  .header_con {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
  }

  /* ロゴ */
	.logoCon {
    position: relative;
    left: inherit;
    top: inherit;
	}
  .logoConImg {
    height: 32px;
    margin-right: 15px;
  }
  .logoCon p {
    font-size: 11px;
    line-height: 16px;
    transform: translate(0px, -2px);
  }

  /* メニューバー */
	#nav {
		background: none;
		max-width: inherit;
    height: 100%;
		position: relative;
    overflow: inherit;
    margin: 0;
    width: 70%;
	}
	#menuItem {
    height: 100%;
		padding: 0px;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    justify-content: end;
	}

  /* メニュー */
	.navList {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px 0 0;
	}
	.nav_item {
		margin: 0;
		transition: 0.5s;
		text-align: center;
		position: inherit;
		/* position: relative; */
    height: 100%;
    line-height: 70px;
    border: none;
    overflow: inherit;
	}
  .nav_item:not(:last-child) {
		margin-bottom: 0px;
    margin-right: 35px;
	}
  .nav_acr {
    padding: 0;
    position: relative;
    line-height: inherit;
    cursor: pointer;
	}
	/* .nav_acr:after {
    content: '';
		position: absolute;
		top: 37px;
		left: 0;
		content: '';
		width: 100%;
		height: 8px;
		background: var(--corp_color);
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
    z-index: -1;
    opacity: 0.5;
	} */
	.nav_acr:hover:after {
	  /* transform: scale(1.06, 1); */
	}

  .nav_child_con {
    position: absolute;
    top: 70px;
    left: 0;
    background: var(--common_bg);
    padding: 20px 50px 40px;
    text-align: left;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav_child_open {
    opacity: 1;
    visibility: visible;
  }

  .nav_child_img {
    margin-right: 40px;
  }

  .nav_child_img img {
    height: 120px;
    width: 160px;
    border-radius: 10px;
  }

  .nav_child_cntnt {
    min-width: 300px;
  }

  .nav_child_head {
    font-weight: 600;
    border-bottom: 1px dotted var(--corp_color);
    margin-bottom: 15px;
    line-height: 40px;
  }

  .nav_child_list {
    line-height: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .nav_child_item {
    line-height: 24px;
    width: 48%;
  }
  .nav_child_item:not(:last-child) {
    margin-bottom: 10px;
  }
  .nav_child_item:after {
    top: 11px;
  }

  /* コンタクトボタン */
  header .cntct_list .bg_line {
    display: none;
  }
  header .nav_btn {
    width: 170px;
    margin: 0;
    border-radius: 50px;
    height: 37px;
    line-height: 37px;
  }
  header .cntct_icon {
    display: none;
  }

  /* SNS */
  .sns_list {
    display: none;
  }

  /* 表示・非表示 */
  .close {
    transform: translate(0, 0);
  }

  /* -------------------- ハンバーガーボタン -------------------- */
  #menuWrapper {
    display: none;
  }

}
