@charset "utf-8";

/* Large screens - デスクトップ */

/*============================================================
base
============================================================*/

.ss { display: none !important; }
.ls { display: block; }
br.ls,span.ls { display: inline; }

/*============================================================
header
============================================================*/

.global-header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  min-height: 75px;
  padding-right: 30px;
  padding-left: 30px;
  border-bottom: 1px solid #e9e8ec;
  background-color: var(--COL-BK);
  line-height: 1;
  user-select: none;
}


.is-navopen .global-header {
  right: 0;
  left: 0;
  bottom: 0;
  border-bottom: none;

}

.global-header::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100%;
  left: 0;
  background-color: var(--COL-WHT);
	
  opacity: 0;
  transition-property: opacity bottom;
  transition-duration: .3s;
  transition-timing-function: ease;
}



.is-navopen .global-header::before {
  bottom: 0; 
  opacity: 1;
}

.global-header > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  min-height: 74px;
  margin-right: auto;
  margin-left: auto;
}

.logo {
  display: block;
  font-size: 24px;
  white-space: nowrap;
  color: var(--COL-BASE);
}

.global-header > div > div {
  z-index: 20;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  height: 74px;
}

.global-header > div > div:first-child { margin-right: 30px; margin-left: 0; }
.global-header > div > div:last-child { margin-right: 0; margin-left: auto; }

.navigation,
.navigation > ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.navigation {
  margin-right: 22px;
  margin-left: auto;
position: relative;
}

.navigation > ul { gap: 38px; }
.navigation > ul ul { display: none; }
.is-navopen .navigation > ul ul { display: block; }

.navigation > ul a {
  white-space: nowrap;
  color: var(--COL-BASE);
  padding: 20px 0;
}

.navigation > ul > li {
  position: relative;
  height: 74px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.navigation > ul > li > a::before{
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--COL-GREEN);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition-property: width;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.navigation  > ul > li > a:link::before,
.navigation  > ul > li > a:visited::before {
  right: -100%;
  width: 0%;
}
.navigation  > ul > li > a:hover::before,
.navigation  > ul > li > a:active::before
{
  right: 0;
  width: 100%;
}

.navigation > ul li a .icon {
	display: none;
	padding-left: 10px;
}


/* カレント表示　テキスト */
.navigation > ul > li.current > a {
	font-weight: 600;
	color: #666;
}
/* カレント表示 下ライン*/
.navigation  > ul > li.current > a::before {
	right: 0;
  width: 100%;
	background-color: var(--COL-GREEN);	
}





.is-navopen .navigation {
  display: block;
  height: auto;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, 0);
  width: auto;
  margin-right: 0;
}

.is-navopen .navigation > ul {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: start;
  width: 100%;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
  border-bottom: 1px solid var(--COL-GRY-200);
}

.is-navopen .navigation > ul > li {
  display: block;
  height: auto;
}

.is-navopen .navigation > ul > li > a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 0;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

/*メインメニューのテキスト*/
.is-navopen .navigation > ul > li > a:link,
.is-navopen .navigation > ul > li > a:visited { color: var(--COL-BASE); }
.is-navopen .navigation > ul > li > a:hover,
.is-navopen .navigation > ul > li > a:active { color: #999; }

.is-navopen .navigation  > ul > li > a::before { display: none; }

/*.is-navopen .navigation > ul > li > a::after {
  content: "\f125";
  font-family: Ionicons;
  font-size: 10px;
  vertical-align: middle;
  margin-left: 12px;
  color: var(--COL-GRY-600);
}*/


.is-navopen .navigation > ul ul li + li { margin-top: 20px; }

.is-navopen .navigation > ul ul li a {
  font-size: 14px;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.is-navopen .navigation > ul li a .icon {
	display: block;
}

/*インスタ*/
.is-navopen .navigation > ul > li > ul > li a.top-icon {
 font-size: 34px;
}

/*サブメニューのテキスト*/
.is-navopen .navigation > ul ul li a:link,
.is-navopen .navigation > ul ul li a:visited { color: var(--COL-GRY-600); }
.is-navopen .navigation > ul ul li a:hover,
.is-navopen .navigation > ul ul li a:active { color: #999; }


/* 全メニュー表示　テキスト */
.is-navopen .navigation > ul li.current a {
	color:var(--COL-GREEN);
}


.btn-menu {
  position: relative;
  z-index: 10001;
  height: 38px;
  width: 38px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.btn-menu > span {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--COL-BASE);
}

.btn-menu::before,
.btn-menu::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--COL-BASE);
  transition: 0.3s ease;
}





.btn-menu::before { top: 11px; }
.btn-menu::after { bottom: 11px; }
.is-navopen .btn-menu > span { visibility: hidden; }

.is-navopen .btn-menu::before {
  opacity: 1;
  top: 50%;
  transform: rotate(25deg) translateY(-50%);
  transition: 0.3s ease;
}

.is-navopen .btn-menu::after {
  opacity: 1;
  top: 50%;
  transform: rotate(-25deg) translateY(-50%);
  transition: 0.3s ease;
}

a.btn-contact {
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-left: 38px;
  width: 126px;
  height: 36px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--COL-WHT);
  transition-property: background-color;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

/*→を消す*/
a.btn-contact span {
	display: none;
}



.is-navopen a.btn-contact {
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 237px;
  height: 56px;
  margin-top: 36px;
  margin-left: auto;
	margin-right: 10px;
  padding-left: 22px;
  padding-right: 18px;
  font-size: 14px;
}

/*→を表記*/
.is-navopen a.btn-contact span {
	display: block;
}

/*hover　→　*/
.is-navopen a.btn-contact:hover .btn__arrow{
	 background-color: none;
	transform: translateX(5px);
	transition-duration: .3s;
	
}



a.btn-contact:link,
a.btn-contact:visited { background-color: #333;}
a.btn-contact:hover,
a.btn-contact:active { background-color: #666; }



/*navのfreeスペース*/
.nav-free {
	display: none;
}
.is-navopen .nav-free {
	display: block;
	position: absolute;
	bottom: 0px;
	left: 10px;
}

.is-navopen .nav-free .btn__box-text {
	font-size: 14px;
}
.is-navopen .nav-free .btn__box {
	height: 56px;
	padding-left: 22px;
	padding-right: 22px;
}

