@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto;
  background-image: url(../img/shutterstock_1589881981.jpeg);
  background-size: 100%;
  overflow-x: hidden;
}

/* :::::: toggle button :::::: */
#drawer {
  display: none;
}

label {
  cursor: pointer;
  position: fixed;
}

label p {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #3f2210;
}

.open {
  z-index: 200;
  top: 10px;
  right: 10px;
  width: 100px;
  height: 100px;
  transition: 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: calc(40% - 1px);
  left: 30%;
  width: 40%;
  border-bottom: 1.5px solid #3f2210;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

.close {
  z-index: 1;
  inset: 0;
  pointer-events: none;
  transition: 0.6s;
}

#drawer:checked + .open {
  transform: translateX(0px);
}

#drawer:checked + .open span {
  transform: scaleX(0);
}

#drawer:checked + .open::before {
  transform: rotate(135deg) scaleX(1.2);
}

#drawer:checked + .open::after {
  transform: rotate(-135deg) scaleX(1.2);
}

#drawer:checked ~ .close {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.5);
}

/* :::::: drawer menu :::::: */
.menu {
  z-index: 100;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  background: rgb(255, 255, 255);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.content {
  position: relative;
  top: 120px;
}

.menu h2 {
  color: #3f2210;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  color: #3f2210;
}

.menu h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  color: #3f2210;
}

.menu_nail {
  margin: 0 0 60px;
}

.menu_izumi {
  margin: 0 0 40px;
}

.drawer_title {
  text-align: center;
  margin: 20px 0 0;
  position: relative;
}

.drawer_title h3 {
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  bottom: 0;
}

.drawer_title img {
  width: 70px;
}

.menu ul {
  margin: 0;
  padding: 0;
}

.menu li {
  /* line-height: 1.4; */
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  color: #3f2210;
  /* padding-left: 0; */
  background-image: url(../img/icon-kaji_36x36.png);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left 10% center;
}

.menu p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  text-align: center;
  color: #3f2210;
}

.menu li:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.menu a {
  display: block;
  padding: 1em 1.5em;
  color: #3f2210;
  text-decoration: inherit;
  border-bottom: 0.5px solid #3f2210;
  width: 210px;
  margin: 0 auto;
}

.menu a:hover {
  letter-spacing: 0.5em;
  transition: 0.6s;
}

#drawer:checked ~ .menu {
  transform: none;
}

/* header--------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
header {
  background-color: rgb(255, 255, 255);
  color: #3f2210;
  font-size: 15px;
  margin: 0 calc(50% - 50vw);
  /* width: 100vw; */
  padding: 10px;
  display: flex;
  align-items: center;
}

header p {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
}

#header-item-width {
  margin: 0 auto;
  width: 100vw;
}

#header_photo_size {
  width: 350px;
  height: auto;
  margin: 10px 0 0;
}

header .main_reserve {
  position: relative;
  right: 110px;
}

/* --------------------------------------------------------------------------------------------- */
/* header--------------------------------------------------------------------------------------- */
/* menu----------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
menu {
  background-color: #F0EAE0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 60px;
  text-align: center;
}

menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

menu li {
  line-height: 60px;
  width: 25vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 17px;
  color: #3f2210;
}

menu a {
  padding-bottom: 5px;
  position: relative;
}

menu a::before {
  background: #3f2210;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

menu a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* --------------------------------------------------------------------------------------------- */
/* menu----------------------------------------------------------------------------------------- */
/* main------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------- */
main {
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#main_heroimg_width {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: auto;
}

.slide-items {
  width: 100vw;
  height: auto;
  margin: 0 calc(50% - 50vw);
}

.slide-items img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

/* main_about--------------------------------------------------------- */
/* ------------------------------------------------------------------- */
#main_salon_width {
  width: 420px;
}

.main_about_flex {
  display: flex;
  margin: 100px 0;
  padding: 0 30px;
  justify-content: center;
}

.main_about_flex .main_about_img {
  margin: 0;
  padding: 0;
  position: relative;
}

.main_about_flex .main_about_right {
  margin: 0 0 0 50px;
  padding: 0;
}

.main_about_flex .main_about_title {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  font-size: 25px;
  color: #3f2210;
}

.main_about_flex .main_abput_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 35px;
  color: #3f2210;
}

/* ------------------------------------------------------------------- */
/* main_about--------------------------------------------------------- */
h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 40px;
  line-height: 52.5px;
  color: #3f2210;
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 35px;
  margin: 60px 0 30px;
  color: #3f2210;
}

/* main_menu--------------------------------------------------------- */
.main_menu_title {
  text-align: center;
  margin: 45px 0 20px 0;
  position: relative;
}

.main_menu_title h2 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
}

