@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap");
/*
 * Function
 */
/*
* mixins
*/
/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #424242;
  line-height: 1.4;
}

h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #424242;
}

h2 {
  font-size: 5.2rem;
  line-height: 1.44230769;
}

h3 {
  font-size: 2.4rem;
}

.block-margins {
  margin: 1em 0;
}

.unordered-list {
  list-style-type: disc;
}

.ordered-list {
  list-style: decimal;
}

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: #424242;
  text-decoration: none;
}
a:visited {
  color: #424242;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: #ba9420;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  max-width: 38.4rem;
  border: 1px solid #ad8302;
  line-height: 5.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #ad8302 !important;
  text-align: center;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  position: relative;
}
.btn-primary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  right: 1.2rem;
}
.btn-primary:hover {
  -webkit-box-shadow: inset -19.2rem 0 0 0 #ad8302, inset 19.2rem 0 0 0 #ad8302;
  box-shadow: inset -19.2rem 0 0 0 #ad8302, inset 19.2rem 0 0 0 #ad8302;
  color: #fff !important;
}

.nav-bar-menu {
  border-top: 1px solid #e5e5e5;
  padding: 1.25rem 2.5rem;
}
.nav-bar-menu ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav-bar-menu ul li a {
  display: block;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: #5a4c28;
  padding: 0 3rem;
  position: relative;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

@media (max-width: 991px) {
  .nav-bar-menu {
    border: none;
    padding: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    overflow-x: hidden;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
    overflow-y: scroll;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #a07b0a;
  }
  .nav-bar-menu.is_active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .nav-bar-menu ul {
    padding: 6rem 2.5rem;
    width: 100%;
    display: block;
  }
  .nav-bar-menu ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .nav-bar-menu ul li a {
    display: block;
    text-align: center;
    width: 100%;
    line-height: 6.5rem;
    color: #fff;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    position: relative;
    font-size: 2rem;
  }
}

.wrap_datepicker {
  position: relative;
}

.wrap_datepicker input.datepicker {
  cursor: pointer;
  width: 178px;
}

.wrap_datepicker input.datepicker::-webkit-input-placeholder {
  color: #262626;
  opacity: 1;
}

.wrap_datepicker input.datepicker::-moz-placeholder {
  color: #262626;
}

.wrap_datepicker input.datepicker:-ms-input-placeholder {
  color: #262626;
}

.wrap_datepicker input.datepicker:-moz-placeholder {
  color: #262626;
}

.wrap_datepicker .datepicker {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wrap_datepicker .datepicker.focus ~ .wrap_table {
  border: 1px solid #d1d1d1;
  z-index: 1;
  visibility: visible;
  top: 0;
  opacity: 1;
}

.wrap_datepicker .datepicker ~ .wrap_table {
  padding: 5px;
  position: absolute;
  top: -30px;
  background: #fff;
  width: 280px;
  margin-top: 50px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #d1d1d1;
}

.wrap_datepicker .datepicker ~ .wrap_table > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 16px;
  line-height: 40px;
  background: #d1d1d1;
  border-radius: 5px;
  color: #000000;
  border-bottom: 0;
  margin-bottom: 0;
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.next,
.wrap_datepicker .datepicker ~ .wrap_table > p span.prev {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.next::before,
.wrap_datepicker .datepicker ~ .wrap_table > p span.prev::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 15px;
  background: url("../images/cal_arrow.webp") 0 0 no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.prev::before {
  -webkit-transform: translate(-50%, -50%) scale(-1);
  -ms-transform: translate(-50%, -50%) scale(-1);
  transform: translate(-50%, -50%) scale(-1);
}

.wrap_datepicker .datepicker ~ .wrap_table table {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr th {
  border: none;
  color: #000000;
  font-size: 14px;
  line-height: 2;
  font-weight: normal;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td {
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 2;
  width: 36px;
  height: 30px;
  background: #f6f6f6;
  color: #d1d1d1;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.active {
  cursor: pointer;
  color: #000;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.selected {
  border-color: #000;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.no_day {
  opacity: 0;
  border: none;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #424242;
  font-size: 1.6rem;
  line-height: 2;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0;
  width: 100%;
}
body.is_active {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
body.is_active::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.33);
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99;
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
  border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 103rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

p {
  margin-bottom: 1.5rem;
}

input:focus {
  outline: none;
}

a > img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
a > img:hover {
  opacity: 0.7;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.thumb-box a {
  display: block;
}

.thumb-box img {
  width: 100%;
  height: auto;
}

.img-cover figure {
  display: block;
  width: 100%;
  height: 100%;
}

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

.thumb-over figure {
  display: block;
  position: relative;
  overflow: hidden;
}
.thumb-over figure::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thumb-over figure img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thumb-over:hover figure::before {
  background: rgba(0, 0, 0, 0.5);
}

.thumb-over:hover figure img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.scrollTop {
  position: fixed;
  bottom: -50px;
  right: 4rem;
  z-index: 10;
  height: 200px;
  text-align: center;
  -webkit-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  z-index: 999;
  width: 6rem;
}
.scrollTop__main {
  cursor: pointer;
}
.scrollTop__main:hover {
  opacity: 0.7;
}
.scrollTop__main img {
  width: 7.6rem;
}
.scrollTop.active {
  bottom: 0;
  opacity: 1;
}

.w-100 {
  width: 100% !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.error {
  font-size: 1.2rem;
  color: #ff0000;
  width: 100%;
}

.result input.error {
  border-color: #e41919;
}

.result div.error {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(228, 25, 25, 0.75);
  color: #fff;
}

.result div.success {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(50, 178, 95, 0.75);
  color: #fff;
}

.loader_wrap {
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: white;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
.header__top {
  background: #782e41;
}
.header__top h1 {
      font-family: "Noto Sans JP", sans-serif;
    line-height: 2rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
}
.header__main {
  padding-left: 5.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.header__main .logo {
  width: 12.3rem;
}
.header__main--info a {
  display: block;
  width: 16.7rem;
  margin-right: 1rem;
}
.header__main--info a:first-child {
  width: 22.1rem;
}

@media (max-width: 991px) {
  .header__main {
    padding: 1.2rem 1.5rem;
  }
  .header__main .logo {
    width: 13.7rem;
  }
  .header__main--info a {
    display: none;
  }
  .header__main--info a:first-child {
    display: block;
    width: 22.1rem;
    margin-right: 0;
  }
}

.banner {
  position: relative;
  padding-top: 13.8rem;
}
.banner .slider {
  position: relative;
}
.banner .slider::after {
  content: "";
  display: block;
  width: 100%;
  height: 13.7rem;
  background-image: url("../images/slider-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner .slider .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 13rem;
  width: 100%;
}
.banner .slider .slick-dots li {
  padding: 0 0.45rem;
}
.banner .slider .slick-dots li button {
  text-indent: -9999px;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  min-height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
  border: none;
  padding: 0;
}
.banner .slider .slick-dots li.slick-active button {
  background: white;
}

.head-box {
  text-align: center;
  margin-bottom: 3rem;
}
.head-box h2 {
  color: #5a4c28;
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.head-box h2::after {
  content: "";
  font-size: 6.2rem;
  color: #5a4c28;
  opacity: 0.11;
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.head-box p {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: #5a4c28;
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

.concept-box {
  padding: 3rem 0 5rem 0;
}
.concept-box .head-box h2::after {
  content: "CONCEPT";
}
.concept-box__main .head {
  text-align: center;
  margin-bottom: 3.3rem;
}
.concept-box__main .head h3 {
  font-size: 2.3rem;
  line-height: 2.17391304;
  border-bottom: 1px solid #af9336;
  display: inline-block;
}
.concept-box__main .head h3 span {
  color: #866d39;
}
.concept-box__main .text-box {
  width: calc(100% - 38.4rem);
  padding-right: 3.5rem;
}
.concept-box__main .text-box p:last-child {
  margin-bottom: 0;
}
.concept-box__main .thumb-box {
  width: 38.4rem;
}

.voices-box {
  padding: 2rem 0 3rem;
  background-image: url("../images/voices-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left top;
  overflow: hidden;
}
.voices-box .head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.voices-box .head h2 {
  font-size: 2.6rem;
  line-height: 1.17391304;
}
.voices-box .head h2 span {
  font-size: 5.3rem;
}
.voices-box .head h2 span.color {
  color: #ba9420;
}
.voices-box__main .slider {
  position: relative;
}
.voices-box__main .slider .slick-arrow {
  position: absolute;
  width: 1.4rem;
  height: 3.3rem;
  text-indent: -9999px;
  background-image: url("../images/arow-left.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 13rem;
  z-index: 9;
}
.voices-box__main .slider .slick-arrow.slick-prev {
  left: calc((100% - 49rem) / 2);
}
.voices-box__main .slider .slick-arrow.slick-next {
  background-image: url("../images/arow-right.svg");
  right: calc((100% - 49rem) / 2);
}
.voices-box__main .slider .items {
  padding: 0 1.5rem;
}
.voices-box__main .slider .items .thumb-box {
  margin-bottom: 1.2rem;
}
.voices-box__main .slider .items .text-box .title {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 9.6rem;
}
.voices-box__main .slider .items .text-box .title span {
  font-size: 7rem;
  color: #866d39;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.voices-box__main .slider .items .text-box .title .main {
  padding-left: 0.5rem;
}
.voices-box__main .slider .items .text-box .title .main p {
  color: #866d39;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0;
}
.voices-box__main .slider .items .text-box .title .main h3 {
  line-height: 1.33333333;
}
.voices-box__main .more-box {
  text-align: center;
  padding-top: 3rem;
}

.head_spa-box {
  padding: 6rem 0 0;
  background-image: url("../images/head_spa-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat-x;
}
.head_spa-box .container {
  max-width: 83rem;
}
.head_spa-box .head-box h2::after {
  content: "HEAD SPA";
}
.head_spa-box .des-box {
  text-align: center;
  margin-bottom: 2rem;
}
.head_spa-box .des-box p {
  margin-bottom: 0;
  font-size: 2.4rem;
  color: #5a4c28;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
.head_spa-box__main .d-flex {
  margin: 0 -1.5rem;
}
.head_spa-box__main .items {
  width: 50%;
  padding: 0 1.5rem;
}
.head_spa-box__main .items ul li {
  border-bottom: 1px dashed #782e41;
  padding: 1rem 0 1rem 3.4rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 1.77777778;
  font-weight: 700;
  position: relative;
}
.head_spa-box__main .items ul li::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.3rem;
  background-image: url("../images/icon-1.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 1.5rem;
}
.head_spa-box__main .items ul li span {
  color: #ad8302;
}

.reason-box {
  padding: 16rem 0 6rem;
  background-image: url("../images/reason-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fbf8ee;
}
.reason-box .head-box h2::after {
  content: "REASON";
}
.reason-box .des-box {
  text-align: center;
  margin-bottom: 4rem;
}
.reason-box .des-box p {
  margin-bottom: 0;
  font-size: 2.4rem;
  color: #5a4c28;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
.reason-box__main .d-flex {
  margin: 0 -1.5rem;
}
.reason-box__main .items {
  width: calc(100% / 3);
  padding: 0 1.5rem;
}
.reason-box__main .items .title {
  margin-bottom: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  min-height: 8.7rem;
}
.reason-box__main .items .title span {
  font-size: 7rem;
  line-height: 1;
  color: #866d39;
  font-family: "Noto Serif JP", serif;
}
.reason-box__main .items .title h3 {
  font-size: 2rem;
  line-height: 1.45;
  color: #5a4c28;
  padding-left: 0.8rem;
}
.reason-box__main .items .thumb-box {
  margin-bottom: 2rem;
  text-align: center;
}
.reason-box__main .items .thumb-box img {
  width: 100%;
  max-width: 35.7rem;
}
.reason-box__main .items .text-box p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.shirodara-box {
  padding: 4rem 0 6rem;
  background-image: url("../images/shirodara-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
}
.shirodara-box .head {
  text-align: center;
  margin-bottom: 4rem;
}
.shirodara-box .head p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #5a4c28;
  line-height: 1.44444444;
  margin-bottom: 0;
  font-family: "Noto Serif JP", serif;
}
.shirodara-box .head h2 {
  font-size: 3.7rem;
  color: #5a4c28;
}
.shirodara-box__main .text-box {
  width: calc(100% - 16.7rem);
  padding-right: 4rem;
}
.shirodara-box__main .text-box p {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
  line-height: 1.71428571;
}
.shirodara-box__main .text-box p span {
  font-weight: 700;
  color: #ba9420;
}
.shirodara-box__main .text-box h3 {
  border-bottom: 1px solid #ad8302;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  color: #ad8302;
}
.shirodara-box__main .text-box ul li {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.71428571429;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1.5rem;
}
.shirodara-box__main .text-box ul li::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: #ad8302;
  margin-right: 0.5rem;
  border-radius: 50%;
}
.shirodara-box__main .video-box {
  width: 16.7rem;
}
.shirodara-box__main .video-box video {
  width: 100%;
  height: auto;
}

.menu-box {
  padding: 9rem 0;
  position: relative;
}
.menu-box::after {
  content: "";
  width: 38.1rem;
  height: 28.2rem;
  background-image: url("../images/menu-icon.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.menu-box .container {
  max-width: 83rem;
}
.menu-box .head-box {
  margin-bottom: 8rem;
}
.menu-box .head-box h2::after {
  content: "MENU";
}
.menu-box__main .items {
  padding-bottom: 3.5rem;
  margin-bottom: 5.5rem;
  border-bottom: 1px solid #ba9420;
}
.menu-box__main .items:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.menu-box__main .items_info .labels {
  margin-bottom: 2rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.menu-box__main .items_info .labels h3 {
  font-size: 2rem;
  color: #424242;
}
.menu-box__main .items_info .labels .price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
.menu-box__main .items_info .labels .price span {
  font-size: 3.6rem;
}
.menu-box__main .items_info .main-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.menu-box__main .items_info .main-box .thumb-box {
  width: 46.1rem;
  padding-right: 1.5rem;
}
.menu-box__main .items_info .main-box .text-box {
  width: calc(100% - 46.1rem);
  background: #faf8f5;
  padding: 2rem;
}
.menu-box__main .items_info .main-box .text-box h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.menu-box__main .items_info .main-box .text-box h3 span {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #624a00;
  font-size: 2rem;
  color: #624a00;
  line-height: 1.2;
}
.menu-box__main .items_info .main-box .text-box ul li {
  margin-bottom: 0.5rem;
  background: #fff;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  color: #624a00;
  line-height: 1.71428571429;
}
.menu-box__main .items_info .main-box .text-box ul li:last-child {
  margin-bottom: 0;
}
.menu-box__main .items_info .main-box .thumb-smail {
  width: 36.3rem;
}
.menu-box__main .items_info .main-box .txt-box {
  width: calc(100% - 36.3rem);
}
.menu-box__main .items_info .main-box .txt-box p {
  line-height: 1.7;
}
.menu-box__main .items_info .main-box .txt-box h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  background: #ba9420;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 1rem 0;
}
.menu-box__main .items_info .main-box .txt-box ul li {
  border-bottom: 1px solid #e6dfc7;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 700;
  padding: 1rem 0 1rem 1.8rem;
  position: relative;
}
.menu-box__main .items_info .main-box .txt-box ul li::before {
  content: "●";
  color: #424242;
  position: absolute;
  top: 1rem;
  left: 0;
}
.menu-box__main .items_info.no .labels h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-box__main .items_info.no .labels h3::before {
  content: "";
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background-image: url("../images/icon-2.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 1rem;
}
.menu-box__main .items_info.no2 .labels h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-box__main .items_info.no2 .labels h3::before {
  content: "";
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background-image: url("../images/no2.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 1rem;
}
.menu-box__main .items_info.titleline .labels .price {
  width: 100%;
  text-align: right;
}
.menu-box__main .items_what {
  position: relative;
  width: 100%;
  max-width: 63.8rem;
  margin: 4rem auto 0;
  background: #fff9eb;
  padding: 4rem 3rem 2.5rem 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu-box__main .items_what .labels {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ba9420;
  border-radius: 19px;
  line-height: 3.8rem;
  padding: 0 3.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.menu-box__main .items_what .text-box {
  width: calc(100% - 21.4rem);
  padding-right: 5rem;
}
.menu-box__main .items_what .text-box p {
  font-size: 1.4rem;
  line-height: 1.7;
}
.menu-box__main .items_what .thumb-box {
  width: 21.4rem;
}
.menu-box__main .items_treatment {
  margin-top: 2.5rem;
  background: #faf8f5;
  padding: 2rem;
}
.menu-box__main .items_treatment h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.menu-box__main .items_treatment h3 span {
  display: inline-block;
  color: #624a00;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #624a00;
  padding-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
.menu-box__main .items_treatment ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu-box__main .items_treatment ul li {
  width: calc(100% / 3);
  padding: 0 0.2rem;
  margin-bottom: 0.4rem;
}
.menu-box__main .items_treatment ul li span {
  display: block;
  background: #fff;
  line-height: 4.2rem;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  color: #624a00;
}

.for_men-box {
  padding: 6rem 0;
  background: #faf8f5;
}
.for_men-box .head-box h2::after {
  content: "FOR MEN";
}
.for_men-box .des-box {
  text-align: center;
  margin-bottom: 5rem;
}
.for_men-box .des-box p {
  margin-bottom: 0;
  font-size: 2rem;
  color: #5a4c28;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
.for_men-box .container {
  max-width: 83rem;
}
.for_men-box__main .items {
  margin-bottom: 3rem;
}
.for_men-box__main .items .d-flex {
  margin: 0 -1.5rem;
}
.for_men-box__main .items .text-box {
  width: 50%;
  padding: 0 1.5rem;
}
.for_men-box__main .items .text-box p {
  line-height: 1.5;
}
.for_men-box__main .items .text-box p:last-child {
  margin-bottom: 0;
}
.for_men-box__main .items .text-box p span {
  font-weight: 700;
  font-size: 2.1rem;
  color: #ba9420;
  font-family: "Noto Serif JP", serif;
}
.for_men-box__main .items .text-box h3 {
  font-size: 3rem;
  color: #5a4c28;
  margin-bottom: 1.5rem;
}
.for_men-box__main .items .thumb-box {
  width: 50%;
  padding: 0 1.5rem;
  text-align: center;
}
.for_men-box__main .items:nth-child(even) .text-box {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.for_men-box__main .items:nth-child(even) .thumb-box {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
.for_men-box__main .items:nth-child(even) .thumb-box img {
  width: 100%;
  max-width: 27rem;
}

.voice_rating-box {
  padding: 6rem 0;
  background-image: url("../images/voice_rating-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.voice_rating-box .head-box h2::after {
  content: "VOICE";
}
.voice_rating-box .des-box {
  text-align: center;
  margin-bottom: 5rem;
}
.voice_rating-box .des-box p {
  margin-bottom: 0;
  font-size: 2.4rem;
  color: #5a4c28;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
.voice_rating-box .des-box p span {
  font-size: 4.6rem;
}
.voice_rating-box__main .items {
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px #00000017;
  box-shadow: 0px 0px 6px #00000017;
  margin-bottom: 2rem;
  padding: 3rem 2rem;
  position: relative;
}
.voice_rating-box__main .items::after {
  content: "";
  display: block;
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  border: 1px solid #bf9d0d;
}
.voice_rating-box__main .items:last-child {
  margin-bottom: 0;
}
.voice_rating-box__main .items .labels {
  position: relative;
  z-index: 9;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 36.2rem;
  padding-right: 1rem;
}
.voice_rating-box__main .items .labels img {
  width: 6.4rem;
  min-width: 6.4rem;
  margin-right: 1.5rem;
}
.voice_rating-box__main .items .labels .title h3 {
  font-size: 1.8rem;
  font-weight: 500;
}
.voice_rating-box__main .items .labels .title p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}
.voice_rating-box__main .items .labels .title img {
  width: 9.2rem;
  min-width: 9.2rem;
}
.voice_rating-box__main .items .info {
  width: calc(100% - 36.2rem);
}
.voice_rating-box__main .items .info p {
  font-size: 1.2rem;
  line-height: 1.83333333;
  margin-bottom: 0;
}
.voice_rating-box .des {
  padding-top: 2rem;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.voice_rating-box .instagram-box {
  padding-top: 4.5rem;
  text-align: center;
}
.voice_rating-box .instagram-box .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.voice_rating-box .instagram-box h3 {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3rem;
}
.voice_rating-box .instagram-box h3::before,
.voice_rating-box .instagram-box h3::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.8rem;
  background: #424242;
  margin: 0 1.5rem;
}
.voice_rating-box .instagram-box h3::before {
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
.voice_rating-box .instagram-box h3::after {
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}
.voice_rating-box .instagram-box a {
  display: inline-block;
  width: 100%;
  max-width: 38.5rem;
}

.flow-box {
  padding: 6rem 0;
  position: relative;
}
.flow-box::after {
  content: "";
  width: 30rem;
  height: 42rem;
  background-image: url("../images/icon-flow.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.flow-box .head-box h2::after {
  content: "FLOW";
}
.flow-box .container {
  max-width: 83rem;
}
.flow-box__main {
  counter-reset: section;
}
.flow-box__main .items {
  margin-bottom: 2.7rem;
  background: #d0b981;
  border-radius: 5px;
  padding: 1.5rem 1rem;
  position: relative;
}
.flow-box__main .items::after {
  content: "";
  display: block;
  width: 7rem;
  height: 4.6rem;
  background-image: url("../images/icon-flow-1.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  bottom: -4rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
}
.flow-box__main .items .thumb-box {
  width: 17.5rem;
  overflow: hidden;
  border-radius: 5px;
}
.flow-box__main .items .text-box {
  width: calc(100% - 17.5rem);
  padding-left: 2rem;
}
.flow-box__main .items .text-box h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 2.3rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2rem;
}
.flow-box__main .items .text-box h3::before {
  counter-increment: section;
  content: "" counter(section) "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: #fff;
  border-radius: 50%;
  margin-right: 1.5rem;
  color: #d5c08c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  z-index: 3.3rem;
}
.flow-box__main .items .text-box p {
  margin-bottom: 0;
  line-height: 1.5625;
  color: #fff;
}
.flow-box__main .items:last-child {
  margin-bottom: 0;
}
.flow-box__main .items:nth-child(2) {
  background: #bca05d;
}
.flow-box__main .items:nth-child(2)::after {
  background-image: url("../images/icon-flow-2.svg");
}
.flow-box__main .items:nth-child(2) .text-box h3::before {
  color: #bca05d;
}
.flow-box__main .items:nth-child(3) {
  background: #a08545;
}
.flow-box__main .items:nth-child(3)::after {
  background-image: url("../images/icon-flow-3.svg");
}
.flow-box__main .items:nth-child(3) .text-box h3::before {
  color: #a08545;
}
.flow-box__main .items:nth-child(4) {
  background: #7c642b;
}
.flow-box__main .items:nth-child(4)::after {
  display: none;
}
.flow-box__main .items:nth-child(4) .text-box h3::before {
  color: #7c642b;
}

.fqa-box {
  padding: 6rem 0;
  background: #fbf8ee;
}
.fqa-box .head-box {
  margin-bottom: 5rem;
}
.fqa-box .head-box h2::after {
  content: "FAQ";
}
.fqa-box .container {
  max-width: 83rem;
}
.fqa-box__main {
  border-bottom: 1px solid #5a4c28;
}
.fqa-box__main .accordion {
  padding: 1.5rem 4.5rem 1.5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #5a4c28;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  border-top: 1px solid #5a4c28;
  cursor: pointer;
  position: relative;
}
.fqa-box__main .accordion::before {
  content: "Q";
  font-size: 2.4rem;
  margin-right: 1rem;
  line-height: 1;
}
.fqa-box__main .accordion::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  right: 0;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.fqa-box__main .accordion.active::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.fqa-box__main .panel {
  padding-bottom: 1.5rem;
  display: none;
}
.fqa-box__main .panel p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.chartier-box {
  padding: 6rem 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#fafbf6), to(#e8ded1));
  background: transparent -o-linear-gradient(top, #fafbf6 0%, #e8ded1 100%);
  background: transparent linear-gradient(180deg, #fafbf6 0%, #e8ded1 100%);
}
.chartier-box .container {
  max-width: 83rem;
}
.chartier-box .head {
  text-align: center;
  margin-bottom: 4rem;
}
.chartier-box .head h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.75;
}
.chartier-box__main .list-items {
  margin: 0 -1.5rem;
}
.chartier-box__main .list-items .items {
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: 30px;
}

.chartier-box__main .list-items .items .thumb-box {
  width: 16.1rem;
}
.chartier-box__main .list-items .items .text-box {
  width: calc(100% - 16.1rem);
  padding-left: 1.5rem;
}
.chartier-box__main .list-items .items .text-box h3 {
  color: #ad8302;
  font-weight: 500;
  line-height: 1;
}
.chartier-box__main .list-items .items .text-box P {
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
.chartier-box__main .list-items .items .text-box P span {
  color: #ad8302;
  font-size: 1.2rem;
}
.chartier-box__map {
  padding-top: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.chartier-box__map .info-box {
  width: calc(100% - 40rem);
  padding-right: 1rem;
}
.chartier-box__map .info-box h3 {
  font-weight: 900;
  line-height: 1.7;
  position: relative;
  color: #5a4c28;
  margin-bottom: 1.2rem;
}
.chartier-box__map .info-box h3::after {
  content: "";
  width: 3.6rem;
  height: 2px;
  background: #5a4c28;
  position: absolute;
  bottom: 0;
  left: 0;
}
.chartier-box__map .info-box p {
  line-height: 1.75;
  color: #5a4c28;
}
.chartier-box__map .gmap-box {
  width: 40rem;
}
.chartier-box__map .gmap-box iframe {
  width: 100%;
}

.inquiry-box {
  padding: 6rem 0;
}
.inquiry-box .container {
  max-width: 83rem;
}
.inquiry-box__main .head-box h2::after {
  content: "RESERVE";
}
.inquiry-box__main .des-box {
  text-align: center;
  margin-bottom: 3.5rem;
}
.inquiry-box__main .des-box a {
  display: inline-block;
  width: 100%;
  max-width: 32rem;
}
.inquiry-box__main .form-group {
  margin-bottom: 1.5rem;
  padding: 2rem 0;
  border-top: 1px dashed rgba(182, 152, 23, 0.44);
}
.inquiry-box__main .form-group .labels {
  margin-bottom: 1rem;
}
.inquiry-box__main .form-group .labels span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #262626;
  margin-bottom: 1.5rem;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
}
.inquiry-box__main .form-group .labels p {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #000;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
  margin-bottom: 0;
}
.inquiry-box__main .form-group .input {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
  color: #262626;
}
.inquiry-box__main .form-group .input input[type="text"],
.inquiry-box__main .form-group .input input[type="email"],
.inquiry-box__main .form-group .input textarea,
.inquiry-box__main .form-group .input select {
  width: 100%;
  height: 4.5rem;
  padding: 0 1.5rem;
  background: #f5f5f5;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
}
.inquiry-box__main .form-group .input input[type="text"]:focus,
.inquiry-box__main .form-group .input input[type="email"]:focus,
.inquiry-box__main .form-group .input textarea:focus,
.inquiry-box__main .form-group .input select:focus {
  outline: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.inquiry-box__main .form-group .input textarea {
  padding: 2rem 2.5rem;
  min-height: 20rem;
}
.inquiry-box__main .form-group .input .grdate .items {
  width: 29.7rem;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.inquiry-box__main .form-group .input .grdate .items .icon {
  width: 2.5rem;
  height: 2.6rem;
  background-image: url("../images/icon-3.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0 2rem 0 1rem;
}
.inquiry-box__main .form-group .input .datepicker {
  cursor: pointer;
}
.inquiry-box__main .form-group .input.checkbox label {
  margin-right: 5rem;
}
.inquiry-box__main .form-group .input.checkbox label:last-child {
  margin-right: 0;
}
.inquiry-box__main .form-group.required .labels span::after {
  content: "必須";
  display: block;
  border: 1px solid #f48282;
  border-radius: 5px;
  width: 5.5rem;
  text-align: center;
  line-height: 2.4rem;
  font-size: 1.4rem;
  color: #f48282;
  margin-left: 2rem;
}
.inquiry-box__main .form-group.form-group-textarea {
  border: none;
}
.inquiry-box__main .more-box {
  text-align: center;
}
.inquiry-box__main .more-box .btn-primary::after {
  display: none;
}

.menu-sp {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ba9420;
  border-top: 2px solid #f0d47e;
}
.menu-sp .main-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.menu-sp .main-box .items {
  padding: 1rem 0;
  text-align: center;
  position: relative;
}
.menu-sp .main-box .items a {
  display: block;
  width: 100%;
  text-align: center;
  border-left: 1px solid #f0d47e;
  padding: 0 1.2rem;
}
.menu-sp .main-box .items a img {
  display: inline-block;
  width: 100%;
}
.menu-sp .main-box .items:nth-child(2) a img {
  width: 5.7rem;
}
.menu-sp .main-box .items:nth-child(3) a img {
      width: 5.4rem;
}
.menu-sp .main-box .items:nth-child(4) a img {
  width: 7rem;
}
.menu-sp .main-box .items:nth-child(5) a img {
  width: 5.6rem;
}
.menu-sp .main-box .items.icon-menu {
  width: 7.4rem;
  height: 7.2rem;
  background-color: #a07b0a;
  background-image: url("../images/icon-menu.svg");
  background-repeat: no-repeat;
  background-size: 4.6rem auto;
  background-position: center;
}
.menu-sp .main-box .items.is-active {
  background-image: url("../images/icon-menu-close.svg");
}

.thanks-page {
  padding: 20rem 0 4rem;
  min-height: 75vh;
}
.thanks-page__main {
  text-align: center;
}
.thanks-page__main h3 {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  color: #5a4c28;
}
.thanks-page__main p {
  margin-bottom: 2.5rem;
}

.btn-right {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
  width: 6.4rem;
}

.footer {
  padding: 3rem 0 1rem;
  background: #fbf8ee;
}
.footer .container {
  max-width: 83rem;
}
.footer__main .logo {
  margin-bottom: 1rem;
  width: 21.2rem;
}
.footer__main p a {
  font-size: 3rem;
}
.footer .copyright {
  text-align: center;
}
.footer .copyright p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* layout - Responsive .
========================================================================== */
.sp {
  display: none;
}

.slick-slide img.pc {
  display: block;
}

.slick-slide img.sp {
  display: none;
}

@media screen and (max-width: 1320px) and (min-width: 992px) {
  html {
    font-size: 9px;
  }
  .nav-bar-menu ul li a {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 1050px) and (min-width: 992px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 2.4154vw;
  }
  body {
    padding-bottom: 7rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .container {
    padding: 0 1.5rem;
  }
  h2 {
    font-size: 5.2rem;
  }
  .banner {
    padding-top: 9.2rem;
  }
  .banner .container {
    padding: 0;
  }
  .banner__main .slider {
    overflow: hidden;
  }
  .banner__main .slider::after {
    height: 7.8rem;
    background-image: url("../images/slider-bg-sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
  }
  .banner__main .slider .slick-dots {
    bottom: 9rem;
  }
  .slick-slide img.pc {
    display: none;
  }
  .slick-slide img.sp {
    display: block;
  }
  .head-box {
    margin-bottom: 4rem;
  }
  .head-box h2::after {
    width: 100%;
  }
  .concept-box {
    padding: 3rem 0 4rem 0;
  }
  .concept-box__main .head {
    text-align: left;
    margin-bottom: 2.3rem;
  }
  .concept-box__main .text-box {
    width: 100%;
    padding-right: 0;
  }
  .concept-box__main .thumb-box {
    width: 100%;
    padding-top: 4.2rem;
  }
  .voices-box {
    padding: 2rem 0 3.3rem 0;
  }
  .voices-box__main {
    padding: 0 1.5rem;
  }
  .voices-box__main .slider .slick-arrow {
    width: 1.4rem;
    height: 4.3rem;
    top: 9rem;
    z-index: 9;
  }
  .voices-box__main .slider .slick-arrow.slick-prev {
    left: 0;
  }
  .voices-box__main .slider .slick-arrow.slick-next {
    right: 0;
  }
  .voices-box__main .slider .items {
    padding: 0 2.2rem;
  }
  .voices-box__main .slider .items .text-box .title {
    min-height: auto;
  }
  .voices-box__main .more-box {
    text-align: center;
    padding-top: 3rem;
  }
  .head_spa-box .des-box {
    margin-bottom: 3rem;
  }
  .head_spa-box__main .d-flex {
    margin: 0;
  }
  .head_spa-box__main .items {
    width: 100%;
    padding: 0;
  }
  .reason-box {
    padding: 13rem 0 6rem;
    background-image: url("../images/reason-bg-sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #fbf8ee;
  }
  .reason-box__main {
    padding: 0 1.5rem;
  }
  .reason-box__main .d-flex {
    margin: 0;
  }
  .reason-box__main .items {
    width: calc(100%);
    padding: 0;
    border-bottom: 1px solid #ad8302;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .reason-box__main .items .title {
    min-height: auto;
  }
  .reason-box__main .items .title h3 br {
    display: none;
  }
  .shirodara-box {
    background-image: url("../images/shirodara-bg-sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
  }
  .shirodara-box__main .text-box {
    width: 100%;
    padding-right: 0;
  }
  .shirodara-box__main .text-box .list-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .shirodara-box__main .text-box ul {
    display: block;
    width: calc(100% - 16.7rem);
  }
  .shirodara-box__main .video-box {
    width: 16.7rem;
  }
  .shirodara-box__main .video-box video {
    width: 100%;
    height: auto;
  }
  .menu-box::after {
    width: 16.9rem;
    height: 12.5rem;
  }
  .menu-box .head-box {
    margin-bottom: 5rem;
  }
  .menu-box__main {
    padding: 0 1.5rem;
  }
  .menu-box__main .items {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .menu-box__main .items:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .menu-box__main .items_info .labels {
    margin-bottom: 1rem;
  }
  .menu-box__main .items_info .labels h3 {
    width: 100%;
  }
  .menu-box__main .items_info .labels .price {
    width: 100%;
    text-align: right;
  }
  .menu-box__main .items_info .main-box .thumb-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .menu-box__main .items_info .main-box .text-box {
    width: calc(100%);
  }
  .menu-box__main .items_info .main-box .thumb-smail {
    width: 100%;
  }
  .menu-box__main .items_info .main-box .txt-box {
    width: calc(100%);
  }
  .menu-box__main .items_info .main-box .txt-box p {
    line-height: 1.7;
  }
  .menu-box__main .items_info .main-box .txt-box h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    background: #ba9420;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    padding: 1rem 0;
  }
  .menu-box__main .items_info .main-box .txt-box ul li {
    border-bottom: 1px solid #e6dfc7;
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 700;
    padding: 1rem 0 1rem 1.8rem;
    position: relative;
  }
  .menu-box__main .items_info .main-box .txt-box ul li::before {
    content: "●";
    color: #424242;
    position: absolute;
    top: 1rem;
    left: 0;
  }
  .menu-box__main .items_info.no .labels h3::before {
    min-width: 5.2rem;
    min-height: 5.2rem;
  }
   .menu-box__main .items_info.no2 .labels h3::before {
    min-width: 5.2rem;
    min-height: 5.2rem;
  }
  .menu-box__main .items_info.titleline .labels .price {
    width: 100%;
    text-align: right;
  }
  .menu-box__main .items_what {
    padding: 4rem 2rem 2.5rem 2rem;
  }
  .menu-box__main .items_what .labels {
    white-space: nowrap;
  }
  .menu-box__main .items_what .text-box {
    width: calc(100%);
    padding-right: 0;
  }
  .menu-box__main .items_what .text-box p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .menu-box__main .items_what .thumb-box {
    width: 100%;
  }
  .menu-box__main .items_treatment ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .menu-box__main .items_treatment ul li {
    width: calc(100%);
    padding: 0;
  }
  .for_men-box .des-box {
    margin-bottom: 2.5rem;
  }
  .for_men-box .des-box p {
    font-size: 2.4rem;
  }
  .for_men-box__main .items {
    margin-bottom: 2rem;
  }
  .for_men-box__main .items .d-flex {
    margin: 0;
  }
  .for_men-box__main .items .text-box {
    width: 100%;
    padding: 0;
  }
  .for_men-box__main .items .text-box p span {
    display: block;
    text-align: center;
    font-size: 1.8rem;
  }
  .for_men-box__main .items .text-box h3 {
    font-size: 2.4rem;
    text-align: center;
  }
  .for_men-box__main .items .thumb-box {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .voice_rating-box {
    background-image: url("../images/voice_rating-bg-sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .voice_rating-box .des-box {
    margin-bottom: 3rem;
  }
  .voice_rating-box__main .items {
    padding: 2rem;
  }
  .voice_rating-box__main .items .labels {
    width: 100%;
    padding-right: 0;
  }
  .voice_rating-box__main .items .info {
    padding-top: 1.5rem;
    width: calc(100%);
  }
  .voice_rating-box .instagram-box h3 {
    padding: 0;
  }
  .flow-box::after {
    width: 12.7rem;
    height: 17.8rem;
    top: 2.4rem;
  }
  .flow-box__main .items {
    padding: 8rem 1.5rem 3rem;
    position: relative;
  }
  .flow-box__main .items::after {
    content: "";
    display: block;
    width: 7rem;
    height: 4.6rem;
    background-image: url("../images/icon-flow-1.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: -4rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
  }
  .flow-box__main .items .thumb-box {
    width: 17.5rem;
    overflow: hidden;
    border-radius: 5px;
  }
  .flow-box__main .items .text-box {
    width: calc(100% - 17.5rem);
    padding-left: 2rem;
  }
  .flow-box__main .items .text-box h3 {
    width: 100%;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }
  .fqa-box {
    background-image: url("../images/fqa-bg-sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
  }
  .chartier-box__main .list-items {
    margin: 0;
  }
  .chartier-box__main .list-items .items {
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
  }
  .chartier-box__map {
    padding-top: 1rem;
  }
  .chartier-box__map .info-box {
    width: calc(100%);
    padding-right: 0;
  }

  .chartier-box__map .gmap-box {
    width: 100%;
  }
  .inquiry-box__main .form-group .input .datepicker {
    margin-bottom: 1rem;
  }
  .inquiry-box__main .form-group .input.checkbox {
    font-size: 1.4rem;
  }
  .inquiry-box__main .more-box {
    margin-bottom: 2rem;
  }
  .inquiry-box__main .more-box .more {
    font-size: 2.1rem;
  }
  .menu-sp {
    display: block;
  }
  .thanks-page {
    padding-top: 14rem;
    min-height: auto;
  }
  .thanks-page__main p {
    text-align: left;
  }
}

/* ipad Portrait */
/* ipad Landscape */
.blog-box {
  padding-top: 3.5rem;
}
.blog-box__main {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
}
.blog-box__main .d-flex {
  margin: 0 -1.1rem;
}
.blog-box__main .items {
  width: calc(100% / 3);
  padding: 0 1.1rem;
}
.blog-box__main .more-box {
  padding-top: 4rem;
  text-align: center;
}
.blog-box__main .more-box .no-arow::after {
  display: none;
}
.grid-post .items .thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 15.5rem;
}
.grid-post .items .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
.grid-post .items a:hover .thumbnail img {
  opacity: 0.7;
  transform: scale(1.05)
}
.grid-post .items .text {
  padding-top: 1rem;
}
.grid-post .items h3 {
  font-size: 1.6rem;
  color: #AD8302;
  line-height: 1.5625;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .5rem;
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
}
.grid-post .items time {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.4rem;
  color: #C4BEAE;
}
.grid-post .items time i {
  display: inline-block;
  margin-right: .2rem;
  margin-top: .2rem;
}
@media (max-width: 991px) {
  .blog-box__main .d-flex {
    margin: 0;
  }
  .blog-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 2.5rem;
  }
  .blog-box__main .items:last-child {
    margin-bottom: 0;
  }
  .grid-post .items main {
    display: flex;
    flex-wrap: wrap;
  }
  .grid-post .items .thumbnail {
    width: 16.5rem;
    padding-top: 10.2rem;
  }
  .grid-post .items .text {
    padding-top: 0;
    padding-left: 1rem;
    width: calc(100% - 16.5rem);
  }
  .grid-post .items h3 {
    -webkit-line-clamp: 3;
    margin-bottom: .2rem;
  }
  .grid-post .items time i {
    display: inline-block;
    margin-right: .2rem;
    margin-top: .2rem;
  }
}

.recruit-txt{
      border: 1px solid #000000;
    width: 80%;
      padding: 20px 60px;
    font-size: 16px;
    /* margin-top: 40px; */
    border-radius: 60px;
}


.chartier-box__main .list-items .items .thumb-box {
    width: 16.1rem!important;
}

.f-icon{
  display:flex;
}

.f-icon li{
    width: 30px;
    margin-right: 10px;
}