@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #675B40;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1400px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    overflow-x: hidden;
  }
}

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

strong {
  font-weight: bold;
}

a {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
a:link {
  color: #675B40;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #675B40;
  text-decoration: none;
}
a:hover {
  color: #675B40;
  text-decoration: none;
  opacity: .7;
}
a:active {
  color: #675B40;
  text-decoration: none;
}

a[href^="tel"] {
  color: #675B40;
}

.contain {
  width: 1400px;
  min-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #675B40;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #675B40;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #675B40;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #675B40;
}
input::placeholder, textarea::placeholder {
  color: #675B40;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #675B40;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #675B40;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #675B40;
}
input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  color: #675B40;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #675B40;
}

@media screen and (min-width: 769px) {
  .u_pc {
    display: block;
  }

  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u_pc {
    display: none;
  }

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

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 1400px;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 calc(40/750*100vw);
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
}

/* =================================
 l_header
================================= */
.l_header .header_top {
  background: #E2B75F;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
}
@media screen and (max-width: 768px) {
  .l_header .header_top {
    padding: calc(4/750*100vw) 0;
    font-size: calc(16/750*100vw);
  }
}
.l_header .header_bottom {
  background: url(../img/common/bg_header.svg) center bottom/100% no-repeat;
  height: 142px;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  .l_header .header_bottom {
    background: rgba(255, 255, 255, 0.7);
    height: inherit;
    padding: 0;
  }
}
.l_header .header_bottom .l_content_size_pc_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_header .header_bottom .l_content_size_pc_1 {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l_header .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_header .header_right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l_header .header_right .sns {
    width: calc(40/750*100vw);
    margin-right: calc(30/750*100vw);
  }
}
.l_header .header_right-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l_header .header_right-btn li {
  margin-left: 26px;
}
@media screen and (max-width: 768px) {
  .l_header .header_right-btn li {
    margin-left: 0;
  }
}
.l_header .header_right-btn a {
  width: 160px;
  height: 46px;
  color: #fff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l_header .header_right-btn a {
    width: calc(120/750*100vw);
    height: calc(120/750*100vw);
    border-radius: 0;
    position: relative;
    font-size: calc(14/750*100vw);
    text-align: center;
  }
  .l_header .header_right-btn a:before {
    content: '';
    width: calc(100/750*100vw);
    height: calc(100/750*100vw);
    border: 1px solid #fff;
    position: absolute;
    top: calc(10/750*100vw);
    left: calc(10/750*100vw);
  }
}
.l_header .header_right-btn .line a {
  background: #E2B75F;
}
.l_header .header_right-btn .contact a {
  background: #C4C4C4;
}
.l_header .logo {
  margin-left: 68px;
}
@media screen and (max-width: 768px) {
  .l_header .logo {
    margin-left: calc(40/750*100vw);
    width: calc(100/750*100vw);
  }
}
.l_header .gNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .l_header .gNav {
    display: none;
  }
}
.l_header .gNav:after {
  content: '';
  width: 1px;
  height: 40px;
  background: #675B40;
  display: block;
}
.l_header .gNav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l_header .gNav li:before {
  content: '';
  width: 1px;
  height: 40px;
  background: #675B40;
  display: block;
}
.l_header .gNav a {
  padding: 0 10px;
}
.l_header #toggle {
  background: #707070;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(120/750*100vw);
  height: calc(120/750*100vw);
}
@media screen and (max-width: 768px) {
  .l_header #toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l_header #toggle > div {
  width: calc(60/750*100vw);
  position: relative;
}
.l_header #toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
.l_header #toggle span:nth-of-type(1) {
  top: calc(40/750*100vw);
}
.l_header #toggle span:nth-of-type(2) {
  top: calc(60/750*100vw);
}
.l_header #toggle span:nth-of-type(3) {
  top: calc(80/750*100vw);
}
.l_header.active {
  position: fixed;
  width: 100%;
}
.l_header.active #toggle span:nth-of-type(1) {
  top: calc(60/750*100vw);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l_header.active #toggle span:nth-of-type(2) {
  top: calc(60/750*100vw);
  width: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l_header.active #toggle span:nth-of-type(3) {
  top: calc(60/750*100vw);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* =================================
 l_header_sp
