@charset "utf-8";

/* 基本 */
body {
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-family: acumin-pro, sans-serif;
    font-family: 'Zen Old Mincho', serif;
}

/* リセット / ノーマライズ / サニタイズ */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}


/* ヘッダー */
.nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: 85%;
  top: 2.3vw;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8vw;
  line-height: 2.5vw;
  letter-spacing: 0.15em;
  z-index: 2000;
}

.nav ul {
  list-style: none;
}

.nav ul li a:hover{
  color: #00C3FD
  }

/* モバイル用ヘッダー非表示 (PC) */
@media (min-width: 871px){
  .mobile {
    display: none;
  }
}


@media (max-width: 870px){
  .nav {
    display: none;
  }

  .mobile {
    display: block;
    height: 65px;
    background-color: #fff;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(255,255,255,0.8);
  }

  .mobile .container {
    display: flex;
    justify-content: space-between;
  }

  .mobile img {
    width: 210px;
    margin: 15px 0 0 20px;
  }

}

/* ナビゲーションボタン */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 40px;
  height: 14px;
  cursor: pointer;
  color: #000;
  margin: 25px 20px 0 0;
}

.nav-button::before,
.nav-button::after {
  content: '';
  display: block;
  height :2px;
  background-color: currentColor;
  transform: translateY(5px);
  transition: 0.3s ease-in-out;
}

.nav-button::before {
  transform: translateY(-5px);
  box-shadow: 0 6px currentColor;
}

/* ナビゲーション （閉じるボタン） */
.open .nav-button{
  z-index: 2000;
  color: #000000;
}

.open .nav-button::before{
  transform:
  translateY(1px) rotate(45deg);
  box-shadow: none;
}

.open .nav-button::after{
  transform:
  translateY(-1px) rotate(-45deg);
}


/* ナビゲーションメニュー:モバイル */
@media (max-width: 870px){

html.open, .open body {
  height: 100%;
  overflow: hidden;
}

.open .form {
  display: none;
}

.open .nav_mobile {
  left: 0;
}

.header {
  position: relative;
}

.nav_mobile {
  position: absolute;
  display: flex;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.8);
  z-index: 1500;
  list-style: none;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 95px;
  letter-spacing: 0.15em;
  color: #000000;
  justify-content: center;
  align-items: center;
  transition: left 0.5s;
}

html, body {
  overflow-x: hidden;
}

.nav_mobile ul {
  list-style: none;
}

}


/* ナビゲーションメニュー非表示 (PC) */
@media (min-width: 871px){
.nav-button {
 display: none;
 }

 .nav_mobile {
   display: none;
 }
}

.wrapper {
  background-color: #F4F8F8;
}

/* 店舗紹介 */


.shops {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.shops .container {
  display: inline-block;
  width: fit-content;
  margin-top: 2vw;
  margin-left: auto;
  margin-right: auto;
}



.shops h1 {
  font-size: 3vw;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.15em;
  margin-bottom: 3.3vw;
}

.shops h1 span {
  font-size: 1vw;
  font-family: 'Zen Old Mincho', serif;
  margin-left: 0.8vw;
  font-style: normal;
  letter-spacing: 0.05em;
}

.shops h2{
  font-size: 1.2vw;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 200;
  color: #3e3a39;
  margin-bottom: 0.6vw;
}

.shops p {
  font-size: 1.1vw;
  line-height: 1.9vw;
  font-family: 'Zen Old Mincho', serif;
  color: #3e3a39;
  letter-spacing: 0.05em;
  margin-bottom: 1vw;
}

.shops a {
  font-size: 0.9vw;
  line-height: 0.06vw;
  letter-spacing: 0.15em;
  color: #00C3FD;
  border: solid 0.06vw;
  padding: 0vw 5.3vw 0.06vw 5vw;
}

.shops a:hover {
	opacity: 0.8;
  color: #ffffff;
  background-color: #00C3FD;
  border-color: #00C3FD;
}

.item {
  margin-top: 60px;
}


.attention p {
  font-size: 1vw;
  line-height: 1.8vw;
  font-family: 'Zen Old Mincho', serif;
  color: #3e3a39;
  margin-bottom: 10vw;
  margin-top: 3.3vw;
  width: 16.2vw;
  text-align: justify;
}


@media (max-width: 870px) {
.shops .container {
  margin-top: 30px;
}

.shops h1 {
  font-size: 45px;
  margin-bottom: 50px;
}

.shops h1 span {
  font-size: 15px;
  margin-left: 13px;
}

.shops h2 {
  font-size: 19px;
  margin-bottom: 10px;
}

.shops p {
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 15px;
}

.shops a {
  font-size: 14px;
  line-height: 1px;
  letter-spacing: 0.15em;
  color: #00C3FD;
  border: solid 1px;
  padding: 0px 80px 1px 75px;
}

.item {
  margin-top: 60px;
}

.attention p {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 80px;
  margin-top: 50px;
  width: 243px;
  }
}


/* フッター */
.wrapper {
  position: relative;
  padding-bottom: 2vw;
  box-sizing: border-box;
  min-height: 100vh;
}

.footer {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 66.6vw;
}

.footer_logo {
  position: absolute;
  margin-top: 1.3vw;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.footer_logo img {
  display: inline-block;
  width: 16.6vw;
  margin-bottom: 3.3vw;
}

@media (min-width: 871px) {
  .footer_mobile {
    display: none;
  }
}

@media (max-width: 870px) {
  .footer {
    display: none;
  }

  .footer_mobile {
    margin-top: 0px;
    margin-bottom: -30px;
  }

  .footer_logo_mobile {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 40px;
    border-top: solid 1px;
  }

  .footer_logo_mobile img {
    width: 200px;
  }

  .wrapper {
    padding-bottom: 30px;
  }
  }




/* フェードイン */
body {
	animation: fade 2s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
