@charset "UTF-8";
/* CSS Document */




#menu {
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;*/
	width: 100%;
}

#menu-btn {
  display: none;
}

#menu-content {
  display: flex;
  justify-content: flex-end;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
	#menu-content {
  display: block;
}
}

#menu-content > li {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#menu-content > li > a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

#menu-content > li > a > .blogicon-chevron-down {
  margin-right: 5px;
}

@media screen and (min-width: 961px) {
#menu-content > li > a::before {
	content: "　";
	width: 1px;
	height: 100%;
	background: #333;
	margin: 0 15px;
}

#menu-content > li:first-child > a::before {
	display: none;
}
}

#menu-content > li > a span {

}

@media screen and (min-width: 961px) {
#menu-content > li > ul.second-content {
	transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
  position: absolute;
  background: #0071bc;
  z-index: 9;
}
}

#menu-content > li:hover > ul.second-content {
  transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}

#menu-content > li > ul.second-content > li {
  min-width: 180px;
   border-bottom: 1px dotted #e1f3fc;
}

#menu-content > li > ul.second-content > li > a {
  display: block;
  padding: 20px 10px;
  color: #fff;
}

#menu-content > li > ul.second-content > li > a:hover {
  background: #aaa;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#menu-content .forSP {
	display: none;
}

@media screen and (max-width: 960px) {
	#menu-content .forSP {
		display: block;
	}
}

@media screen and (max-width: 960px) {
#menu nav {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 60%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
  }
#menu .open nav {
    left: 0;
    opacity: 1;
  }
#menu nav .inner {
    padding: 25px;
  }
#menu nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
#menu nav .inner ul li {
    position: relative;
    margin: 0;
  }
#menu nav .inner ul li a {
    display: flex;
	align-items: center;
    color: #333;
    font-size: 1.4rem;
    text-decoration: none;
	padding: 10px 20px;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
#menu .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 8;
  }
  #menu .toggle_btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #333;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  #menu .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  #menu .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  #menu .open .toggle_btn span {
    background-color: #fff;
  }
 #menu  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
 #menu  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
 #menu  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #menu #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 7;
    cursor: pointer;
  }
  #menu-content > li {
    width: 100%;
    margin-bottom: 15px;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 0px;
    font-size: 100%;
    border-bottom: 1px solid #000;
  }
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
  }
  #menu-content > li > ul.second-content > li > a {
    padding-left: 15px;
  }
  #menu-content > li > ul.second-content > li > a:hover {
    background: none;
  }
}

#menu-content li.btn_tel,
#menu-content li.btn_entry {
	display: none;
}

@media screen and (max-width: 960px) {
	#menu-content li.btn_tel,
	#menu-content li.btn_entry {
		display: block;
	}
}

#menu-content li.btn_tel {
	margin-top: 20px!important;
}

#menu-content li.btn_tel a {
	color: var(--main-color);
	font-weight: bold;
	text-decoration: none;
	font-size: 1.7rem;
	border: 1px solid var(--main-color);
	display: flex;
	align-items: center;
	padding: 15px 20px!important;
}

#menu-content li.btn_tel a::before {
	content: "　";
	background: url("../img/common/ic_tel.png") center center no-repeat;
	background-size: 100%;
	background-size: auto 100%;
	width: 30px;
	height: 100%;
}

#menu-content li.btn_tel a span {
	color: var(--main-color);
	font-weight: bold;
	text-decoration: none;
	font-size: 1.7rem;
}

#menu-content li.btn_entry {
	background-image: linear-gradient(180deg, rgba(56, 131, 154, 1), rgba(8, 57, 104, 1));;
}

#menu-content li.btn_entry:hover {
	background-image: linear-gradient(180deg, rgba(8, 57, 104, 1), rgba(56, 131, 154, 1));
}

#menu-content li.btn_entry a {
	color: #fff!important;
	font-weight: bold;
	text-decoration: none;
	font-size: 1.6rem;
	background-image: linear-gradient(180deg, rgba(56, 131, 154, 1), rgba(8, 57, 104, 1));
	padding: 20px!important;
}

#menu-content li.btn_entry a:hover {
	background-image: linear-gradient(180deg, rgba(8, 57, 104, 1), rgba(56, 131, 154, 1));
}