================================= */
/* =================================
 l_menu_sp
================================= */
.l_menu_sp {
  background: #fff;
  width: calc(512/750*100vw);
  height: 100%;
  position: fixed;
  top: calc(158/750*100vw);
  right: 0;
  -webkit-transform: translateX(calc(612/750*100vw));
          transform: translateX(calc(612/750*100vw));
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  overflow-y: scroll;
}
.l_menu_sp.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l_menu_sp .gNav li {
  border-bottom: 1px solid #707070;
  font-size: calc(20/750*100vw);
  font-weight: 800;
  font-family: "Noto Serif JP", serif;
}
.l_menu_sp .gNav li .alpha {
  font-size: calc(32/750*100vw);
  font-weight: 900;
  margin-right: calc(25/750*100vw);
}
.l_menu_sp .gNav li a {
  padding: calc(24/750*100vw) calc(30/750*100vw);
  display: block;
}

.Android .l_menu_sp {
  top: calc(152/750*100vw);
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_side
================================= */
/* =================================
 l_footer
================================= */
.l_footer {
  background: #fff;
  padding: 37px 0 40px;
}
@media screen and (max-width: 768px) {
  .l_footer {
    padding: calc(25/750*100vw) 0;
  }
}
.l_footer .footer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .l_footer .footer_list {
    display: none;
  }
}
.l_footer .footer_list li + li {
  margin-left: 21px;
}
.l_footer .footer_copy {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .l_footer .footer_copy {
    font-size: calc(18/750*100vw);
    margin-top: 0;
  }
}

/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
.l_container_top {
  position: relative;
}

/* =================================
 l_header_top
================================= */
/* =================================
 l_header_sp_top
================================= */
/* =================================
 l_main_visual_top
================================= */
/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
/* =================================
 l_side_top
================================= */
/* =================================
 l_footer_top
================================= */
/* =================================
 l_hoge_top
================================= */
.container {
  width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: auto;
  }
}