.main_menu_title img {
  width: 135px;
}

.main_menu_bg {
  background-image: url(../img/bg_img_menu.jpg);
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  padding: 20px;
}

.main_menu_bgcolor {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  padding: 20px;
}

.main_menu_flex {
  display: flex;
}

.main_menu_content {
  width: 50vw;
  text-align: center;
}

.main_menu_content h3 {
  font-weight: 700;
}

.main_menu_table {
  margin: 0 auto;
}

.main_menu_th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 25px;
  padding: 10px 50px 10px 0;
  color: #3f2210;
}

.main_menu_td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 25px;
  color: #3f2210;
}

.main_menu_img {
  width: 80%;
}

.main_menu_moreview_margin {
  margin: 50px 0;
}

.main_menu_moreview {
  margin: 0 auto;
  width: 180px;
  height: 40px;
  background-color: #3f2210;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_menu_moreview p {
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

.arrow-right {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
}

.main_menu_moreview:hover {
  transition: 0.3s;
  background-color: #ffa5bd;
  color: #fff;
}

/* main_menu--------------------------------------------------------- */
/* main_gallery------------------------------------------------------ */
#main_gallery_bg {
  background-image: url(../img/bg_img_gallery.jpg);
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  padding: 20px;
  margin: 0 0 100px;
}

#main_gallery_bgcolor {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  padding: 20px;
}

.main_gallery_title {
  text-align: center;
  margin: 45px 0 20px 0;
  position: relative;
}

.main_gallery_title h2 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_gallery_title img {
  width: 135px;
}

.main_gallery_content img {
  width: 90%;
  margin: 10px;
}

.main_gallery_content ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_gallery_content li {
  width: 21%;
  margin: 2%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.main_gallery_content {
  padding: 10px;
}

/* main_gallery------------------------------------------------------ */
.main_manicurist {
  padding: 0 30px;
  margin: 0 0 100px;
}

.main_manicurist_flex {
  display: flex;
}

.main_manicurist h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #3f2210;
  border-bottom: solid 2px #C3C3C3;
  position: relative;
  margin: 0 0 40px;
}

.main_manicurist h2:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100px;
  border-bottom: 2px solid #ffa5bd;
}

.main_manicurist h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #3f2210;
  margin: 0 0 20px 0;
}

.main_manicurist img {
  margin: 0 20px 0 0;
}

.main_manicurist p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  color: #3f2210;
}

.main_reserve_margin {
  margin: 100px 0;
}

.main_reserve {
  margin: 0 auto;
  width: 270px;
  height: 70px;
  background-color: #ffa5bd;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_reserve p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 70px;
  font-family: "Noto Sans JP", sans-serif;
}

.main_reserve img {
  width: 15px;
  height: 15px;
  margin-left: auto;
  margin: 0 0 0 20px;
}

.main_reserve img:nth-child(1) {
  width: 35px;
  height: auto;
  margin: 0 10px 0 0;
}

.main_reserve:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.main-snsicon {
  width: 45px;
  height: auto;
  margin: 0 10px 0;
}

.main-sns-decoration {
  padding: 50px 0 40px;
  text-align: center;
}

