@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333;
  width: 100%;
  background-size: 100%;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14.5px;
  }
}

body.no_scroll {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body div, body h1, body h2, body h3, body h4, body h5, body h6, body p, body ol, body ul {
  margin: 0;
  padding: 0;
}

body li {
  list-style: none;
}

body a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body img {
  vertical-align: bottom;
}

body .grid_ctn {
  display: -ms-grid;
  display: grid;
}

body .flex_ctn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body .btn {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body .base_width {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto 0;
}

body .second_width {
  width: 90vw;
  max-width: 800px;
  margin: 0 auto;
}

body .pc_only {
  display: block;
}

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

body .pc_tab_only {
  display: block;
}

@media screen and (max-width: 480px) {
  body .pc_tab_only {
    display: none;
  }
}

body .sp_tab_only {
  display: none;
}

@media screen and (max-width: 768px) {
  body .sp_tab_only {
    display: block;
  }
}

body .sp_only {
  display: none;
}

@media screen and (max-width: 480px) {
  body .sp_only {
    display: block;
  }
}

body .inline_block {
  display: inline-block;
}

body .f_mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

body .f_century {
  font-family: "Century Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  padding-right: 3px;
}

body .js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .8s;
  transition: all .8s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

body .js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

body main {
  margin-top: 80px;
}

body .p_title {
  background: #523d44;
}

body .p_title .base_width {
  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;
  height: 180px;
}

body .p_title .base_width h1 {
  font-size: 1.8rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  body .p_title .base_width h1 {
    font-size: 1.5rem;
  }
}

body .main_title {
  color: #523d44;
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  body .main_title {
    margin-bottom: 50px;
  }
}

body .main_title p {
  font-size: 20px;
  margin-bottom: 5px;
}

body .main_title img {
  display: block;
  width: 30px;
  margin: 0 auto 30px;
}

body .main_title .title {
  font-size: 24px;
}

body .main_title .title .f_century {
  font-size: 1.5em;
}

body .breadcrumbs {
  padding: 10px 0;
  margin-bottom: 60px;
  background: #e5e1dd;
}

@media screen and (max-width: 768px) {
  body .breadcrumbs {
    margin-bottom: 50px;
  }
}

body .breadcrumbs ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #523d44;
}

body .breadcrumbs ol a {
  margin-right: 24px;
  cursor: pointer;
  position: relative;
  color: #523d44;
}

body .breadcrumbs ol a::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #523d44;
  border-right: 1px solid #523d44;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 7px;
  right: -15px;
}

body .breadcrumbs ol a:hover {
  text-decoration: underline;
}

body #top_btn_icon {
  width: 20px;
  position: fixed;
  bottom: 33px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*このクラスが付与されると表示する*/
}

body #top_btn_icon.active {
  opacity: 1;
  visibility: visible;
}

body #top_btn_icon:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.9;
}

body #top_btn_icon img {
  width: 100%;
}

body .rsv_btn {
  background: #aa5b5b;
  color: #fff;
  font-weight: bold;
  height: 80px;
  padding: 0 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-wrap: nowrap;
  font-size: 14px;
}

body .rsv_btn::before {
  content: url(../img/calendar.svg);
  display: block;
  width: 24px;
  padding-top: 5px;
}

body .rsv_btn:hover {
  opacity: 0.8;
}

body .main_btn {
  display: block;
  background: #fff;
  color: #523d44;
  border: 1px solid #523d44;
  padding: 10px 10px 10px 60px;
  font-weight: bold;
  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;
  cursor: pointer;
}

body .main_btn .yazirusi {
  margin-left: 10px;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #523d44;
  border-right: 2px solid #523d44;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

body #news li,
body #service,
body #price,
body #store_list {
  scroll-margin-top: 80px;
  /* ヘッダーの高さ分の余白を追加 */
}

body header {
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(82, 61, 68, 0.2);
          box-shadow: 0px 6px 10px 0px rgba(82, 61, 68, 0.2);
}

body header .header_inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  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;
}

body header .header_inner .header_l {
  padding-left: 10px;
}

body header .header_inner .header_l img {
  height: 80px;
}

body header .header_inner .header_r {
  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;
}

@media screen and (max-width: 768px) {
  body header .header_inner .header_r nav {
    display: none;
  }
}

body header .header_inner .header_r nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

body header .header_inner .header_r nav ul li {
  line-height: 2;
  position: relative;
}

body header .header_inner .header_r nav ul li:hover::after, body header .header_inner .header_r nav ul li.now::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #aa5b5b;
  bottom: -5px;
}

body header .header_inner .header_r nav ul li a {
  display: block;
  height: 100%;
}

body header .header_inner .header_r .hb_btn_area {
  display: none;
}

@media screen and (max-width: 768px) {
  body header .header_inner .header_r .hb_btn_area {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 10px;
  }
}

body #hb_btn {
  width: 44px;
  height: 44px;
  -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;
  margin-left: 1rem;
  position: fixed;
  top: 23px;
  right: 10px;
  display: none;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  body #hb_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

body #hb_btn:hover {
  cursor: pointer;
}

body #hb_btn span,
body #hb_btn span:before,
body #hb_btn span:after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #523d44;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  /*アニメーション設定*/
}

body #hb_btn span:before {
  bottom: 10px;
}

body #hb_btn span:after {
  top: 10px;
}

body #hb_btn.open span {
  background-color: rgba(82, 61, 68, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

body #hb_btn.open span::before {
  bottom: 0;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

body #hb_btn.open span::after {
  top: 0;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

body #menu_content .menu_inner {
  background: #fff;
  width: 400px;
  max-width: 100%;
  height: 100%;
  padding: 10px 5%;
  position: fixed;
  top: 0;
  right: -600px;
  z-index: 90;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  overflow: scroll;
  scrollbar-width: none;
}