.p_index {
  background: url(../img/index/bg_key.jpg) center center/cover no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .p_index {
    background: none;
  }
  .p_index:before {
    content: '';
    display: block;
    background: url(../img/index/sp/bg_key.jpg) center center/cover no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
  }
}
.p_index .key {
  height: 800px;
}
@media screen and (max-width: 768px) {
  .p_index .key {
    height: calc(1120/750*100vw);
  }
}
.p_index .key_contents {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
}
.p_index .key_contents .l_content_size_pc_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_index .key_ttl {
  font-size: 5.2rem;
  margin-top: 175px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p_index .key_ttl {
    font-size: calc(60/750*100vw);
    margin-top: calc(400/750*100vw);
    margin-bottom: calc(5/750*100vw);
  }
  .p_index .key_ttl.active {
    margin-top: calc(558/750*100vw);
  }
}
.p_index .key_subttl {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p_index .key_subttl {
    font-size: calc(22/750*100vw);
  }
}
.p_index .ttl {
  padding: 73px 0 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p_index .ttl {
    padding: calc(72/750*100vw) 0 calc(35/750*100vw);
    font-size: calc(40/750*100vw);
  }
  .p_index .ttl_before, .p_index .ttl_after {
    width: calc(86/750*100vw);
  }
}
.p_index .ttl span {
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .p_index .ttl span {
    margin: 0 calc(46/750*100vw);
  }
}
.p_index .concept {
  background: rgba(255, 255, 255, 0.75);
  padding-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .p_index .concept {
    padding-bottom: calc(50/750*100vw);
  }
}
.p_index .concept_text {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p_index .concept_text {
    font-size: calc(24/750*100vw);
    margin-bottom: calc(48/750*100vw);
  }
}
.p_index .concept_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p_index .concept_list {
    display: block;
  }
}
.p_index .concept_item {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .p_index .concept_item {
    width: inherit;
    margin-bottom: calc(30/750*100vw);
  }
}
.p_index .concept_item-text {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 15px 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p_index .concept_item-text {
    font-size: calc(20/750*100vw);
    margin: calc(10/750*100vw) 0 0;
  }
}
.p_index .news {
  background: #fff;
}
.p_index .news_outer {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_index .news_outer {
    width: auto;
  }
}
.p_index .news_inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p_index .news_inner {
    padding-bottom: calc(80/750*100vw);
  }
}
.p_index .news_inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #707070;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .p_index .news_inner dl {
    font-size: calc(20/750*100vw);
    padding: calc(10/750*100vw) 0;
  }
}
.p_index .news_inner .tag {
  width: 86px;
  height: 17px;
  font-size: 1rem;
  background: #675B40;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  margin: 0 20px 0 10px;
}
@media screen and (max-width: 768px) {
  .p_index .news_inner .tag {
    width: calc(132/750*100vw);
    height: calc(28/750*100vw);
    font-size: calc(14/750*100vw);
    padding: calc(10/750*100vw) 0;
    margin: 0 calc(20/750*100vw);
  }
}
.p_index .news_inner dd {
  width: 616px;
}
@media screen and (max-width: 768px) {
  .p_index .news_inner dd {
    width: calc(370/670*100%);
  }
}
.p_index .access {
  background: rgba(255, 255, 255, 0.75);
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p_index .access {
    padding-bottom: calc(80/750*100vw);
  }
}
.p_index .access_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p_index .access_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p_index .access_map {
    width: 100%;
  }
}
.p_index .access_map iframe {
  width: 510px;
  height: 380px;
}
@media screen and (max-width: 768px) {
  .p_index .access_map iframe {
    width: 100%;
    height: calc(380/750*100vw);
  }
}
.p_index .access_info {
  width: 460px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p_index .access_info {
    width: auto;
    padding-top: 0;
    margin-top: calc(-10/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}
.p_index .access_info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dotted #707070;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p_index .access_info dl {
    padding: calc(20/750*100vw) 0;
  }
}
.p_index .access_info dt {
  background: #675B40;
  color: #fff;
  font-weight: 700;
  border-radius: 11px;
  width: 70px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p_index .access_info dt {
    width: calc(94/750*100vw);
    height: calc(28/750*100vw);
    font-size: calc(14/750*100vw);
  }
}
.p_index .access_info dd {
  width: 355px;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p_index .access_info dd {
    width: calc(556/750*100vw);
    font-size: calc(20/750*100vw);
  }
}