.main-sns-decoration p {
  margin: 0 0 20px 0;
  color: #3f2210;
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo {
  width: 100%;
  background-color: #B7A69B;
}

.main_saloninfo_flex {
  display: flex;
}

.main_saloninfo h3 {
  font-size: 28px;
  display: inline;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo_text {
  width: 50%;
  margin: 20px 0 0;
  text-align: center;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo_text table {
  margin: 0 auto;
  text-align: left;
}

.main_saloninfo_text th, td {
  color: #fff;
  padding: 10px 20px 10px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo_text td {
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo_text h3 {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.main_saloninfo_tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #fff;
}

.main_saloninfo_salonname {
  margin: 0 0 30px 0;
}

.main_saloninfo_salonname p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 8px;
  color: #fff;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 40%; /* 比率を固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main_manicuristimg_size {
  width: 154px;
  height: 154px;
  border-radius: 77px;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  width: 5vw;
}

/* ------------------------------------------------------------------------------------------- */
/* main--------------------------------------------------------------------------------------- */
/* footer------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
footer {
  background-color: #3f2210;
  color: #ffffff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 30px;
}

footer ul {
  margin: 0 0 25px 0;
}

footer li {
  display: inline-block;
  padding: 0 20px 0 0;
  margin: 1em 0.5em;
  border-right: 1px solid #ffffff;
  font-size: 0.8em;
  font-family: "Noto Sans JP", sans-serif;
}

footer li:last-child {
  border: none;
}

footer p {
  text-align: center;
  font-size: 0.8em;
}

.footer-item {
  text-align: center;
}

.footer-item p {
  font-size: 1.3em;
  font-family: "Noto Sans JP", sans-serif;
}

footer a {
  padding-bottom: 5px;
  position: relative;
}

footer a::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

footer a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/* ------------------------------------------------------------------------------------------- */
/* footer--------------------------------------------------------------------------------------*/
@media screen and (max-width: 599px) {
  * {
    float: none;
    position: static;
  }
  #main_heroimg_width {
    width: 100vw;
    height: auto;
  }
  body {
    width: 95vw;
  }
  .slide-items {
    width: 100vw;
    height: auto;
    margin: 0 calc(50% - 50vw);
  }
  .slide-items img {
    width: 100%;
    height: 245px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
  }
  /* :::::: toggle button :::::: */
  #drawer {
    display: none;
  }
  label {
    cursor: pointer;
    position: fixed;
  }
  label p {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #3f2210;
    display: none;
  }
  .open {
    z-index: 200;
    top: 0px;
    right: 0px;
    width: 16vw;
    height: 16vw;
    transition: 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .open::before,
  .open::after {
    content: "";
  }
  .open span,
  .open::before,
  .open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    width: 50%;
    border-bottom: 1.5px solid #3f2210;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .open::before {
    transform: translateY(-8px);
  }
  .open::after {
    transform: translateY(8px);
  }
  .close {
    z-index: 1;
    inset: 0;
    pointer-events: none;
    transition: 0.6s;
  }
  #drawer:checked + .open {
    transform: translateX(0px);
  }
  #drawer:checked + .open span {
    transform: scaleX(0);
  }
  #drawer:checked + .open::before {
    transform: rotate(135deg) scaleX(1.2);
  }
  #drawer:checked + .open::after {
    transform: rotate(-135deg) scaleX(1.2);
  }
  #drawer:checked ~ .close {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.5);
  }
  /* :::::: drawer menu :::::: */
  .menu {
    z-index: 100;
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .content {
    position: relative;
    top: 120px;
  }
  .menu h2 {
    color: #3f2210;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    color: #3f2210;
  }
  .menu h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    color: #3f2210;
  }
  .menu_nail {
    margin: 0 0 60px;
  }
  .menu_izumi {
    margin: 0 0 40px;
  }
  .drawer_title {
    text-align: center;
    margin: 20px 0 0;
    position: relative;
  }
  .drawer_title h3 {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
  }
  .drawer_title img {
    width: 70px;
  }
  .menu ul {
    margin: 0;
    padding: 0;
  }
  .menu li {
    /* line-height: 1.4; */
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
    color: #3f2210;
    /* padding-left: 0; */
    background-image: url(../img/icon-kaji_36x36.png);
    background-repeat: no-repeat;
    background-size: 1em;
    background-position: left 20% center;
  }
  .menu p {
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    text-align: center;
    color: #3f2210;
  }
  .menu li:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
  .menu a {
    display: block;
    padding: 1em 1.5em;
    color: #3f2210;
    text-decoration: inherit;
    border-bottom: 0.5px solid #3f2210;
    width: 210px;
    margin: 0 auto;
  }
  .menu a:hover {
    letter-spacing: 0.5em;
    transition: 0.6s;
  }
  #drawer:checked ~ .menu {
    transform: none;
  }
  header {
    background-color: rgb(255, 255, 255);
    color: #3f2210;
    font-size: 15px;
    margin: 0 calc(50% - 50vw);
    /* width: 100vw; */
    height: 16vw;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  header p {
    font-size: 1vw;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
  }
  #header-item-width {
    margin: 0 auto;
    width: 100vw;
    text-align: center;
  }
  #header-item-width p {
    display: none;
  }
  #header_photo_size {
    width: 50vw;
    height: auto;
    margin: 0;
  }
  header .main_reserve {
    width: 16vw;
    height: 16vw;
    background-color: #ffa5bd;
    border-radius: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    text-align: center;
    padding: 2%;
  }
  header .main_reserve p {
    font-size: 8px;
    color: #fff;
    text-align: center;
    margin: 5px 0;
    line-height: 0;
  }
  header .main_reserve img:not(:root) {
    width: 50%;
    height: 50%;
    margin: 5px 0;
  }
  header .main_reserve img:nth-child(3) {
    display: none;
  }
  menu {
    background-color: #F0EAE0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 5vh;
    text-align: center;
    padding: 0;
  }
  menu ul {
    display: flex;
    height: 5vh;
  }
  menu li {
    width: 25vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 1rem;
    color: #3f2210;
  }
  menu a {
    padding-bottom: 5px;
    position: relative;
  }
  menu a::before {
    background: #3f2210;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  menu a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  /* main_about-------------------------------------------------------- */
  #main_salon_width {
    width: 100%;
  }
  .main_about_flex {
    display: block;
    padding: 0 20px;
    margin: 50px 0;
  }
  .main_about_flex .main_about_img {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    height: auto;
  }
  .main_about_flex .main_about_right {
    margin: 0;
    padding: 0;
  }
  .main_about_flex .main_about_title {
    margin: 7% 0 2%;
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    color: #3f2210;
  }
  .main_about_flex .main_abput_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #3f2210;
  }
  /* main_about-------------------------------------------------------- */
  /* main_menu--------------------------------------------------------- */
  h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 30px;
    color: #3f2210;
  }
  h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 25px;
    margin: 30px 0 15px;
    color: #3f2210;
  }
  .main_menu_title {
    text-align: center;
    margin: 0 0 20px 0;
    position: relative;
  }
  .main_menu_title h2 {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .main_menu_title img {
    width: 20vw;
  }
  .main_menu_bg:not(:root) {
    background-image: url(../img/bg_img_menu.jpg);
    background-size: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    padding: 10px;
    margin: 50px 0;
  }
  .main_menu_bgcolor:not(:root) {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    padding: 20px;
  }
  .main_menu_flex {
    display: block;
    width: 100%;
  }
  .main_menu_content {
    width: 100%;
    text-align: center;
    margin: 0 0 20%;
  }
  .main_menu_th {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #3f2210;
  }
  .main_menu_td {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #3f2210;
    padding: 10px 0;
  }
  .main_menu_img {
    width: 50vw;
  }
  .main_menu_moreview_margin {
    margin: 50px 0;
  }
  .main_menu_moreview {
    margin: 0 auto;
    width: 180px;
    height: 40px;
    background-color: #3f2210;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main_menu_moreview p {
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-family: "Noto Sans JP", sans-serif;
  }
  .arrow-right {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 10px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg);
  }
  .main_menu_moreview:hover {
    transition: 0.3s;
    background-color: #ffa5bd;
    color: #fff;
  }
  /* main_menu--------------------------------------------------------- */
  /* main_gallery------------------------------------------------------ */
  #main_gallery_bg {
    background-image: url(../img/bg_img_gallery.jpg);
    background-size: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    padding: 10px;
    margin: 0 0 50px;
  }
  #main_gallery_bgcolor {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    padding: 20px;
  }
  .main_gallery_title {
    text-align: center;
    margin: 0 0 20px 0;
    position: relative;
  }
  .main_gallery_title h2 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .main_gallery_title img {
    width: 20vw;
  }
  .main_gallery_content {
    padding: 0;
  }
  .main_gallery_content img {
    margin: 10px;
  }
  .main_gallery_content ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main_gallery_content li {
    width: 35vw;
    margin: 3%;
    text-align: center;
  }
  /* main_gallery------------------------------------------------------ */
  .main_manicurist {
    padding: 0 20px;
    margin: 50px 0;
  }
  .main_manicurist_flex {
    display: block;
  }
  .main_manicurist h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    color: #3f2210;
    border-bottom: solid 2px #C3C3C3;
    position: relative;
    margin: 0 0 20px;
  }
  .main_manicurist h2:after {
    content: "";
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100px;
    border-bottom: 2px solid #ffa5bd;
  }
  .main_manicurist h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    color: #3f2210;
    margin: 15px 0;
  }
  #main_manicuristimg_size {
    display: flex;
    width: 25vw;
    height: auto;
    margin: 0 auto;
  }
  .main_manicurist p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 25px;
    color: #3f2210;
  }
  .main_reserve {
    width: 200px;
    height: 70px;
  }
  .main_reserve_margin {
    margin: 50px 0;
  }
  .main_saloninfo {
    width: 100%;
    background-color: #B7A69B;
  }
  .main_saloninfo_flex {
    display: block;
  }
  .main_saloninfo h3 {
    font-size: 28px;
    display: inline;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
  }
  .main_saloninfo_text {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  .main_saloninfo_text table {
    margin: 0 auto;
    text-align: left;
  }
  .main_saloninfo_text th, td {
    color: #fff;
    padding: 10px 20px 10px 0;
    font-size: 0.8em;
    font-family: "Noto Sans JP", sans-serif;
  }
  .main_saloninfo_text h3 {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
  }
  .main_saloninfo_tel {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    color: #fff;
  }
  .main_saloninfo_salonname {
    margin: 0 0 30px 0;
  }
  .main_saloninfo_salonname p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 5px;
    color: #fff;
  }
  /* Google Mapを囲う要素 */
  .map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 40%; /* 比率を固定 */
  }
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 15vw;
  }
}/*# sourceMappingURL=style.css.map */