@charset "UTF-8";
html {
  font-size: 20px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: rgb(90, 90, 90);
  min-height: 100vh;
  padding-bottom: 50px;
  position: relative;
}

a:hover {
  opacity: 0.7;
}

.sub-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0 2rem 0;
  position: relative;
}
.sub-title::before {
  background-color: #a0d8ef; /*下線の色*/
  bottom: -1rem; /*下線の上下の位置*/
  content: "";
  display: inline-block;
  height: 4px; /*下線の太さ*/
  left: 50%;
  position: absolute;
  transform: translate(-50%); /*位置の調整*/
  width: 40px; /*下線の幅*/
}

.sub-title2 {
  display: inline-block;
  font-size: 1.2rem;
  margin: 1rem 0;
  position: relative;
  text-align: center;
}
.sub-title2::before {
  color: #a0d8ef;
  content: "▲";
  transform: rotate(90deg);
  display: block;
  font-size: 0.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  margin: auto;
}

.hamburger {
  display: none; /* 初期状態では非表示 */
}

.instagram {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}
.instagram img {
  height: 60px;
  width: 60px;
}

header {
  align-items: center;
  background-color: rgb(248, 255, 255);
  color: rgb(90, 90, 90);
  justify-content: center;
  height: 100px;
  padding: 1.2rem;
  text-align: center;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  header {
    height: 65px;
  }
}
header .contents {
  display: flex;
  justify-content: center;
  gap: 0 1rem;
}
@media screen and (max-width: 1200px) {
  header .contents {
    justify-content: flex-start;
  }
}
header h1 {
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: bold;
}
header h1::before {
  font-family: "Alkatra", cursive;
  content: "Whitening Salon Grass Place\a";
  color: #0495b9;
  font-weight: bold;
  font-size: 1.5rem;
  white-space: pre;
  -webkit-text-stroke: 0.5px #FFF;
}
@media screen and (max-width: 480px) {
  header h1::before {
    font-size: 1.2rem;
  }
}
header nav {
  margin-top: 0.9rem;
}
@media screen and (max-width: 900px) {
  header nav {
    width: 99%;
    position: absolute;
    background-color: rgb(253, 253, 253);
    z-index: 99;
    display: none;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 2rem 0;
    right: 0;
  }
}
header nav ul {
  display: flex;
  font-size: 0.8rem;
}
@media screen and (max-width: 1200px) {
  header nav ul {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 900px) {
  header nav ul {
    font-size: 1.2rem;
    display: flex;
    gap: 4rem 0;
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
  }
}
header nav ul li {
  border-right: 1px solid rgb(90, 90, 90);
  padding: 0 2rem;
}
@media screen and (max-width: 1200px) {
  header nav ul li {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 900px) {
  header nav ul li {
    border: none;
  }
}
header nav ul li:last-child {
  border: none;
}
header .hamburger {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
@media screen and (max-width: 900px) {
  header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 16px;
    cursor: pointer;
    right: 5%;
    top: 25px;
  }
  header .hamburger .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  header .hamburger .line2 {
    margin: 5px 0;
  }
  header .hamburger .active .line1 {
    transform: translateY(6px) rotate(45deg);
  }
  header .hamburger .active .line2 {
    transform: scaleX(0);
  }
  header .hamburger .active .line3 {
    transform: translateY(-6px) rotate(-45deg);
  }
}
header .show,
header .close {
  display: flex;
  height: auto;
}
header .show {
  -webkit-animation: show-menu 0.3s;
          animation: show-menu 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .close {
  -webkit-animation: close-menu 0.3s;
          animation: close-menu 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .show li {
  opacity: 1;
  transition-delay: 0.3s;
}

@-webkit-keyframes show-menu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-menu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes close-menu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes close-menu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
footer {
  background-color: #a0d8ef;
  bottom: 0;
  color: white;
  height: 50px;
  font-size: 0.8rem;
  line-height: 50px;
  position: absolute;
  text-align: center;
  width: 100%;
}

.top-img {
  width: 100%;
}
.top-img img {
  height: auto;
  width: 100%;
}
.top-img .swiper {
  background-color: #a0d8ef;
  padding: 4%;
  position: relative;
}
.top-img .swiper::before {
  background-color: #a0d8ef;
  border: 3px solid rgb(241, 234, 220);
  content: "";
  height: 98%;
  left: 1%;
  position: absolute;
  top: 1%;
  width: 98%;
}

.top-about {
  display: flex;
  gap: 5px;
  margin: 1rem 0;
  padding: 10px;
  max-width: 700px;
  margin: 2rem auto;
}
.top-about img {
  height: 15rem;
  width: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about .texts {
  width: 50%;
}
.top-about .texts h3 {
  color: #a0d8ef;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0;
}
.top-about .texts p {
  font-size: 0.8rem;
  line-height: 2.5;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .top-about .texts p {
    line-height: 2;
  }
}
.top-about .texts a {
  border-bottom: 1px solid;
  display: inline-block;
  font-size: 0.8rem;
}

.top-about1 {
  text-align: right;
}
.top-about1 img {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 99%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 99%, 0% 100%);
}
.top-about1 .texts {
  text-align: left;
}

.top-about2 {
  text-align: left;
}
.top-about2 img {
  -webkit-clip-path: polygon(0 0, 75% 0, 100% 99%, 0% 100%);
          clip-path: polygon(0 0, 75% 0, 100% 99%, 0% 100%);
}
.top-about2 .texts {
  text-align: right;
}

.news {
  font-size: 0.8rem;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 20px;
  /*日付設定*/
  /*記事設定*/
}
.news dl {
  line-height: 3;
  margin: 0 auto;
}
.news dt {
  float: left;
  letter-spacing: 0.1em;
  margin-right: 1rem;
  padding: 10px;
}
.news dd {
  border-top: 1px solid rgb(177, 174, 174);
  padding: 10px;
  position: relative;
}
.news dd:last-of-type {
  border-bottom: 1px solid rgb(177, 174, 174);
}
.news .past-link {
  text-align: right;
  margin-top: 10px;
}

.about-menu {
  margin: 0 auto;
  padding: 20px;
}
.about-menu h2 {
  display: flex;
  font-size: 1.5rem;
  margin: 1rem 0;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  left: 20px;
  top: 10px;
}
.about-menu h2::before {
  color: #a0d8ef;
  content: "▲";
  transform: rotate(90deg);
  display: block;
  font-size: 0.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  margin: auto;
}
.about-menu h3 {
  color: #0495b9;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  margin: 2rem 0;
}
.about-menu .imgs {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-menu .imgs img {
  width: 100%;
}
.about-menu p {
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.guide-btns-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}
.guide-btns-wrap button {
  border: 1px solid rgb(90, 90, 90);
  border-radius: 15px;
  font-size: 1.3rem;
  padding: 1rem 3rem;
  border: 1px solid #ccc;
  background: #f1e767;
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  box-shadow: inset 1px 1px 1px #fff;
}
.guide-btns-wrap .guide-btns-wrap.fade-out {
  display: flex;
}
.guide-btns-wrap .guide-btns-wrap.fade-in {
  display: flex;
}

.about-guide {
  display: none;
}
.about-guide .about-guide.fade-out {
  display: block;
}
.about-guide .about-guide.fade-in {
  display: block;
}
.about-guide .imgs {
  display: flex;
  flex-direction: column;
}
.about-guide .imgs img {
  width: 100%;
}
.about-guide .about-guide-close-btn {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.guide-btns-wrap.fade-out,
.about-guide.fade-out {
  -webkit-animation: fade-out 0.5s;
          animation: fade-out 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.guide-btns-wrap.fade-in,
.about-guide.fade-in {
  -webkit-animation: fade-in 0.5s;
          animation: fade-in 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: flex;
}

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

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.qa {
  margin: 20px auto;
  max-width: 800px;
}

.qa__block {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 0 10px;
}

.qa__item {
  display: inline-block;
}

.qa__head {
  position: relative;
  text-align: left;
  padding: 20px 30px 20px 20px;
  border-radius: 8px 8px 0 0;
  background: rgb(215, 255, 255);
  color: black;
  cursor: pointer;
  width: 100%;
}

.qa__head:after {
  content: "";
  border-top: 1px solid black;
  border-left: 1px solid black;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg) translateY(9px);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform 0.4s;
}

.qa__body {
  position: relative;
  border-radius: 0 0 8px 8px;
  background: #fff;
  color: black;
  border: transparent;
  padding: 0 20px;
  line-height: 0;
  opacity: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
}

.qa__body.is-open {
  padding: 20px;
  line-height: 1.5;
  opacity: 1;
  border: 1px solid lightblue;
}

.qa__head.is-open::after {
  transform: rotate(45deg) translateY(-10px);
}

.qa__item:not(:first-child) {
  margin-top: 16px;
}

.access-contact,
.shop {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .access-contact,
.shop {
    padding: 0 5px;
  }
}

.shop {
  text-align: left;
}
.shop h3 {
  margin-left: 1rem;
}
.shop .imgs img {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0 5px;
  width: 33.3333333333%;
}
.shop .imgs .shop-out,
.shop .imgs .shop-in {
  display: flex;
  margin: 1.2rem 0;
}

.access-table {
  border-collapse: collapse;
  margin: 0 auto 30px;
  padding: 0;
  line-height: 1.5;
  white-space: normal;
  width: 100%;
}

.access-table tr:first-child {
  border-top: solid 1px #a0d8ef;
}

.access-table tr {
  border-bottom: solid 1px #a0d8ef;
}

.access-table .h-cell {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.8px;
  width: 32%;
  padding: 1.2rem 1rem;
  vertical-align: top;
  color: rgb(90, 90, 90);
  background-color: #fcfbf7;
}

.access-table .d-cell {
  font-size: 1rem;
  letter-spacing: 0.8px;
  width: 68%;
  padding: 1.2rem 1rem;
  color: #6a6b75;
}

.access-table .d-cell {
  font-size: 1rem;
  letter-spacing: 0.8px;
  width: 68%;
  padding: 1.2rem 1rem;
  color: #6a6b75;
}

.access-table .link-map {
  border-bottom: 1px solid #0495b9;
  color: #0495b9;
}

.top-staff {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}
.top-staff img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px;
  width: 48%;
  border-radius: 30% 70% 70% 30%/30% 34% 66% 70%;
}
.top-staff .texts {
  width: 48%;
}
.top-staff .texts h4 {
  font-size: 1.2rem;
}
.top-staff .texts .class {
  color: #a0d8ef;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.top-staff .texts .name {
  display: inline;
  font-size: 1.5rem;
  text-align: center;
}

.post-content img {
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
  width: 100%;
}
.post-content p {
  line-height: 2;
}