@charset "utf-8";

/* Small screens - スマホ */

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

html {
  font-size: .23255814vw; /* 幅430pxの場合の1px */
  -webkit-font-smoothing: antialiased;
  height: calc(var(--vh, 1vh) * 100);
}

body{
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-size: 14px;
}

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

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

.global-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100vw;
  min-height: 79rem;
  padding-right: 20rem;
  padding-left: 20rem;
  border-bottom: 1rem solid var(--COL-GRY-200);
  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 > 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%;
 min-height: 55px;
  margin-right: auto;
  margin-left: auto;
}

.logo {
  display: block;
  font-weight: bold;
  white-space: nowrap;
  color: var(--COL-GRY-800);
}

.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: 78rem;
}

.is-navopen .global-header > div > div:last-child {
  display: block;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 85rem;
  padding-right: 10rem;
  padding-bottom: 20rem;
  padding-left: 10rem;
}

.is-navopen .global-header > div > div:last-child::before {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1rem solid var(--COL-GRY-200);
  position: absolute;
  top: 78rem;
  right: 0;
  left: 0;
}

.is-navopen .navigation {
  height: 100%;
  overflow: scroll;
  padding-bottom: 20rem;
}

.navigation > ul {
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: -1;
  visibility: hidden;
  transform: translate(0, -5%);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: .3s, .4s;
  transition-timing-function: ease;
}

.is-navopen .navigation > ul {
  height: auto;
  width: 350rem;
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
  z-index: 1;
  visibility: visible;
  transform: translate(0, 0);
  opacity: 1; 
}

.is-navopen .navigation > ul > li {
  padding-top: 15rem;
  padding-right: 25rem;
  padding-left: 25rem;
  padding-bottom: 20rem;
  border-bottom: 1px solid var(--COL-GRY-200);
}

.is-navopen .navigation > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.is-navopen .navigation > ul > li > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  height: 26rem;
  font-size: 16rem;
  font-weight: bold;
  color: var(--COL-GRY-800);
}

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

.is-navopen .navigation > ul ul { margin-top: 13rem; }

.is-navopen .navigation > ul ul li + li { margin-top: 5rem; }

.is-navopen .navigation > ul ul li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  height: 26rem;
  color: var(--COL-GRY-600);
}

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



/*インスタグラム*/
.is-navopen .navigation > ul > li > ul > li a ion-icon {
	width: 30px;
	height: 30px;
}


.btn-menu {
  position: relative;
  z-index: 100;
  height: 38rem;
  width: 38rem;
  margin-left: 22rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.is-navopen .btn-menu {
  position: absolute;
  top: 20rem;
  right: 20rem;
}

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

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

.btn-menu::before { top: 11rem; }
.btn-menu::after { bottom: 11rem; }
.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;
  width: 110rem;
  height: 36rem;
  border-radius: 8rem;
  font-size: 13rem;
  color: var(--COL-WHT);
  background-color: var(--COL-GRY-800);
}

.is-navopen a.btn-contact {
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 350rem;
  height: 56rem;
  margin-top: 50rem;
  padding-left: 30rem;
  padding-right: 20rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 14rem;
}

/*.is-navopen .nav-free {
	display: block;
	position: relative;
	
}*/

/*いぬ**/
.is-navopen .nav-dog {
	width: 90px;
	height: auto;
	margin: 0 auto;
}

a.btn-contact .btn__arrow {
	display: none;
}
.is-navopen a.btn-contact .btn__arrow {
	display: block;
}
.nav-free {
	display: none;
}

.is-navopen .nav-free {
	display: block;
	position: relative;
	bottom: 0;
	left: 0;
}