body #menu_content .menu_inner::-webkit-scrollbar {
  display: none;
}

body #menu_content .menu_inner img {
  width: 100%;
}

body #menu_content .menu_inner img.logo {
  width: 150px;
  max-width: 60%;
  margin: 0 auto;
  display: block;
}

body #menu_content .menu_inner .main_list {
  margin-top: 70px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  body #menu_content .menu_inner .main_list {
    margin-top: 60px;
  }
}

body #menu_content .menu_inner .main_list li {
  border-top: 1px solid #e5e1dd;
  font-weight: bold;
}

body #menu_content .menu_inner .main_list li:last-of-type {
  border-bottom: 1px solid #e5e1dd;
}

body #menu_content .menu_inner .main_list li a {
  padding: 15px 5%;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #523d44;
}

body #menu_content .menu_inner .main_list li a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #523d44;
  border-right: 2px solid #523d44;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 43%;
  right: 5%;
}

body #menu_content .menu_inner .main_btn {
  background: #aa5b5b;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px 10px 15px 60px;
  margin-bottom: 40px;
  font-size: 20px;
}

body #menu_content .menu_inner .main_btn:hover {
  opacity: 0.8;
}

body #menu_content .menu_inner .main_btn .yazirusi {
  margin-left: 10px;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

body #menu_content .menu_inner .sub_list {
  font-size: 0.8rem;
}

body #menu_content.open .menu_inner {
  right: 0;
}

body #menu_content.open #overlay {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 80;
}

body .btn_ctn {
  padding: 150px 0;
}

@media screen and (max-width: 768px) {
  body .btn_ctn {
    padding: 120px 0;
  }
}

body .btn_ctn .base_width {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 70px;
}

@media screen and (max-width: 1080px) {
  body .btn_ctn .base_width {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  body .btn_ctn .base_width {
    gap: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  body .btn_ctn .base_width {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

body .btn_ctn .base_width .btn {
  width: 100%;
  padding: 40px 10px;
  background: #523d44;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  body .btn_ctn .base_width .btn {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 480px) {
  body .btn_ctn .base_width .btn {
    max-width: 300px;
    margin: 0 auto;
  }
}

body .btn_ctn .base_width .btn:hover {
  opacity: 0.9;
}

body .btn_ctn .base_width .btn img {
  width: 40px;
  display: block;
  margin: 0 auto 10px;
}

body .btn_ctn .base_width .btn p {
  font-size: 21px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body .btn_ctn .base_width .btn p {
    font-size: 16px;
  }
}

body .btn_ctn .base_width .btn p .f_century {
  font-size: 17px;
  font-weight: normal;
}

body footer .footer_rsv {
  width: 100%;
  background: url("../img/rsv_bak.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: #fff;
  text-align: center;
  padding: 40px 0 60px;
}

body footer .footer_rsv h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

body footer .footer_rsv .stc {
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  body footer .footer_rsv .stc {
    font-size: 14px;
    text-align: left;
  }
}

body footer .footer_rsv .main_btn {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 18px;
}

body footer .footer_rsv .main_btn .yazirusi {
  margin-left: 10px;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #523d44;
  border-right: 2px solid #523d44;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

body footer .footer_t {
  padding: 30px 0 70px;
}

@media screen and (max-width: 768px) {
  body footer .footer_t {
    padding: 60px 0 90px;
  }
}

body footer .footer_t .base_width {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px 30px;
}

@media screen and (max-width: 600px) {
  body footer .footer_t .base_width {
    display: block;
  }
}

body footer .footer_t .base_width .footer_l img {
  display: block;
  width: 140px;
  margin: 0 auto;
}

body footer .footer_t .base_width .footer_r {
  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;
  gap: 50px;
}

@media screen and (max-width: 600px) {
  body footer .footer_t .base_width .footer_r {
    display: block;
  }
}

body footer .footer_t .base_width .footer_r .main_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 1080px) {
  body footer .footer_t .base_width .footer_r .main_list {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  body footer .footer_t .base_width .footer_r .main_list {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  body footer .footer_t .base_width .footer_r .main_list {
    display: block;
    margin-bottom: 50px;
    margin-top: 60px;
  }
  body footer .footer_t .base_width .footer_r .main_list li {
    border-top: 1px solid #e5e1dd;
    font-weight: bold;
  }
  body footer .footer_t .base_width .footer_r .main_list li:last-of-type {
    border-bottom: 1px solid #e5e1dd;
  }
  body footer .footer_t .base_width .footer_r .main_list li a {
    padding: 15px 5%;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #523d44;
  }
  body footer .footer_t .base_width .footer_r .main_list li a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #523d44;
    border-right: 2px solid #523d44;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 43%;
    right: 5%;
  }
}

@media screen and (max-width: 600px) {
  body footer .footer_t .base_width .footer_r .rsv_btn {
    padding: 15px 10px 15px 60px;
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    height: auto;
  }
  body footer .footer_t .base_width .footer_r .rsv_btn::before {
    display: none;
  }
  body footer .footer_t .base_width .footer_r .rsv_btn .yazirusi {
    margin-left: 10px;
    width: 40px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: skew(45deg);
            transform: skew(45deg);
  }
}

body footer .footer_b {
  padding: 5px 10px;
  background: #e5e1dd;
  color: #333;
  font-size: 0.8rem;
}

body footer .footer_b ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 0 30px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  body footer .footer_b ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=common.css.map */