.subcon .key {
  background: url(../img/common/bg_key.jpg) center center/cover no-repeat;
  height: 296px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .subcon .key {
    background: url(../img/common/sp/bg_key.jpg) center center/cover no-repeat;
    height: calc(432/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}
.subcon .key_contents {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
}
.subcon .key_contents .l_content_size_pc_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subcon .key_ttl {
  font-size: 5.2rem;
  margin-top: 14px;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .subcon .key_ttl {
    font-size: calc(60/750*100vw);
    margin-top: calc(95/750*100vw);
    margin-bottom: calc(5/750*100vw);
  }
  .subcon .key_ttl.active {
    margin-top: calc(253/750*100vw);
  }
}
.subcon .key_subttl {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .subcon .key_subttl {
    font-size: calc(20/750*100vw);
  }
}

.p_menu .menu_box {
  border-bottom: 1px dotted #707070;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_box:first-of-type {
    margin-top: calc(40/750*100vw);
  }
}
.p_menu .menu .ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2rem;
  padding: 36px 0 27px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu .ttl {
    font-size: calc(32/750*100vw);
    padding: calc(43/750*100vw) 0 calc(36/750*100vw);
  }
}
.p_menu .menu_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_price {
    font-size: calc(24/750*100vw);
    margin-bottom: calc(19/750*100vw);
  }
}
.p_menu .menu_price li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_menu .menu_price li + li {
  margin-left: 54px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_price li + li {
    margin-left: calc(40/750*100vw);
  }
}
.p_menu .menu_price .default,
.p_menu .menu_price .first {
  width: 70px;
  height: 22px;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_price .default,
  .p_menu .menu_price .first {
    width: calc(90/750*100vw);
    height: calc(28/750*100vw);
    font-size: calc(16/750*100vw);
  }
}
.p_menu .menu_price .default {
  background: #675B40;
}
.p_menu .menu_price .first {
  background: #DD9900;
}
.p_menu .menu_minutes {
  font-size: 1.4rem;
  font-weight: 700;
  width: 330px;
  height: 24px;
  border: 1px solid #675B40;
  text-align: center;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_minutes {
    font-size: calc(24/750*100vw);
    width: inherit;
    height: calc(48/750*100vw);
    margin: 0 auto calc(22/750*100vw);
  }
}
.p_menu .menu_attend {
  font-weight: 700;
  width: 330px;
  text-align: right;
  margin: -10px auto 40px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_attend {
    font-size: calc(16/750*100vw);
    width: inherit;
    margin: calc(-6/750*100vw) auto calc(20/750*100vw);
  }
}
.p_menu .menu_attend-center {
  font-weight: 700;
  text-align: center;
  margin: 50px 0 40px;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_attend-center {
    font-size: calc(16/750*100vw);
    margin: calc(39/750*100vw) 0 calc(20/750*100vw);
  }
}
.p_menu .menu_text {
  background: #F2F2F2;
  padding: 30px 35px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.33;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p_menu .menu_text {
    padding: calc(40/750*100vw);
    font-size: calc(20/750*100vw);
    line-height: 1.92;
  }
}
.p_menu .ba {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p_menu .ba {
    margin-bottom: 0;
  }
}
.p_menu .ba_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p_menu .ba_inner {
    display: block;
  }
}
.p_menu .ba_inner:before {
  content: '';
  display: block;
  width: 240px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p_menu .ba_inner:after {
  content: '';
  display: block;
  width: 240px;
}
.p_menu .ba .ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2.6rem;
  position: relative;
  margin: 53px 0;
}
@media screen and (max-width: 768px) {
  .p_menu .ba .ttl {
    font-size: calc(40/750*100vw);
    margin: calc(42/750*100vw) 0 calc(73/750*100vw);
  }
}
.p_menu .ba .ttl:after {
  content: '';
  position: absolute;
  bottom: -33px;
  left: calc(50% - 132px);
  background: url(../img/menu/ttl_before.png) center center/auto no-repeat;
  width: 264px;
  height: 29px;
}
@media screen and (max-width: 768px) {
  .p_menu .ba .ttl:after {
    bottom: calc(-33/750*100vw);
    left: calc(50% - (132/750*100vw));
    background: url(../img/menu/ttl_before.png) center center/100% no-repeat;
    width: calc(264/750*100vw);
    height: calc(29/750*100vw);
  }
}
.p_menu .ba_ttl {
  background: #DD9900;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 6px 0;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p_menu .ba_ttl {
    font-size: calc(24/750*100vw);
    padding: calc(6/750*100vw) 0;
    margin-bottom: calc(10/750*100vw);
  }
}
.p_menu .ba_box {
  width: 240px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p_menu .ba_box {
    width: inherit;
    margin-bottom: calc(50/750*100vw);
  }
}

