@charset "UTF-8";

body {
  padding-top: 80px;
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: rgb(51, 51, 51);
}

p {
  font-family: "Noto Sans JP";
}

p,
ul {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

img {
  object-fit: cover;
}

.header {
  width: 100%;
  height: 80px;
  background: #ffffff;
  padding: 20px 50px;
  box-sizing: border-box; /* padding分を含んで幅を100%にするため */
  position: fixed;
  top: 0; /* 上下の固定位置を上から0pxにする */
  left: 0; /* 左右の固定位置を左から0pxにする */
  display: flex;
  align-items: center; /*  中の要素を上下中央に並べる */
  z-index: 100;
}

.wrapper {
  width: 1080px;
  margin: 0 auto;
}

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

.flex_start {
  display: flex;
  justify-content: flex-start;
}

.flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex_reverse {
  display: flex;
  flex-direction: row-reverse;
}

.logo {
  width: 200px;
  margin: 0 auto;
}

.header img:first-child {
  width: 100%;
}

.sp_reservationButton {
  display: none;
}

nav {
  height: 100vh;
  overflow: hidden;
  z-index: 10000;
}

nav ul a:hover {
  text-align: center;
}

nav ul li {
  position: relative;
}

nav ul a {
  display: inline-block;
}

nav ul li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

nav ul li:hover::after {
  width: 30px;
}

.sns i {
  font-size: 34px;
  padding: 10px;
}

/* ハンバーガーの周りの枠線 inputタグの属性を引き継ぐ */
nav label {
  width: 35px;
  height: 35px;
  /* border: 1px solid black; */
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 1000;
  cursor: pointer;
}

nav span {
  width: 35px;
  height: 2px;
  background-color: black;
  position: absolute;
  right: 34px;
  transition: 0.3s;
  z-index: 100;
}

.span1 {
  top: 25px;
}

.span2 {
  top: 38px;
}

.span3 {
  top: 51px;
}

#check:checked ~ .span2 {
  display: none;
}

/* クリックしたらバツになる */
#check:checked ~ .span1 {
  width: 37px;
  transform: rotate(45deg);
  top: 37px;
  right: 34px;
}

#check:checked ~ .span3 {
  width: 37px;
  transform: rotate(-45deg);
  top: 37px;
  right: 34px;
}

#check {
  display: none;
}

/* レイアウト */
nav ul {
  width: 20%;
  height: 100vh;
  background-color: #f6f6be;
  padding: 100px 0px 0px 0px;
  text-align: center;
  list-style: none;
  position: absolute;
  top: 0;
  right: -100%; /* 画面の右側に隠し */
  transition: 1s;
  z-index: 10;
}

nav li {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

nav li:last-child {
  margin-top: 80px;
}

#check:checked ~ ul {
  right: 0;
}

.first_view {
  width: 100%;
  height: calc(100vh - 80px);
  margin: 0 auto;
  position: relative;
}

.main_area {
  height: 100%;
  width: 85%;
  margin: 0 auto;
  display: flex;
}

.mv {
  position: relative;
  width: 60%;
  height: 90vh;
}

.mv_image {
  border-radius: 100px;
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.mv-pc {
  /* border-radius: 100px; */
  /* height: 90％; */
  /* width: 100%; */
  /* height: 90%; */
  /* object-fit: cover; */
}

.circle_text {
  position: absolute;
  left: -8%;
  width: 20%;
}

.first_view-text {
  width: 30%;
  padding-left: 40px;
}

.first_view-text p {
  line-height: 2.6;
  text-align: left;
  position: absolute;
  bottom: 16%;
  width: 30%;
}

.scroll {
  display: inline-block;
  position: absolute;
  left: 40px;
  bottom: 10%;
  z-index: 2;
  padding: 10px 10px 160px;
  overflow: hidden;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}

.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 160px;
  background: #333;
}

