@charset "UTF-8";
/*==============================
	Reset
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*==============================
	Mixin
==============================*/
/*==============================
	Setting
==============================*/
/*
font-family: 'Open Sans', sans-serif;
font-family: 'Noto Serif JP', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Lato', sans-serif;
*/
body {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 100%;
  color: #030303;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

.mincho {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

a {
  transition: 0.15s;
}

.container {
  margin: auto;
}

.container-fit {
  max-width: 1232px;
  margin: auto;
  padding: 0 1rem;
}

@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 544px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 736px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1232px) {
  .container {
    max-width: 1200px;
  }
}
/*==============================
	base
==============================*/
header {
  padding: 0.875rem 0;
}
header .container-fit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container-fit h1 {
  width: 224px;
}

@media (max-width: 767px) {
  .sp-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9900;
    padding: 1rem;
    display: none;
  }
  .sp-nav ul li + li {
    margin-top: 0.5rem;
  }
  .sp-nav ul li a {
    display: block;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    padding: 1rem;
  }
  header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9900;
    height: 60px;
  }
  header .container-fit nav {
    display: none;
  }
  .menu-trigger {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #484848;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  .menu-trigger {
    animation: menu-close 0.6s;
  }
  .menu-trigger.active {
    animation: menu-open 0.6s;
  }
  @keyframes menu-close {
    30% {
      transform: scale(0);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes menu-open {
    30% {
      transform: scale(0);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
}
@media (min-width: 768px) {
  .sp-nav {
    display: none;
  }
  .menu-trigger {
    display: none;
  }
  header {
    padding: 1.25rem 0;
  }
  header .container-fit {
    display: flex;
    align-items: center;
  }
  header .container-fit h1 {
    width: 240px;
  }
  header .container-fit nav ul {
    display: flex;
  }
  header .container-fit nav ul li + li {
    margin-left: 1rem;
  }
  header .container-fit nav ul li a {
    display: block;
    font-weight: 700;
    color: #484848;
    border-bottom: solid 2px #eee;
    padding: 0.375rem 1.5rem;
  }
  header .container-fit nav ul li a:hover {
    background: #eee;
    border-bottom: solid 2px #ccc;
  }
}
footer {
  background: #f4f4f4;
  padding: 0 0 2rem;
  margin-top: 50px;
}
footer .container .to-top {
  margin-bottom: 4rem;
}
footer .container .to-top a {
  background-color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  border: solid 2px #f4f4f4;
  display: block;
  font-size: 0.9125rem;
  color: #484848;
  height: 100px;
  line-height: 1.25;
  margin: auto;
  padding: 1.5rem 0;
  text-align: center;
  transform: translateY(-50%);
  width: 100px;
}
footer .container .to-top a::before {
  content: "\f106";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
}
footer .container .to-top a:hover {
  background: #ddd;
}
footer .container .footer-logo {
  width: 240px;
  margin: 2rem auto;
}
footer .container .copyright {
  text-align: center;
  font-size: 0.875rem;
}

/*==============================
	home
==============================*/
@media (max-width: 767px) {
  main {
    margin-top: 60px;
  }
}
.top-visual {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.home-sec {
  padding: 4.5rem 0;
}
.home-sec:nth-of-type(even) {
  background: #f4f4f4;
}

.about-text {
  font-size: 1.125rem;
}
.about-text p {
  margin-bottom: 2rem;
}
.about-text ol {
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}
.about-text h3 {
  border-bottom: dashed 1px #ccc;
  margin-bottom: 2rem;
  font-size: 1.125em;
}

.salon-body .salon-box:nth-child(n+2) {
  margin-top: 3.5rem;
}
.salon-body .salon-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: solid 8px #999;
  padding: 0.375rem 1rem;
  background: #f4f4f4;
}
.salon-body .salon-box .salon-info .salon-img {
  padding: 0.5rem;
}
.salon-body .salon-box .salon-info .salon-img > img {
  border: solid 4px #ddd;
  border-radius: 50%;
}
.salon-body .salon-box .salon-info .salon-img ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.salon-body .salon-box .salon-info .salon-img ul li a {
  cursor: pointer;
  display: block;
}
.salon-body .salon-box .salon-info .salon-img ul li a:hover {
  opacity: 0.8;
}
.salon-body .salon-box .salon-info .salon-detail {
  font-size: 0.875rem;
  border: solid 1px #ccc;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}
.salon-body .salon-box .salon-info .salon-detail table {
  width: 100%;
}
.salon-body .salon-box .salon-info .salon-detail table tr:not(:last-child) {
  border-bottom: dotted 1px #ccc;
}
.salon-body .salon-box .salon-info .salon-detail table tr th {
  padding: 0.5rem 1.5rem;
  text-align: left;
}
.salon-body .salon-box .salon-info .salon-detail table tr td {
  padding: 0.5rem 1.5rem;
}
.salon-body .salon-box .salon-gallery ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.salon-body .salon-box .salon-gallery ul li a {
  display: block;
}
.salon-body .salon-box .salon-gallery ul li a:hover {
  opacity: 0.8;
}
.salon-body .salon-box .gal-slide-memo {
  font-size: 0.875rem;
  color: #696969;
  margin-top: 0.5rem;
}

.salon-media {
  position: relative;
}
.salon-media::before {
  content: "";
  background: url(../images/arrow-down.png);
  width: 80px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.salon-media .inner .media-list ul {
  list-style: none;
}
.salon-media .inner .media-list ul li {
  text-align: center;
}
.salon-media .inner .media-list ul li .btn a {
  background-color: #999;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  padding: 0.875rem;
  text-align: center;
  max-width: 280px;
}
.salon-media .inner .media-list ul li .btn a::after {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.75rem;
}
.salon-media .inner .media-list ul li .btn a:hover {
  background: #666;
}
.salon-media .inner .media-list ul li .btn a {
  width: 256px;
  box-sizing: border-box;
}
.salon-media .inner .media-list ul li .btn a::after {
  content: none;
}

.overview-tabel dl {
  background-color: #fff;
  padding: 1rem;
}
.overview-tabel dl + dl {
  margin-top: 1rem;
}
.overview-tabel dl dt {
  font-weight: 700;
}
.overview-tabel dl dd ul {
  list-style-type: circle;
  padding-left: 1.25rem;
}

.contact-body {
  text-align: center;
}
.contact-body .intro {
  margin-bottom: 2.5rem;
}
.contact-body .btn a {
  background-color: #999;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  padding: 0.875rem;
  text-align: center;
  max-width: 280px;
}
.contact-body .btn a::after {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.75rem;
}
.contact-body .btn a:hover {
  background: #666;
}
.contact-body .btn-memo {
  font-size: 0.875rem;
}
.contact-body .caution {
  margin-top: 4rem;
}

@media (max-width: 991px) {
  .home-sec .container .sec-wrap .sec-header {
    margin-bottom: 2.5rem;
    position: relative;
  }
  .home-sec .container .sec-wrap .sec-header h2 {
    position: relative;
    font-size: 20px;
    border-bottom: solid 1px #ddd;
    z-index: 1;
  }
  .home-sec .container .sec-wrap .sec-header span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
    font-size: 56px;
    color: #ddd;
    font-weight: 700;
    line-height: 1;
  }
  .salon-media .inner .media-list ul li + li {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .salon-body .salon-box .salon-info .salon-img {
    width: 120px;
    margin: 0 auto 1.5rem;
  }
  .salon-body .salon-box .salon-info .salon-detail table tr th {
    display: block;
    width: 100%;
    padding: 0.5rem;
  }
  .salon-body .salon-box .salon-info .salon-detail table tr td {
    display: block;
    width: 100%;
    padding: 0 0.5rem 0.5rem;
  }
}
@media (max-width: 575px) {
  .about-text {
    font-size: 0.9125rem;
  }
  .salon-body .salon-box .salon-gallery {
    overflow-x: scroll;
  }
  .salon-body .salon-box .salon-gallery ul {
    width: 230%;
  }
}
@media (min-width: 576px) {
  .salon-body .salon-box .gal-slide-memo {
    display: none;
  }
}
@media (min-width: 768px) {
  .overview-tabel dl {
    display: flex;
    padding: 1rem 2.5rem;
  }
  .overview-tabel dl dt {
    flex-basis: 120px;
  }
  .salon-body .salon-box .salon-info {
    display: flex;
    justify-content: space-between;
  }
  .salon-body .salon-box .salon-info .salon-img {
    width: 120px;
  }
  .salon-body .salon-box .salon-info .salon-detail {
    width: calc(100% - 120px - 32px);
  }
  .salon-body .salon-box .salon-info .salon-detail table tr th {
    width: 110px;
  }
  .salon-body .salon-box .salon-info .salon-detail table tr td {
    padding-left: 0.5rem;
  }
}
@media (min-width: 992px) {
  .home-sec {
    padding: 6.5rem 0;
  }
  .home-sec .container .sec-wrap {
    display: flex;
    justify-content: space-between;
  }
  .home-sec .container .sec-wrap .sec-header {
    flex-basis: 300px;
    padding-right: 3rem;
    border-top: solid 1px #ddd;
    position: relative;
  }
  .home-sec .container .sec-wrap .sec-header h2 {
    font-size: 1.25rem;
    margin: 1rem 0 0 4.5rem;
  }
  .home-sec .container .sec-wrap .sec-header span {
    position: absolute;
    top: 1rem;
    left: 0;
    writing-mode: vertical-rl;
    font-size: 64px;
    color: #ddd;
    font-weight: 700;
    line-height: 1;
  }
  .home-sec .container .sec-wrap .sec-body {
    flex-basis: calc(100% - 300px);
    padding-left: 3rem;
  }
  .about-text {
    padding-bottom: 4rem;
  }
  .salon-media .inner .media-list {
    max-width: 816px;
    margin: auto;
  }
  .salon-media .inner .media-list ul {
    display: flex;
    justify-content: space-between;
  }
  .salon-media .inner .media-list ul li {
    width: 31%;
  }
}
/*==============================
	page
==============================*/
.op-head {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.op-head h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 576px) {
  .op-head h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .op-head {
    padding-top: 3rem;
  }
  .op-head h2 {
    font-size: 2rem;
  }
}
.op-head nav ul li a {
  border: solid 1px #ddd;
  display: block;
  line-height: 1.5;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  color: #484848;
}
.op-head nav ul li a::after {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 1rem;
}
.op-head nav ul li a:hover {
  background: rgba(145, 186, 88, 0.1);
}

.op-h3 {
  border-bottom: solid 4px #FFB76F;
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.op-info .info-table {
  line-height: 1.6;
  max-width: 960px;
  margin: 0 auto 1.5rem;
  width: 100%;
}
.op-info .info-table tr th {
  background: #eee;
  border: solid 1px #ccc;
  padding: 1.25rem 1rem;
}
.op-info .info-table tr td {
  border: solid 1px #ccc;
  padding: 1.25rem 1rem;
}

.op-usage {
  border-bottom: solid 1px #ccc;
  padding: 3.5rem 0;
}
.op-usage .usage-tab {
  max-width: 480px;
  margin: 0 auto 2.75rem;
  list-style-type: none;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}
.op-usage .usage-tab li {
  width: 48%;
}
.op-usage .usage-tab li a {
  border: solid 2px #91BA58;
  color: #91BA58;
  display: block;
  padding: 0.75rem;
  text-align: center;
}
.op-usage .usage-tab li.active a {
  background: #91BA58;
  color: #fff;
}
.op-usage .usage-contents {
  display: none;
}
.op-usage .usage-contents h4 {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.op-usage .usage-contents .usage-table-inner section {
  line-height: 1.6;
}
.op-usage .usage-contents .usage-table-inner section + section {
  margin-top: 1.75rem;
}
.op-usage .usage-contents .usage-table-inner section h5 {
  margin-bottom: 0.5rem;
}
.op-usage .usage-contents .usage-table-inner section table {
  width: 100%;
}
.op-usage .usage-contents .usage-table-inner section table tr th {
  background: #eee;
  border: solid 1px #ccc;
  padding: 0.875rem;
  width: 60%;
}
.op-usage .usage-contents .usage-table-inner section table tr td {
  border: solid 1px #ccc;
  padding: 0.875rem;
  text-align: center;
  vertical-align: middle;
}
.op-usage .usage-contents .usage-table-inner > p {
  margin-top: 1.5rem;
}

.op-salary {
  padding: 3.5rem 0;
}
.op-salary .salary-tab {
  max-width: 960px;
  margin: 0 auto 2.75rem;
  list-style-type: none;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.op-salary .salary-tab li {
  margin-bottom: 0.5rem;
  width: 48%;
}
.op-salary .salary-tab li a {
  border: solid 2px #91BA58;
  color: #91BA58;
  display: block;
  padding: 0.75rem;
  line-height: 1.5;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
}
.op-salary .salary-tab li a span {
  display: block;
  font-size: 0.75rem;
}
.op-salary .salary-tab li.active a {
  background: #91BA58;
  color: #fff;
}
.op-salary .salary-contents {
  display: none;
}
.op-salary .salary-contents h4 {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.op-salary .salary-contents h5 {
  background: #eee;
  border-radius: 4px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 2.5rem 0 1rem;
  padding: 0.75rem;
}
.op-salary .salary-contents .salary-requirements {
  line-height: 1.6;
}
.op-salary .salary-contents table {
  width: 100%;
  line-height: 1.6;
}
.op-salary .salary-contents table tr th {
  border: solid 1px #ddd;
  padding: 0.5rem 0.75rem;
  vertical-align: middle;
}
.op-salary .salary-contents table tr td {
  border: solid 1px #ddd;
  padding: 0.5rem 0.75rem;
  vertical-align: middle;
}
.op-salary .salary-contents table thead tr th {
  background: #9c9c9c;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-bottom: double 3px #ddd;
}
.op-salary .salary-contents table tbody tr th {
  width: 160px;
}
.op-salary .salary-contents table tbody tr td:nth-of-type(1) {
  text-align: center;
  width: 160px;
}

.home-back a {
  background-color: #999;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  padding: 0.875rem;
  text-align: center;
  max-width: 280px;
}
.home-back a::after {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.75rem;
}
.home-back a:hover {
  background: #666;
}

@media (max-width: 767px) {
  .op-usage .usage-table-wrap .usage-table-inner:nth-child(2) {
    margin-top: 1.75rem;
  }
  .op-info .info-table {
    font-size: 0.875rem;
  }
  .op-salary .salary-contents table {
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .op-head nav ul li {
    text-align: center;
  }
  .op-head nav ul li + li {
    margin-top: 0.5rem;
  }
  .op-salary .salary-contents .slide-right {
    color: #6c6c6c;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.375rem;
  }
  .op-salary .salary-contents .ph-slide {
    overflow-x: scroll;
  }
  .op-salary .salary-contents .ph-slide table {
    width: 150%;
  }
}
@media (min-width: 576px) {
  .op-head nav ul {
    display: -ms-flex;
    display: flex;
    justify-content: center;
  }
  .op-head nav ul li + li {
    margin-left: 0.5rem;
  }
  .op-h3 {
    font-size: 1.375rem;
  }
  .op-salary .salary-contents .slide-right {
    display: none;
  }
}
@media (min-width: 768px) {
  .op-usage .usage-table-wrap {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
  }
  .op-usage .usage-table-wrap .usage-table-inner {
    width: 48%;
  }
  .op-salary .salary-tab li {
    width: 24%;
  }
  .op-salary .salary-tab li:nth-last-of-type(n+3) a {
    line-height: 42px;
  }
  .op-salary .salary-contents table tbody tr th {
    width: 28%;
  }
  .op-salary .salary-contents table tbody tr td:nth-of-type(1) {
    width: 28%;
  }
}
@media (min-width: 1156px) {
  .page-op-single .container {
    max-width: 960px;
  }
}