@charset "UTF-8";
/* 共通部分
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
html {
  font-size: 100%; /* =16px =1rem */
}
body {
  font-family: 'Yu Mincho', serif;
  line-height: 1.5;
  color: #432;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  text-decoration: none;
  color: #432;
  display: block;
}
ul {
  list-style: none;
}
.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4%;
}
h1,
h2 {
  font-weight: normal;
}
h2 {
  margin-bottom: 20px;
}
h3 {
  font-size: 2rem;
  border-bottom: solid 1px #443322;
  display: inline-block;
}
section {
  margin: 4rem auto 0;
  padding: 1rem;
}
.kana {
  font-size: 10px;
}
/* ヘッダー */
.page-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 75px;
  background-position: top;
  background-color: rgb(253 253 253/0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.logo {
  width: 39px;
  line-height: 0;
}
.logo a {
  display: block;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.main-nav a {
  font-size: 1.5rem;
  text-align: center;
  color: #432;
  width: 115%;
}
@media (max-width: 600px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 200px;
    height: 100svh;
    background: #443322;
    opacity: 0.7;
    transition: all 0.3s;
  }
  .main-nav.slide {
    transform: translate3d(-100%, 0, 0);
  }
  .main-nav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
  }
  .main-nav li {
    text-align: center;
    height: 50px;
    line-height: 50px;
  }
  .main-nav a {
    color: #f5f5f5;
    display: block;
  }
  .main-nav a:hover {
    color: #14983e;
  }
}
.btn {
  width: 40px;
  height: 40px;
  background: transparent; /* 背景色を透明に */
  border: none;
  display: grid;
  place-items: center;
  position: relative; /* スタック調整 */
}
.btn span,
.btn span::before,
.btn span::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background: #432; /* 3本ラインの色を変更 */
  position: absolute;
  transition: all 0.4s ease-out;
}
.btn span::before {
  bottom: 8px;
}
.btn span::after {
  top: 8px;
}
.btn.open span {
  background: transparent;
}
.btn.open span::before {
  bottom: 0;
  transform: rotate(225deg); /* (45 + 180)deg */
}
.btn.open span::after {
  top: 0;
  transform: rotate(-225deg);
}
@media (min-width: 600px) {
  .btn {
    display: none;
  }
  .main-nav a {
    position: relative;
  }
  .main-nav a::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    width: 0;
    height: 1px;
    background: #956e6d;
  }
  .main-nav a.active::after {
    width: 100%;
  }
  .main-nav a:hover::after {
    width: 100%;
    transition: width 0.3s;
  }
}
.subtitle {
  font-family: serif;
  font-size: 1.85rem;
  color: #432;
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 10%;
  right: 25%;
}
.fa-scissors,
.fa-arrow-right {
  color: #432;
  transform: rotate(90deg);
  margin-left: 50%;
}
.fa-scissors {
  margin-top: 280px;
}
.scroll {
  margin-left: 49%;
}
/* MV */
.image {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 13% auto 0;
  z-index: -1;
}
.image img {
  display: block;
  padding: 10px 0 0 10px;
}
.image::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #443322;
  top: -5px;
  left: -5px;
  z-index: -2;
}
@media (max-width: 600px) {
  .image {
    margin: 80px auto 0;
  }
}

/* MESSEAGE */
.messege-phot {
  width: 100px;
  margin: 0 auto 2rem;
}
.message-text {
  text-align: center;
}

/* INSTAGRAM */
.instagram-phot {
  width: 250px;
  margin: 0 auto 2rem;
  box-shadow: 5px 5px 5px rgb(0 0 0/0.25);
}
.instagram ul {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.icon {
  width: 25px;
}
.instagram-text {
  text-align: center;
}

/* ACCESS */
.access-text {
  text-align: center;
}
.map {
  text-align: center;
}
iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

/* CONTACT */
.contact-text {
  text-align: center;
}
.contact-phone {
  text-align: center;
}
.phone-text {
  text-align: left;
  display: inline-block;
}
.yoyaku span {
  border: solid 1px #443322;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem;
}

@media (min-width: 600px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
  .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    gap: 6rem;
  }
}
/* スクロールの位置 */
@media (min-width: 600px) {
  .subtitle {
    font-size: 3rem;
    top: 30%;
  }
  .fa-scissors,
  .fa-arrow-right {
    font-size: 1.5rem;
  }
  .fa-scissors {
    margin-top: 500px;
  }
}
@media (max-width: 599px) {
  .scroll {
    margin-left: 48%;
  }
}

/* フッター */
.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #432;
  background-color: #f5f5f5;
  margin-top: 3rem;
  padding: 0.85rem 0;
}
/* ページトップへボタン */
.page-top {
  width: 50px;
  height: 50px;
  background: #443322;
  border: none; /* ress.css */
  color: #f5f5f5;
  font-size: 12px;
  line-height: 1.2;
  margin-left: 10px;
  cursor: pointer; /* ress.css */
  position: fixed;
  right: -100px;
  bottom: 80px;
}
.page-top {
  transition: transform 1s linear;
}
.page-top.slidein {
  transform: translateX(-100px);
}