.scroll::after {
  animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.reservation_button {
  padding: 20px 10px;
  background-color: #ffff90;
  width: 200px;
  text-align: center;
  position: fixed;
  right: -56px;
  bottom: 180px;
  transform: rotate(90deg);
}

.icon {
  position: fixed;
  right: 34px;
  bottom: 4%;
}

.about,
.menu,
.news,
.info,
.instagram,
.footer {
  padding-top: 140px;
}

.section_left {
  width: 18%;
  font-size: 28px;
  font-family: "open sans";
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

h1 {
  position: relative;
  display: inline-block;
  font-family: "Open Sans", "Noto Sans", sans-serif;
}

h1:before {
  content: "";
  position: absolute;
  bottom: -16px;
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: black;
}

.section_right {
  width: 80%;
}

.about_box {
  align-items: flex-end;
  margin-bottom: 20px;
}

.about_text {
  text-align: left;
  width: 70%;
  padding-left: 30px;
  box-sizing: border-box;
  /* padding-bottom: 30px; */
}

/* .about_text:nth-child(even) {
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
  } */

.about p {
  line-height: 3;
  padding-top: 20px;
}

.about_mainText {
  font-weight: bold;
  font-size: 18px;
}

.about_img img {
  width: 80%;
  height: 50vh;
  border-radius: 70px;
}

.menu-list dl {
  position: relative;
  margin: 0;
  padding: 28px 60px 28px 32px;
  cursor: pointer;
  border-bottom: 1px solid #000;
}

.menu span {
  color: #ffff90;
  padding-right: 8px;
}

.menu-list dl:first-child {
  border-top: 1px solid #000;
}

.menu-list dl::before {
  position: absolute;
  top: 35px;
  right: 35px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.menu-list .open::before {
  transform: rotate(-45deg);
}

.menu-list dl dt {
  position: relative;
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.menu-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 40px;
}

.menu-list dl dd p {
  margin: 30px 0 0;
}

.menu-list dl dd .menu_subText {
  margin: 4px 0 0;
  font-size: 12px;
  color: #888;
}

.menu-list dl dd p:first-child {
  margin-top: 0;
}

.menu_notice {
  font-size: 12px;
  color: #888;
  padding: 10px 30px 10px 0px;
  text-align: right;
}

.news_image {
  height: 200px;
}

.news_detail {
  font-size: 14px;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

.category {
  border: 1px solid #3333;
  padding: 4px 8px;
  margin-right: 14px;
  display: inline-block;
}

.news_box {
  padding-right: 30px;
  width: 25%;
}

.news_box img {
  width: 100%;
}

.news_box a:hover .category {
  background-color: #333;
  color: #fff;
}

.news_box a:hover .news_title {
  color: #888;
}

.news_box a:hover .date {
  color: #888;
}

.news_title {
  padding-top: 8px;
  font-weight: bold;
  font-size: 14px;
}

.view_more-button {
  font-size: 16px;
  margin: auto auto;
}

.stickarrow {
  width: 110px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(45deg);
}

.stickarrow-l {
  width: 110px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  transform: skew(-45deg);
  margin: auto;
}

.view_more-button a:hover {
  color: #888;
}

.view_more-button a:hover .stickarrow {
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
}

.info .section_right-container {
  padding-bottom: 30px;
}

.info .section_right-container img {
  width: 40%;
}

.info_detail {
  padding-left: 30px;
  width: 60%;
  box-sizing: border-box;
}

.info_box {
  width: 100%;
  border-bottom: 1px solid #eae8e8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.info_category {
  font-size: 18px;
  width: 35%;
}

.info_text {
  padding-left: 20px;
  box-sizing: border-box;
  width: 65%;
}

.fa-phone,
.fa-map-marker-alt {
  padding-right: 4px;
}

.salon_map {
  font-size: 0.8rem;
}

.instagram .section_right {
  align-items: center;
}

.footer {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  text-align: center;
}

.footer_container {
  margin: 0 auto;
  padding: 30px 0;
}

.page_top-button {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 12px;
  background-color: #666;
  margin-bottom: 60px;
  line-height: 1.3;
}

.page_top-button span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  text-align: center;
  color: #fff;
}

.fa-arrow-up {
  color: #fff;
}

.page_top-button:hover {
  background-color: #888;
}

.footer_container img {
  width: 150px;
  height: auto;
}

small {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  position: relative;
}

/* contactページ */
.contact_wrapper,
.news_wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact_wrapper .section_left {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  width: 100%;
}

.Form input[type="text"],
.Form input[type="tel"],
.Form input[type="email"],
.Form input[type="url"] {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 16px;
  box-sizing: border-box;
}

.Form textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-top: 10px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 434px;
  font-size: 16px;
  box-sizing: border-box;
}

.Form input[type="submit"] {
  border-radius: 7px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 20px;
  width: 150px;
  display: block;
  letter-spacing: 0.05em;
  background: rgb(247, 247, 247);
  color: #333;
  font-size: 16px;
}

.Form input[type="submit"]:hover {
  background-color: #ffff90;
}

.Form-Item {
  border-top: 1px solid #333;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #333;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-size: 16px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.hissu {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 46px;
  display: inline-block;
  text-align: center;
  background: #ffff90;
  color: #333;
  font-size: 12px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  /* background: #eaedf2; */
  font-size: 16px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}

/* .Form-Btn {
  border-radius: 7px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 20px;
  width: 150px;
  display: block;
  letter-spacing: 0.05em;
  background: rgb(247, 247, 247);
  color: #333;
  font-size: 16px;
} */

/* .Form-Btn:hover {
  background-color: #ffff90;
} */

/* news下層ページ */

.news_container {
  width: 100%;
  margin-top: 30px;
}

.news_container .news_box {
  width: 80%;
  /* margin-bottom: 60px; */
  margin: 0 auto 60px auto;
  /* box-sizing: border-box; padding分を含んで幅を100%にするため */
}

.news_box img {
  width: 100%;
}

.news_container .news_box img {
  /* width: 100%; */
  height: auto;
  /* padding-bottom: 10px; */
}

.news_container .news_title {
  padding-bottom: 10px;
  font-size: 16px;
}

.news_container .news_detail {
  margin-top: 20px;
}

.news_content p {
  text-align: center;
  line-height: 2;
  font-size: 14px;
}

.news_line {
  border-bottom: 1px solid #000;
  width: 70%;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .section_left {
    width: 21%;
  }

  .wrapper {
    width: 80%;
  }

  .first_view-text {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    padding-right: 70px;
  }

  .logo {
    margin: 0 auto 0 0;
    width: 120px;
  }

  .logo img ul {
    width: 30%;
  }

  nav li {
    padding: 0 30px 0 30px;
  }

  .sp_reservationButton {
    display: inherit;
    padding: 10px 20px;
    background-color: #ffff90;
    font-size: 12px;
  }

  .main_area {
    display: block;
    width: 90%;
  }

  .mv {
    width: 100%;
    height: calc(0.7 * calc(100vh - 80px));
  }

  .mv_image {
    height: 100%;
  }

  .first_view {
    padding-top: 0;
  }

  .first_view-text {
    width: 80%;
    padding: 30px 0 0 20px;
    margin: 0 auto;
  }

  .first_view-text p {
    position: inherit;
    bottom: 60px;
    /* font-size: 14px; */
    text-align: center;
    width: 100%;
  }

  nav span {
    right: 20px;
  }

  .first_view .icon {
    right: 20px;
    bottom: 20px;
  }

  .first_view-text {
    width: 80%;
    padding: 20px 0 0 0;
    margin: 0 auto;
  }

  #check:checked ~ .span1 {
    right: 20px;
  }

  #check:checked ~ .span3 {
    right: 20px;
  }

  .reservation_button {
    display: none;
  }

  .icon {
    display: none !important;
  }

  .about,
  .menu,
  .news,
  .info,
  .instagram,
  .footer {
    padding-top: 80px;
  }

  .container {
    display: block;
  }

  .section_left {
    padding-bottom: 60px;
  }

  .section_right {
    width: 100%;
  }

  .flex_reverse {
    display: block;
  }

  .about_img img {
    width: 100%;
  }

  .news_wrapper .section_left,
  .contact_wrapper .section_left {
    padding-bottom: 0;
  }

  .footer .logo {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-left: 20px;
    padding-right: 70px;
  }

  nav ul {
    width: 40%;
  }

  nav li {
    margin-top: 30px;
    font-size: 16px;
  }

  .mv {
    width: 100%;
  }

  .first_view {
    padding-top: 0;
  }

  .first_view-text p {
    position: inherit;
    bottom: 60px;
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .mv {
    height: calc(0.7 * calc(100vh - 80px));
  }

  .mv_image {
    height: 100%;
  }

  .scroll {
    display: none;
  }

  .sp_reservationButton {
    margin-right: 0;
    font-size: 10px;
  }

  .reservation_button p {
    font-size: 12px;
  }

  .wrapper {
    width: 85%;
  }

  h1 {
    font-size: 22px;
  }

  .about_box {
    margin-bottom: 0;
  }

  .about_text {
    width: 80%;
    padding-left: 20px;
    padding-bottom: 0;
    box-sizing: unset;
  }

  .about p {
    line-height: 2;
  }

  .about_img img {
    height: 40vh;
  }

  .menu-list dl {
    position: relative;
    padding: 20px 20px 20px 0px;
  }
  .menu-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .menu-list dl dt {
    padding: 0 0 0 8px;
    font-size: 16px;
  }

  .menu-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 32px;
    font-size: 14px;
  }
  .menu-list dl dd p {
    margin: 30px 0 0;
  }
  .menu-list dl dd p:first-child {
    margin-top: 0;
  }

  .menu span {
    padding-right: 0;
  }

  .info .section_right-container {
    display: block;
    width: 100%;
  }

  .info .section_right-container img {
    width: 100%;
    padding-bottom: 40px;
  }

  .info_detail {
    width: 100%;
    padding-left: 0;
  }

  .info_text {
    width: 80%;
  }

  .news .section_right {
    width: 100%;
    display: block;
  }

  .news_box {
    width: 100%;
    margin-bottom: 50px;
  }

  .footer_container img {
    width: 100px;
  }

  .page_top-button {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 12px;
  }

  .page_top-button span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    text-align: center;
  }

  .contact_wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .contact_wrapper .section_left {
    width: 100%;
  }

  .Form-Item-Input,
  .Form-Item-Textarea {
    margin-left: 0;
  }

  .sns i {
    font-size: 30px;
    padding: 8px;
  }

  /* 下層ページ */
  .news_wrapper {
    width: 80%;
    margin: 0 auto;
  }

  .news_container .news_box {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .news_container {
    margin-top: 0px;
  }

  .news_container .news_box:nth-child(2n) {
    padding-right: inherit;
  }

  .news_container .news_box:nth-child(2n) {
    padding-right: 0;
  }

  .category {
    margin-right: 8px;
  }

  .pager .pagination li {
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a {
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after {
    content: "　PREV";
  }

  .pager .pagination li.next span::before {
    content: "NEXT　";
  }
  .Form {
    margin-top: 40px;
    width: 100%;
  }

  .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }

  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

  .hissu {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }

  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Btn {
    margin: 24px auto 0 auto;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }

  .Form input[type="text"],
  .Form input[type="tel"],
  .Form input[type="email"],
  .Form input[type="url"] {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .Form textarea {
    margin-top: 8px;
    margin-left: 0;
  }
}

/* @media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
    width: 100%;
  }

  .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }

  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

  .hissu {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }

  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Btn {
    margin: 24px auto 0 auto;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }

  .Form input[type="text"],
  .Form input[type="tel"],
  .Form input[type="email"],
  .Form input[type="url"] {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .Form textarea {
    margin-left: 0;
  }
} */

.post-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.mt-05 {
  margin-top: 5em;
}

.test-center {
  text-align: center;
}