.p_salon .salon .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p_salon .salon .ttl {
    width: calc(437/750*100vw);
    margin: 0 auto calc(30/750*100vw);
  }
}
.p_salon .salon_text {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_salon .salon_text {
    font-size: calc(28/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}
.p_salon .salon_img {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p_salon .salon_img {
    margin-bottom: calc(80/750*100vw);
  }
}

.p_staff .staff_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .p_staff .staff_inner {
    display: block;
    margin-top: calc(50/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}
.p_staff .staff_img {
  margin: 0 105px;
}
@media screen and (max-width: 768px) {
  .p_staff .staff_img {
    float: left;
    margin: 0 calc(18/750*100vw) calc(35/750*100vw) 0;
    width: calc(300/750*100vw);
  }
}
.p_staff .staff_info {
  width: 510px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p_staff .staff_info {
    width: inherit;
    font-size: calc(24/750*100vw);
  }
}
.p_staff .staff_text {
  letter-spacing: 0.36px;
  line-height: 1.72;
}
@media screen and (max-width: 768px) {
  .p_staff .staff_text {
    letter-spacing: 0.48px;
  }
}
.p_staff .staff_sign {
  text-align: right;
  font-size: 2rem;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p_staff .staff_sign {
    font-size: calc(24/750*100vw);
  }
}

.p_review .review_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .p_review .review_list {
    display: block;
    margin-top: 0;
    margin-bottom: calc(70/750*100vw);
  }
}
.p_review .review_list:before {
  content: '';
  display: block;
  width: 240px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p_review .review_list:after {
  content: '';
  display: block;
  width: 240px;
}
.p_review .review_item {
  width: 240px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p_review .review_item {
    width: inherit;
    margin-bottom: calc(50/750*100vw);
  }
}
.p_review .review_item-img {
  position: relative;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .p_review .review_item-img {
    margin-bottom: calc(10/750*100vw);
  }
}
.p_review .review_item-img figcaption {
  position: absolute;
  bottom: 13px;
  right: 13px;
  pointer-events: none;
}
.p_review .review_item-text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p_review .review_item-text {
    font-size: calc(24/750*100vw);
  }
}

.p_faq .faq {
  margin-top: 100px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq {
    margin-top: 0;
    margin-bottom: calc(50/750*100vw);
  }
}
.p_faq .faq_box {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_box {
    margin-bottom: calc(23/750*100vw);
  }
}
.p_faq .faq_box dt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #675B40;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_box dt {
    width: calc(50/750*100vw);
    height: calc(50/750*100vw);
    font-size: calc(24/750*100vw);
    margin-right: calc(20/750*100vw);
  }
}
.p_faq .faq_box dd {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_box dd {
    font-size: calc(24/750*100vw);
    margin-top: calc(10/750*100vw);
  }
}
.p_faq .faq_question {
  background: #F2F2F2;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 74px 25px 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_question {
    padding: calc(30/750*100vw) calc(74/750*100vw) calc(30/750*100vw) calc(14/750*100vw);
  }
}
.p_faq .faq_question:before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 40px;
  width: 25px;
  height: 4px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #707070;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_question:before {
    top: calc(50% - 1px);
    right: calc(22/750*100vw);
    width: 16px;
    height: 2px;
  }
}
.p_faq .faq_question:after {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 40px;
  /*横線*/
  width: 25px;
  height: 4px;
  background: #707070;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_question:after {
    top: calc(50% - 1px);
    right: calc(22/750*100vw);
    width: 16px;
    height: 2px;
  }
}
.p_faq .faq_question dt {
  background: #675B40;
}
.p_faq .faq_question dd {
  width: 866px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_question dd {
    width: calc(490/750*100vw);
  }
}
.p_faq .faq_question.open:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p_faq .faq_question.open:after {
  opacity: 0;
}
.p_faq .faq_answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 16px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_answer {
    padding: calc(30/750*100vw) calc(14/750*100vw);
  }
}
.p_faq .faq_answer dt {
  background: #EB8647;
}
.p_faq .faq_answer dd {
  width: 924px;
}
@media screen and (max-width: 768px) {
  .p_faq .faq_answer dd {
    width: calc(546/750*100vw);
  }
}

/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 999;
}

.l_header {
  z-index: 998;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}

/*# sourceMappingURL=style.css.map */