@charset "UTF-8";
/* Scss Document */
/*=============================
  		全体に指定
  =============================*/
/*リセット*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1200px) {
  * {
    font-size: 16px;
  }
}

img {
  vertical-align: bottom;
}

a img {
  border: 0px;
}

a {
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 1200px) {
  a {
    transition: all 0.2s ease-in-out;
  }
}

a:hover {
  text-decoration: none;
  color: #000;
}

a img {
  transition: all 0.2s ease-in-out;
}

a:visited {
  color: #000;
}

a:link {
  color: #000;
}

a:active {
  color: #000;
}

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

table th,
table td {
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}

.clear_b {
  clear: both;
}

/*=============================
スマホのみ,PCのみに指定
=============================*/
.sp_none {
  display: none;
}
@media screen and (min-width: 1200px) {
  .sp_none {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  br.sp_br {
    display: none;
  }
}

br.pc_br {
  display: none;
}
@media screen and (min-width: 1200px) {
  br.pc_br {
    display: block;
  }
}

/*--------------------------*/
html {
  height: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body a,
body a span {
  font-family: "Noto Serif JP", serif;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

button,
input,
select,
textarea {
  font-family: "Noto Serif JP", serif;
}

.wrapper_all_body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*=============================
		ヘッダーに指定
=============================*/
.header_wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 9999;
}
@media screen and (min-width: 1200px) {
  .header_wrapper {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
  }
}

.lower_header_wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1200px) {
  .lower_header_wrapper {
    background-color: transparent;
    box-shadow: none;
  }
}

.top_header_wrapper {
  background-color: transparent;
  box-shadow: none;
}

.header_fadein {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  transition: all 0.5s ease-out;
}

.header_fadeout {
  background-color: transparent;
  box-shadow: none;
  transition: all 0.5s ease-out;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 46px;
}
@media screen and (min-width: 1200px) {
  #header {
    height: 60px;
  }
}

/*--*/
#title_logo a {
  display: block;
}
#title_logo a img {
  margin-left: 19px;
  width: 242px;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  #title_logo a img {
    display: block;
    width: 360px;
  }
}

.home #title_logo a img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .home #title_logo a img {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  #title_logo a:hover {
    opacity: 0.7;
  }
}

#header #menu-checkbox {
  display: none;
}

/*--------*/
#menu-btn {
  display: block;
  position: relative;
  z-index: 999;
  width: 45px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 1200px) {
  #menu-btn {
    display: none;
  }
}

#menu-btn span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.2s ease;
  position: absolute;
  right: 15px;
  width: 30px;
  height: 2px;
  background-color: #6e6d6d;
}

#menu-btn span:nth-of-type(1) {
  top: 10px;
}

#menu-btn span:nth-of-type(2) {
  top: 19px;
}

#menu-btn span:nth-of-type(3) {
  top: 28px;
}

/*------*/
#header div.main_nav {
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 0;
  background: rgb(255, 255, 255) url(../img/common/logo.svg) 19px 10px no-repeat padding-box;
  background-size: 242px 27px;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
}
@media screen and (min-width: 1200px) {
  #header div.main_nav {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
  }
}

input#menu-checkbox:checked ~ div.main_nav {
  height: 100%;
  opacity: 1;
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(1) {
  top: 0px;
  transform: translateY(20px) rotate(-45deg);
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(2) {
  display: none;
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(3) {
  top: 40px;
  transform: translateY(-20px) rotate(45deg);
}

.logo-link {
  position: absolute;
  top: 10px;
  left: 19px;
  width: 242px;
  height: 27px;
  display: block;
  z-index: 10;
}
@media screen and (min-width: 1200px) {
  .logo-link {
    display: none;
  }
}

div.nav_inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: calc(100% - 60px);
  margin-top: 45px;
  padding-top: 15px;
}
@media screen and (min-width: 1200px) {
  div.nav_inner {
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  div.nav_inner nav {
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
  }
}

/*------*/
ul.global_menu {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  ul.global_menu {
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-right: 0px;
    padding: 0;
    /*height: 100px;*/
    background-color: transparent;
    border: none;
  }
}
ul.global_menu > li:first-of-type ul {
  list-style: none;
}
ul.global_menu > li:first-of-type ul > li br {
  display: none;
}
ul.global_menu li a {
  position: relative;
  display: block;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  color: #474645;
  line-height: 28px;
  letter-spacing: 1.9px;
  padding: 10px 0 10px 16px;
}
@media screen and (min-width: 1200px) {
  ul.global_menu li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 29px;
    padding: 0 8px;
    margin: 0 17px;
    background-image: none;
    border: none;
  }
}
ul.global_menu li a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1200px) {
  .header_wrapper ul.global_menu li a {
    color: #fff;
  }
}

@media screen and (min-width: 1200px) {
  .header_fadein ul.global_menu li a {
    color: #6e6e6e;
    transition: all 0.5s ease-out;
  }
}

@media screen and (min-width: 1200px) {
  .header_fadeout ul.global_menu li a {
    color: #fff;
    transition: all 0.5s ease-out;
  }
}

#h-insta-icon_img {
  display: none;
  width: 29px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  #h-insta-icon_img {
    display: block;
    margin: 0 20px 0 10px;
  }
}

@media screen and (min-width: 1200px) {
  a #h-insta-icon_img {
    transition: all 0.5s ease-out;
  }
}

@media screen and (min-width: 1200px) {
  a:hover #h-insta-icon_img {
    opacity: 0.7;
  }
}

.contact-line_set {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column-reverse; /* 下から順に並べる */
  align-items: flex-end;
  height: 156px;
  width: 148px;
  margin: 0 0 20px 0;
  padding: 0;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .contact-line_set {
    margin: 0;
  }
}
.contact-line_set #h-contact_btn {
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #fff;
  padding: 11px 0 11px 7px;
  margin: 0 0px 10px 0;
  width: 82px;
  height: auto;
  background-image: url("../img/common/book-arrow_s.svg"), linear-gradient(109deg, #ad8f5f 0%, #bda379 100%);
  background-size: 5px 9px, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: right 10px top 50%, 0 0;
  border-radius: 3px 0px 0px 3px;
}
@media screen and (min-width: 1200px) {
  .contact-line_set #h-contact_btn {
    font-size: 18px;
    line-height: 18px;
    padding: 24px 0 24px 20px;
    margin: 0 20px 20px 0;
    width: 150px;
    background-image: url("../img/common/book-arrow.svg"), linear-gradient(109deg, #ad8f5f 0%, #bda379 100%);
    background-size: 9px 15px, 100% 100%;
    border-radius: 0;
  }
}
.contact-line_set #web-contact_btn {
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #fff;
  padding: 11px 0 11px 7px;
  margin: 0 0px 10px 0;
  width: 82px;
  height: auto;
  background-image: url("../img/common/book-arrow_s.svg"), linear-gradient(109deg, #a55357 0%, #a55357 100%);
  background-size: 5px 9px, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: right 10px top 50%, 0 0;
  border-radius: 3px 0px 0px 3px;
}
@media screen and (min-width: 1200px) {
  .contact-line_set #web-contact_btn {
    font-size: 18px;
    line-height: 18px;
    padding: 24px 0 24px 20px;
    margin: 0 20px 20px 0;
    width: 150px;
    background-image: url("../img/common/book-arrow.svg"), linear-gradient(109deg, #a55357 0%, #a55357 100%);
    background-size: 9px 15px, 100% 100%;
    border-radius: 0;
  }
}
.contact-line_set #h-line_btn {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #474645;
  padding: 5px 0 5px 7px;
  margin: 0 0px 10px 0;
  width: 82px;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px 0px 0px 3px;
}
@media screen and (min-width: 1200px) {
  .contact-line_set #h-line_btn {
    font-size: 16px;
    line-height: 16px;
    padding: 16px 0 16px 20px;
    margin: 0 20px 20px 0;
    width: 150px;
    background-image: url("../img/common/line-arrow.svg");
    background-repeat: no-repeat;
    background-size: 8px 13px;
    background-position: right 10px top 50%;
    border-radius: 0;
  }
}
.contact-line_set .home #h-line_btn {
  display: none;
}
.contact-line_set #h-insta-icon_btn {
  padding: 7px;
  margin: 0 0px 10px 0;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px 0px 0px 3px;
}
.contact-line_set #h-insta-icon_btn img {
  width: 24px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .contact-line_set #h-insta-icon_btn {
    display: none;
  }
}
.contact-line_set .home #h-insta-icon_btn {
  display: none;
}
@media screen and (min-width: 1200px) {
  .contact-line_set a {
    transition: all 0.5s ease-out;
  }
}
@media screen and (min-width: 1200px) {
  .contact-line_set a:hover {
    opacity: 0.7;
  }
}

#reservation,
#news,
#overview,
#features,
#message {
  scroll-margin-top: 80px;
}
@media screen and (min-width: 1200px) {
  #reservation,
  #news,
  #overview,
  #features,
  #message {
    scroll-margin-top: 80px;
  }
}

/*リンクボタン共通-----------------------------------------------*/
div.link_btn a {
  display: block;
  width: 294px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 50px;
  color: #fff;
  text-decoration: none !important;
  padding: 6px 20px 9px 20px;
  margin: 0 auto 0 auto;
  background-image: url("../img/common/w-arrow.svg"), linear-gradient(99deg, #ad8f5f 0%, #bda379 100%);
  background-size: 6px 13px, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: right 14px top 50%, 0 0;
}
@media screen and (min-width: 1200px) {
  div.link_btn a {
    width: 294px;
    font-size: 16px;
    line-height: 46px;
    padding: 8px 20px 11px 20px;
    background-size: 9px 17px, 294px 130px;
    background-repeat: no-repeat, no-repeat;
    background-position: right 14px top 50%, 0 100%;
    /*margin: 0;*/
    transition: all 0.2s ease-in-out;
  }
}

div.link_btn_web-reservation a {
  font-size: 16px;
  line-height: 52px;
  margin-bottom: 20px;
  background-image: url("../img/common/w-arrow.svg"), linear-gradient(99deg, #a55357 0%, #a55357 100%);
}
@media screen and (min-width: 1200px) {
  div.link_btn_web-reservation a {
    font-size: 18px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}

div.link_btn_reservation a {
  font-size: 16px;
  line-height: 52px;
}
@media screen and (min-width: 1200px) {
  div.link_btn_reservation a {
    font-size: 18px;
    line-height: 48px;
  }
}

@media screen and (min-width: 1200px) {
  div.link_btn a:hover {
    opacity: 0.7;
  }
}

div.link_btn a span {
  font-size: 14px;
  font-weight: 400;
}

/*=============================
		body_wrapperに指定
=============================*/
main {
  flex: 1 0 auto;
}

.body_wrapper {
  position: relative;
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 660px;
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1200px;
    max-width: none;
  }
}

@media screen and (min-width: 1200px) {
  .container_full {
    width: 100%;
  }
}

.page_first_zone {
  display: flex;
  flex-direction: column-reverse;
}
.page_first_zone h1 {
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: #474645;
  text-align: center;
  padding: 7px 0 50px 0;
}
@media screen and (min-width: 1200px) {
  .page_first_zone h1 {
    font-size: 16px;
    line-height: 23px;
    padding: 16px 0 74px 0;
  }
}

.home .page_first_zone h1 {
  padding: 7px 0 73px 0;
}
@media screen and (min-width: 1200px) {
  .home .page_first_zone h1 {
    padding: 16px 0 81px 0;
  }
}

.page_first_zone4info_detail {
  padding: 0px 0 7px 0;
}
@media screen and (min-width: 1200px) {
  .page_first_zone4info_detail {
    padding: 0px 0 16px 0;
  }
}

/*=============================
  lowerに指定
=============================*/
.lower_body_wrapper_firstview {
  background-color: #efe8dd;
  background-image: url("../img/info/bg-info.jpg");
  background-size: cover;
  background-position: center;
  padding: 108px 0 77px 0;
}
@media screen and (min-width: 1200px) {
  .lower_body_wrapper_firstview {
    padding: 108px 0 77px 0;
  }
}
.lower_body_wrapper_firstview p:before {
  content: attr(title) " ";
  display: block;
  font-family: "Marcellus", serif;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  padding-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .lower_body_wrapper_firstview p:before {
    font-size: 45px;
    line-height: 50px;
  }
}
.lower_body_wrapper_firstview p {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding-top: 20px;
}
@media screen and (min-width: 1200px) {
  .lower_body_wrapper_firstview p {
    font-size: 20px;
    line-height: 30px;
    padding-top: 20px;
  }
}
.lower_body_wrapper_firstview p:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  border-top: 2px solid #fff;
}

/*----------------------------*/
.lower-news-set {
  padding: 0px 12px 80px 12px;
}
@media screen and (min-width: 1200px) {
  .lower-news-set {
    padding: 0 0 100px 0;
  }
}

/*カテゴリナビ--*/
nav.cat_nav {
  display: flex;
  overflow-x: scroll;
  margin: 0 10px 10px 10px;
}
@media screen and (min-width: 1200px) {
  nav.cat_nav {
    margin: 0 0 32px 0;
    overflow-x: auto;
  }
}
nav.cat_nav ul {
  list-style: none;
  display: flex;
}
@media screen and (min-width: 1200px) {
  nav.cat_nav ul {
    flex-wrap: wrap;
    /*overflow-x: auto;*/
  }
}
nav.cat_nav ul li::before {
  content: "";
}
nav.cat_nav ul li a {
  flex: 0 0 80px;
  display: block;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  color: #474645;
  padding: 8px 8px 8px 8px;
  margin: 0 10px 20px 0;
  border: 1px solid #b79c70;
  /*min-width: 80px;*/
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  nav.cat_nav ul li a {
    font-size: 16px;
    line-height: 16px;
    padding: 21px 5px 21px 15px;
    margin: 0 20px 20px 0;
    width: 224px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 1200px) {
  nav.cat_nav ul li:nth-child(5n) a {
    margin-right: 0;
  }
}
nav.cat_nav ul li:last-child a {
  margin-right: 0;
}
nav.cat_nav ul li a:hover {
  color: #fff;
  background: transparent linear-gradient(104deg, #ad8f5f 0%, #bda379 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #b79c70;
}
nav.cat_nav ul li.current-cat a {
  color: #fff;
  background: transparent linear-gradient(104deg, #ad8f5f 0%, #bda379 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #ad8f5f;
}

/*-------------------*/
.lower_news_list {
  box-sizing: border-box;
  border-top: 1px solid #c3c3c3;
  margin-bottom: 27px;
}
@media screen and (min-width: 1200px) {
  .lower_news_list {
    margin-bottom: 0px;
    width: 1200px;
    margin-bottom: 50px;
  }
}
.lower_news_list a {
  display: block;
  border-bottom: 1px solid #c3c3c3;
}
.lower_news_list a dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .lower_news_list a dl {
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.lower_news_list a dl dt,
.lower_news_list a dl dd {
  font-size: 14px;
  line-height: 18px;
}
@media screen and (min-width: 1200px) {
  .lower_news_list a dl dt,
  .lower_news_list a dl dd {
    font-size: 16px;
    line-height: 26px;
  }
}
.lower_news_list a dl dt {
  padding-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .lower_news_list a dl dt {
    padding-bottom: 0px;
    padding-left: 0px;
  }
}
.lower_news_list a dl dt span {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  color: #474645;
  text-align: center;
  letter-spacing: 1.1px;
  padding: 3px 7px;
  margin-left: 10px;
  background: #efe8dd 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 1200px) {
  .lower_news_list a dl dt span {
    width: 185px;
    font-size: 14px;
    letter-spacing: 1.4px;
    padding: 5px 0 7px 0;
    margin-left: 23px;
  }
}
@media screen and (min-width: 1200px) {
  .lower_news_list a dl dd {
    width: 890px;
    padding-left: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*wp-pagenavi---*/
div.wp-pagenavi {
  text-align: center;
  padding: 10px 0 15px 0;
  margin-bottom: 40px;
}

div.wp-pagenavi a.first,
div.wp-pagenavi a.last,
div.wp-pagenavi a.previouspostslink,
div.wp-pagenavi a.nextpostslink,
div.wp-pagenavi a.page {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  background: #fff 0% 0% no-repeat padding-box;
  border: 1px solid #ba9f73;
  padding: 7px 12px 7px 12px;
  margin: 0 4px;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  div.wp-pagenavi a.first,
  div.wp-pagenavi a.last,
  div.wp-pagenavi a.previouspostslink,
  div.wp-pagenavi a.nextpostslink,
  div.wp-pagenavi a.page {
    font-size: 14px;
    line-height: 26px;
    padding: 11px 16px 11px 16px;
    margin: 0 8px;
  }
}

div.wp-pagenavi span.current {
  font-size: 12px;
  font-weight: 400;
  background: transparent linear-gradient(135deg, #ad8f5f 0%, #bda379 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #ba9f73;
  padding: 7px 12px 7px 12px;
  margin: 0 4px;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  div.wp-pagenavi span.current {
    font-size: 14px;
    padding: 11px 16px 11px 16px;
    margin: 0 8px;
  }
}

div.wp-pagenavi a:hover {
  font-size: 12px;
  font-weight: 400;
  background: transparent linear-gradient(135deg, #ad8f5f 0%, #bda379 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  div.wp-pagenavi a:hover {
    font-size: 14px;
  }
}

div.wp-pagenavi span.extend,
div.wp-pagenavi span.pages {
  font-size: 12px;
  color: #000;
  text-decoration: none;
  padding: 7px 4px 7px 4px;
  margin: 0 2px;
  border: 1px solid #fff;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  div.wp-pagenavi span.extend,
  div.wp-pagenavi span.pages {
    font-size: 14px;
    padding: 11px 10px 11px 10px;
    margin: 0 4px;
  }
}

div.wp-pagenavi span.pages {
  display: block;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  div.wp-pagenavi span.pages {
    display: inline;
    margin-right: 30px;
  }
}

/*----------------------------*/
.date_cat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .date_cat {
    justify-content: space-between;
    padding-bottom: 50px;
  }
}
.date_cat p.date {
  font-size: 14px;
  color: #898989;
  line-height: 24px;
  padding: 0 0 10px 0;
  margin: 0 10px 0 0;
}
@media screen and (min-width: 1200px) {
  .date_cat p.date {
    font-size: 17px;
    line-height: 28px;
    padding: 0;
    margin: 0;
  }
}
.date_cat p.cat {
  padding: 0;
  margin: 0;
}
.date_cat p.cat a {
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  color: #474645;
  letter-spacing: 1.3px;
  text-decoration: none !important;
  padding: 5px 5px 5px 5px;
  margin: 0 10px 10px 0;
  background: #efe8dd;
}
@media screen and (min-width: 1200px) {
  .date_cat p.cat a {
    font-size: 14px;
    padding: 6px 13px 6px 13px;
    margin: 0 0 0 10px;
  }
}

.lower-news_detail-set {
  padding: 0px 12px 80px 12px;
}
@media screen and (min-width: 1200px) {
  .lower-news_detail-set {
    padding: 0 0 100px 0;
  }
}
.lower-news_detail-set h1 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #474645;
  padding: 0;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 1200px) {
  .lower-news_detail-set h1 {
    font-size: 36px;
    line-height: 46px;
    padding: 0 0 37px 0;
  }
}

.news_detail_body h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 0;
  margin: 46px 0 28px 0;
}
@media screen and (min-width: 1200px) {
  .news_detail_body h2 {
    font-size: 26px;
    line-height: 36px;
    margin: 52px 0 36px 0;
  }
}
.news_detail_body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding: 0;
  margin: 42px 0 26px 0;
}
@media screen and (min-width: 1200px) {
  .news_detail_body h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 46px 0 32px 0;
  }
}
.news_detail_body h6,
.news_detail_body h5,
.news_detail_body h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  padding: 0;
  margin: 40px 0 25px 0;
}
@media screen and (min-width: 1200px) {
  .news_detail_body h6,
  .news_detail_body h5,
  .news_detail_body h4 {
    font-size: 18px;
    line-height: 28px;
    margin: 40px 0 28px 0;
  }
}
.news_detail_body figure {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .news_detail_body figure {
    margin-bottom: 26px;
  }
}
.news_detail_body figure img {
  padding: 0;
}
.news_detail_body img {
  max-width: 100%;
  height: auto;
}
.news_detail_body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0px 0 24px 0;
}
@media screen and (min-width: 1200px) {
  .news_detail_body p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 26px 0;
  }
}
.news_detail_body p strong {
  font-size: inherit;
}
.news_detail_body ul {
  list-style: none;
  /*margin: 4px 0 24px 0;*/
  padding-top: 2px;
  padding-bottom: 16px;
}
.news_detail_body ul li {
  font-size: 14px;
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 8px;
  margin-left: 16px;
  text-indent: -16px;
}
@media screen and (min-width: 1200px) {
  .news_detail_body ul li {
    font-size: 16px;
    line-height: 22px;
    padding-top: 7px;
    padding-bottom: 10px;
    margin-left: 18px;
    text-indent: -18px;
  }
}
.news_detail_body ul li::before {
  content: "・";
}
.news_detail_body ol {
  margin: 4px 0 24px 0;
  padding-left: 16px;
}
@media screen and (min-width: 1200px) {
  .news_detail_body ol {
    padding-left: 18px;
  }
}
.news_detail_body ol li {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 3px;
}
@media screen and (min-width: 1200px) {
  .news_detail_body ol li {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 5px;
  }
}
.news_detail_body .wp-block-table {
  margin-bottom: 25px !important;
}
.news_detail_body table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.news_detail_body table th,
.news_detail_body table td {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  border: #a3a3a3 solid 1px;
  padding: 6px 6px 6px 8px;
}
@media screen and (min-width: 1200px) {
  .news_detail_body table th,
  .news_detail_body table td {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 10px 10px 10px;
  }
}
.news_detail_body .wp-block-table figcaption {
  text-align: center;
}
.news_detail_body figcaption {
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 1200px) {
  .news_detail_body figcaption {
    font-size: 16px;
    line-height: 24px;
  }
}
.news_detail_body figcaption.txt-align-c {
  text-align: center;
}
.news_detail_body .wp-block-column img {
  flex-shrink: 1;
  width: 100%;
}
.news_detail_body figure.aligncenter figcaption {
  text-align: center;
}
.news_detail_body a.more-link {
  font-size: 14px;
  line-height: 24px;
  display: block;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .news_detail_body a.more-link {
    font-size: 16px;
    line-height: 26px;
  }
}
.news_detail_body a.more-link:hover {
  text-decoration: none;
}
.news_detail_body a {
  text-decoration: underline;
  word-wrap: break-word;
}
.news_detail_body a:hover {
  text-decoration: none;
}
.news_detail_body sub,
.news_detail_body sup {
  font-size: 30% !important;
}

/*----------------------------*/
.lower-overview {
  padding: 0px 12px 80px 12px;
}
@media screen and (min-width: 1200px) {
  .lower-overview {
    padding: 0 0 80px 0;
  }
}

/*=============================
  topに指定
=============================*/
.top_body_wrapper_firstview {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .top_body_wrapper_firstview {
    padding: 0;
  }
}

.top-headline {
  background-color: #ad8f5f;
}

.headline_contents {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0px;
     object-position: 50% 0px;
}
@media screen and (min-width: 1200px) {
  .headline_contents {
    width: 100%;
    max-width: 2560px;
    height: 100vh;
    height: 100dvh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.headline_contents3 {
  -o-object-position: 72% 0px;
     object-position: 72% 0px;
}
@media screen and (min-width: 1200px) {
  .headline_contents3 {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

/*--------*/
.top-catch {
  font-weight: 600;
  color: #fff;
  text-align: center;
  /****/
  /****/
}
@media screen and (min-width: 1200px) {
  .top-catch {
    text-align: left;
  }
}
.top-catch .top-logo {
  position: absolute;
  z-index: 2;
  width: auto;
  top: 11.7%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  pointer-events: none;
}
@media screen and (min-width: 1200px) {
  .top-catch .top-logo {
    width: 1200px;
    top: 10%;
    left: 50%;
  }
}
.top-catch .top-logo img {
  width: 86vw;
  max-width: 560px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .top-catch .top-logo img {
    width: 642px;
    max-width: none;
  }
}
.top-catch p.top-tagline {
  position: absolute;
  z-index: 2;
  top: 47.3%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-family: "Allura", serif;
  font-size: 4.8vw;
  font-weight: 300;
  line-height: 5.8vw;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
  width: 100%;
  max-width: 660px;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-tagline {
    font-size: 28px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-tagline {
    top: 49.5%;
    font-size: 33px;
    line-height: 33px;
  }
}
.top-catch h2 {
  position: absolute;
  z-index: 2;
  top: 50.6%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 4.8vw;
  line-height: 5.6vw;
  font-weight: 500;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
  width: 100%;
  max-width: 660px;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .top-catch h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch h2 {
    top: 53.8%;
    font-size: 35px;
    line-height: 35px;
    max-width: none;
  }
}
.top-catch div.top-open-preopen_set {
  position: absolute;
  z-index: 2;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 660px;
}
.top-catch p.top-open-date {
  position: absolute;
  z-index: 2;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 6.9vw;
  font-weight: 400;
  line-height: 6.9vw;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
  width: 100%;
  max-width: 660px;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-open-date {
    font-size: 45px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-open-date {
    top: auto;
    bottom: 28%;
    font-size: 36px;
    line-height: 36px;
  }
}
.top-catch p.top-open-date span {
  font-size: 6.1vw;
  font-size: 6.9vw;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-open-date span {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-open-date span {
    font-size: 33px;
    line-height: 36px;
  }
}
.top-catch p.top-open-date3 {
  text-align: center;
  font-size: 6.9vw;
  font-weight: 400;
  line-height: 6.9vw;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
  width: 100%;
  max-width: 660px;
  pointer-events: none;
  margin-bottom: clamp(26px, 6.9676vw, 30px);
}
@media screen and (min-width: 600px) {
  .top-catch p.top-open-date3 {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-open-date3 {
    font-size: 36px;
    line-height: 36px;
  }
}
.top-catch p.top-open-date3 span {
  font-size: 6.1vw;
  font-size: 6.9vw;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-open-date3 span {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-open-date3 span {
    font-size: 33px;
    line-height: 36px;
  }
}
.top-catch div.top-open-preopen_set_on {
  bottom: 6%;
}
.top-catch div.top-open-preopen_set_on p.top-open-date3 {
  margin-bottom: 10px;
}
@media screen and (min-width: 390px) {
  .top-catch div.top-open-preopen_set_on p.top-open-date3 {
    margin-bottom: clamp(26px, 6.9676vw, 30px);
  }
}
@media screen and (min-width: 600px) {
  .top-catch div.top-open-preopen_set_on p.top-open-date3 {
    margin-bottom: 30px;
  }
}
.top-catch p.top-preopen {
  position: absolute;
  z-index: 2;
  top: 77%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 3.9vw;
  font-weight: 600;
  line-height: 6.9vw;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
  width: 100%;
  max-width: 660px;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-preopen {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-preopen {
    top: 80.2%;
    font-size: 20px;
    line-height: 20px;
  }
}
.top-catch p.top-preopen span {
  font-size: 6.1vw;
  font-size: 6.9vw;
}
@media screen and (min-width: 600px) {
  .top-catch p.top-preopen span {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch p.top-preopen span {
    font-size: 33px;
    line-height: 36px;
  }
}
.top-catch div.top-preopen2 {
  position: absolute;
  z-index: 2;
  top: 77%;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
  max-width: 360px;
  pointer-events: none;
  background-color: rgba(173, 143, 95, 0.3960784314);
  padding: 10px;
}
.top-catch div.top-preopen2 h3 {
  font-size: 4.2vw;
  font-weight: 600;
  line-height: 4.2vw;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen2 h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen2 h3 {
    font-size: 20px;
    line-height: 32px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen2 {
    padding: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen2 {
    top: auto;
    bottom: 2%;
  }
}
.top-catch div.top-preopen2 p {
  font-size: 3.9vw;
  font-weight: 400;
  text-align: left;
  line-height: 6.5vw;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen2 p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen2 p {
    font-size: 16px;
    line-height: 28px;
    padding-left: 45px;
  }
}
.top-catch div.top-preopen3 {
  width: calc(100% - 40px);
  max-width: 380px;
  pointer-events: none;
  background-color: rgba(173, 143, 95, 0.3960784314);
  padding: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen3 {
    padding: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen3 {
    top: auto;
    bottom: 2%;
  }
}
.top-catch div.top-preopen3 h3 {
  font-size: 4.2vw;
  font-weight: 600;
  line-height: 4.2vw;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen3 h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen3 h3 {
    font-size: 20px;
    line-height: 32px;
    padding-bottom: 10px;
  }
}
.top-catch div.top-preopen3 p {
  font-size: clamp(14px, 3.72093vw, 16px);
  line-height: clamp(24px, 6.5vw, 28px);
  font-weight: 400;
  text-align: left;
  text-shadow: 0px 0px 4px rgba(173, 143, 95, 0.737254902);
}
@media screen and (min-width: 600px) {
  .top-catch div.top-preopen3 p {
    font-size: 16px;
    line-height: 30px;
    padding-left: 46px;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch div.top-preopen3 p {
    font-size: 16px;
    line-height: 28px;
    padding-left: 46px;
  }
}
.top-catch dl.top-first-news {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px 10px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .top-catch dl.top-first-news {
    bottom: 20px;
  }
}
.top-catch dl.top-first-news dt {
  font-size: 12px;
  line-height: 17px;
  opacity: 0.7;
}
@media screen and (min-width: 1200px) {
  .top-catch dl.top-first-news dt {
    font-size: 14px;
    line-height: 19px;
  }
}
.top-catch dl.top-first-news dd a {
  display: block;
  font-size: 12px;
  line-height: 17px;
  opacity: 0.7;
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .top-catch dl.top-first-news dd a {
    font-size: 14px;
    line-height: 19px;
  }
}

/*--------*/
/*------------------------*/
.top-set {
  padding: 0px 12px 80px 12px;
}
@media screen and (min-width: 1200px) {
  .top-set {
    padding: 0 0 120px 0;
  }
}
.top-set h2:before {
  content: attr(title) " ";
  display: block;
  font-family: "Marcellus", serif;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  text-align: center;
  color: #474645;
  padding-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .top-set h2:before {
    font-size: 45px;
    line-height: 50px;
  }
}
.top-set h2 {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  color: #7e5e32;
  padding-top: 20px;
  padding-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .top-set h2 {
    font-size: 20px;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.top-set h2:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  border-top: 2px solid #984447;
}
.top-set p {
  box-sizing: border-box;
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .top-set p {
    font-size: 16px;
    line-height: 26px;
    padding: 0 0px 20px 0;
  }
}
.top-set p:last-of-type {
  padding-bottom: 0;
}
.top-set a:hover img {
  opacity: 0.7;
}

.top-message {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.top-message h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  color: #474645;
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .top-message h3 {
    font-size: 32px;
    line-height: 42px;
    padding-bottom: 40px;
  }
}
.top-message .flex-reverse {
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .top-message .flex-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .flex-reverse > div {
    width: 570px;
  }
}
.top-message .flex-reverse .figure-set {
  margin-bottom: 35px;
}
@media screen and (min-width: 1200px) {
  .top-message .flex-reverse .figure-set {
    margin-bottom: 0;
  }
}
.top-message .flex-reverse .figure-set p {
  text-align: center;
}
.top-message .flex-reverse .figure-set figure {
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
  background: #efe8dd;
}
@media screen and (min-width: 1200px) {
  .top-message .flex-reverse .figure-set figure {
    margin-bottom: 35px;
  }
}
.top-message .flex-reverse .figure-set figure img {
  width: 42%;
  max-width: 278px;
  height: auto;
  margin: 0 12px 0 0;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .top-message .flex-reverse .figure-set figure img {
    width: 278px;
    max-width: none;
    height: auto;
    margin: 0;
  }
}
.top-message .carrer {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 0;
  background: rgba(248, 244, 238, 0.5);
}
@media screen and (min-width: 1200px) {
  .top-message .carrer {
    flex-direction: row;
    padding: 20px 0 10px 0;
  }
}
.top-message .carrer h4 {
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer h4 {
    font-size: 14px;
    line-height: 26px;
  }
}
.top-message .carrer > h4 {
  margin-left: 10px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer > h4 {
    margin-left: 0px;
    margin-right: 10px;
  }
}
.top-message .carrer dl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  margin-bottom: 5px;
  width: 100%;
  border-bottom: #cccccc solid 1px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl {
    border-bottom: none;
  }
}
.top-message .carrer dl dt,
.top-message .carrer dl dd {
  font-size: 12px;
  line-height: 22px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl dt,
  .top-message .carrer dl dd {
    font-size: 14px;
    line-height: 24px;
  }
}
.top-message .carrer dl dt {
  width: 40px;
  margin: 0 20px 0 10px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl dt {
    width: 30px;
    margin: 0 30px 0 20px;
  }
}
.top-message .carrer dl dd {
  width: calc(100% - 75px);
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl dd {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.h-doctor {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.h-doctor dd {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.hd-carrer {
    width: 430px;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.hd-carrer dt {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.hd-carrer dd {
    width: 330px;
  }
}
.top-message .carrer dl.hd-certification {
  flex-direction: column;
  border-bottom: none;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.hd-certification {
    flex-direction: row;
    width: 500px;
  }
}
.top-message .carrer dl.hd-certification dd {
  width: calc(100% - 15px);
  margin-left: 10px;
}
@media screen and (min-width: 1200px) {
  .top-message .carrer dl.hd-certification dd {
    margin-left: 0px;
    width: 400px;
  }
}

.top-features {
  padding: 0px 0px 80px 0px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .top-features {
    padding: 0 0 120px 0;
  }
}
.top-features .flex-features-set_wrapper {
  background-color: #efe8dd;
  background-image: url("../img/top/fearures_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 20px 12px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set_wrapper {
    padding: 40px 0 0 0;
  }
}
.top-features .flex-features-set {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 19px;
  padding-bottom: 19px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set {
    gap: 40px;
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
}
.top-features .flex-features-set .each-feature {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background-color: rgba(239, 232, 221, 0.6);
  width: calc((100vw - 43px) / 2);
  height: calc((100vw - 43px) / 2);
  max-width: 270px;
  max-height: 270px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature {
    width: 270px;
    height: 270px;
    max-width: none;
    max-height: none;
  }
}
.top-features .flex-features-set .each-feature figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 71px;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 500px) {
  .top-features .flex-features-set .each-feature figure {
    margin-top: 25%;
    margin-bottom: 25%;
  }
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature figure {
    height: 87px;
    margin-top: 25px;
    margin-bottom: 50px;
  }
}
.top-features .flex-features-set .each-feature figure img {
  width: auto;
  width: calc((100vw - 245px) / 2);
  max-width: 110px;
  height: auto;
  height: calc((100vw - 245px) / 2);
  max-height: 110px;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature figure img {
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
  }
}
.top-features .flex-features-set .each-feature p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}
.top-features .flex-features-set .each-feature p.ps2 {
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature p.ps2 {
    margin-bottom: 25px;
  }
}
.top-features .flex-features-set .each-feature p.p13s2 {
  font-size: 13px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .top-features .flex-features-set .each-feature p.p13s2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.top-features .features_bg {
  background-color: #ad8f5f;
}
.top-features .features_bg_contents {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0px;
     object-position: 50% 0px;
}
@media screen and (min-width: 1200px) {
  .top-features .features_bg_contents {
    width: 100%;
    max-width: 2560px;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.lower-overview,
.top-overview {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set,
  .top-overview .flex-set {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set > div,
  .top-overview .flex-set > div {
    width: 570px;
  }
}
.lower-overview .flex-set .overview-set,
.top-overview .flex-set .overview-set {
  margin-bottom: 35px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set,
  .top-overview .flex-set .overview-set {
    margin-bottom: 0;
  }
}
.lower-overview .flex-set .overview-set .overview-logo,
.top-overview .flex-set .overview-set .overview-logo {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px auto;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set .overview-logo,
  .top-overview .flex-set .overview-set .overview-logo {
    width: auto;
    max-width: 477px;
    margin: 0 auto 20px auto;
  }
}
.lower-overview .flex-set .overview-set .address,
.top-overview .flex-set .overview-set .address {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  margin: 0 auto 0px auto;
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set .address,
  .top-overview .flex-set .overview-set .address {
    font-size: 16px;
    line-height: 26px;
    padding-left: 0%;
    margin-bottom: 0px;
  }
}
.lower-overview .flex-set .overview-set .tel,
.top-overview .flex-set .overview-set .tel {
  display: block;
  text-align: center;
  margin: 0 auto 0px auto;
  padding-bottom: 20px;
}
.lower-overview .flex-set .overview-set .tel a,
.top-overview .flex-set .overview-set .tel a {
  font-size: 39px;
  line-height: 43px;
  color: #474645;
  padding-left: 30px;
  background: url(../img/common/tel_ico.svg) 0 65% no-repeat;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set .tel a,
  .top-overview .flex-set .overview-set .tel a {
    font-size: 39px;
    line-height: 43px;
  }
}
.lower-overview .flex-set .overview-set h3,
.top-overview .flex-set .overview-set h3 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set h3,
  .top-overview .flex-set .overview-set h3 {
    font-size: 16px;
    line-height: 26px;
  }
}
.lower-overview .flex-set .overview-set h3.department_h3,
.top-overview .flex-set .overview-set h3.department_h3 {
  text-align: right;
  padding-top: 30px;
  padding-bottom: 8px;
  width: 80px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set h3.department_h3,
  .top-overview .flex-set .overview-set h3.department_h3 {
    padding-bottom: 6px;
    width: 110px;
  }
}
.lower-overview .flex-set .overview-set table.medical-hours,
.top-overview .flex-set .overview-set table.medical-hours {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px 0;
}
.lower-overview .flex-set .overview-set table.medical-hours td,
.lower-overview .flex-set .overview-set table.medical-hours th,
.top-overview .flex-set .overview-set table.medical-hours td,
.top-overview .flex-set .overview-set table.medical-hours th {
  color: #000;
  font-size: 14px;
  line-height: 18px;
  padding: 13px 5px 13px 5px;
  background-color: #fff;
  border-bottom: #cccccc solid 1px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set table.medical-hours td,
  .lower-overview .flex-set .overview-set table.medical-hours th,
  .top-overview .flex-set .overview-set table.medical-hours td,
  .top-overview .flex-set .overview-set table.medical-hours th {
    font-size: 16px;
    line-height: 20px;
    padding: 14px 5px 14px 5px;
  }
}
.lower-overview .flex-set .overview-set table.medical-hours td:first-child,
.lower-overview .flex-set .overview-set table.medical-hours th:first-child,
.top-overview .flex-set .overview-set table.medical-hours td:first-child,
.top-overview .flex-set .overview-set table.medical-hours th:first-child {
  text-align: right;
  width: 80px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set table.medical-hours td:first-child,
  .lower-overview .flex-set .overview-set table.medical-hours th:first-child,
  .top-overview .flex-set .overview-set table.medical-hours td:first-child,
  .top-overview .flex-set .overview-set table.medical-hours th:first-child {
    width: 110px;
  }
}
.lower-overview .flex-set .overview-set table.medical-hours th,
.top-overview .flex-set .overview-set table.medical-hours th {
  font-weight: 600;
}
.lower-overview .flex-set .overview-set table.medical-hours thead tr th,
.top-overview .flex-set .overview-set table.medical-hours thead tr th {
  border-top: #cccccc solid 1px;
}
.lower-overview .flex-set .overview-set dl,
.top-overview .flex-set .overview-set dl {
  display: flex;
  flex-wrap: wrap;
}
.lower-overview .flex-set .overview-set dl dt,
.lower-overview .flex-set .overview-set dl dd,
.top-overview .flex-set .overview-set dl dt,
.top-overview .flex-set .overview-set dl dd {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set dl dt,
  .lower-overview .flex-set .overview-set dl dd,
  .top-overview .flex-set .overview-set dl dt,
  .top-overview .flex-set .overview-set dl dd {
    font-size: 16px;
    line-height: 26px;
  }
}
.lower-overview .flex-set .overview-set dl dt,
.top-overview .flex-set .overview-set dl dt {
  text-align: right;
  width: 80px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set dl dt,
  .top-overview .flex-set .overview-set dl dt {
    width: 110px;
  }
}
.lower-overview .flex-set .overview-set dl dd,
.top-overview .flex-set .overview-set dl dd {
  width: calc(100% - 80px);
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set dl dd,
  .top-overview .flex-set .overview-set dl dd {
    width: calc(100% - 110px);
  }
}
.lower-overview .flex-set .overview-set dl dd::before,
.top-overview .flex-set .overview-set dl dd::before {
  content: "：";
}
.lower-overview .flex-set .overview-set .medical-hours-closed-weekend_set,
.top-overview .flex-set .overview-set .medical-hours-closed-weekend_set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.lower-overview .flex-set .overview-set dl.medical-hours-closed,
.top-overview .flex-set .overview-set dl.medical-hours-closed {
  width: auto;
}
.lower-overview .flex-set .overview-set dl.medical-hours-closed dd,
.top-overview .flex-set .overview-set dl.medical-hours-closed dd {
  width: auto;
}
.lower-overview .flex-set .overview-set dl.medical-hours-weekend,
.top-overview .flex-set .overview-set dl.medical-hours-weekend {
  width: auto;
}
.lower-overview .flex-set .overview-set dl.medical-hours-weekend dt,
.top-overview .flex-set .overview-set dl.medical-hours-weekend dt {
  width: auto;
}
.lower-overview .flex-set .overview-set dl.medical-hours-weekend dd,
.top-overview .flex-set .overview-set dl.medical-hours-weekend dd {
  text-align: right;
  width: auto;
}
.lower-overview .flex-set .overview-set p.kome,
.top-overview .flex-set .overview-set p.kome {
  font-size: 14px;
  line-height: 20px;
  text-indent: -14px;
  transform: translateX(52px);
  width: calc(100% - 52px);
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .overview-set p.kome,
  .top-overview .flex-set .overview-set p.kome {
    font-size: 16px;
    line-height: 22px;
    text-indent: -16px;
    transform: translateX(78px);
    width: calc(100% - 78px);
  }
}
.lower-overview .flex-set .overview-set dl.department_dl,
.top-overview .flex-set .overview-set dl.department_dl {
  padding-top: 8px;
  border-top: #cccccc solid 1px;
}
.lower-overview .flex-set .map-set iframe,
.top-overview .flex-set .map-set iframe {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .map-set iframe,
  .top-overview .flex-set .map-set iframe {
    width: 570px;
  }
}
.lower-overview .flex-set .map-set ul,
.top-overview .flex-set .map-set ul {
  list-style: none;
}
.lower-overview .flex-set .map-set ul li,
.top-overview .flex-set .map-set ul li {
  font-size: 14px;
  line-height: 18px;
  padding: 3px 0;
  text-indent: -14px;
  transform: translateX(14px);
  width: calc(100% - 14px);
}
@media screen and (min-width: 1200px) {
  .lower-overview .flex-set .map-set ul li,
  .top-overview .flex-set .map-set ul li {
    font-size: 16px;
    line-height: 20px;
    padding: 3px 0;
    text-indent: -16px;
    transform: translateX(16px);
    width: calc(100% - 16px);
  }
}
.lower-overview .flex-set .map-set ul li::before,
.top-overview .flex-set .map-set ul li::before {
  content: "・";
}

.news_list {
  box-sizing: border-box;
  border-top: 1px solid #c3c3c3;
  margin-bottom: 27px;
}
@media screen and (min-width: 1200px) {
  .news_list {
    margin-bottom: 0px;
    width: 1200px;
    margin-bottom: 50px;
  }
}
.news_list a {
  display: block;
  border-bottom: 1px solid #c3c3c3;
}
.news_list a dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .news_list a dl {
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.news_list a dl dt,
.news_list a dl dd {
  font-size: 14px;
  line-height: 18px;
}
@media screen and (min-width: 1200px) {
  .news_list a dl dt,
  .news_list a dl dd {
    font-size: 16px;
    line-height: 26px;
  }
}
.news_list a dl dt {
  padding-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .news_list a dl dt {
    padding-bottom: 0px;
    padding-left: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .news_list a dl dd {
    width: 870px;
    padding-left: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.news_list_no_btn {
  margin-bottom: 0;
}

.gallery-layout {
  width: 100%;
  padding: 0 0 30px 0;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .gallery-layout {
    padding: 0 0 50px 0;
  }
}
.gallery-layout .image-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0px;
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-large {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-large-inner {
    display: flex;
    width: 1500px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.gallery-layout .image-row-large img {
  width: 100%;
  max-width: 660px;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-large img {
    width: 750px;
    max-width: none;
    height: 355px;
    margin: 0 0 40px 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-large img.left-img {
    -o-object-position: left center;
       object-position: left center;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-large img.right-img {
    -o-object-position: right center;
       object-position: right center;
    margin-left: 20px;
  }
}
.gallery-layout .image-row-small {
  padding: 0 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-small {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0;
  }
}
.gallery-layout .image-row-small img {
  width: 100%;
  max-width: 660px;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .gallery-layout .image-row-small img {
    width: 560px;
    max-width: none;
    height: 355px;
    margin: 0 20px;
  }
}

.top-reservation {
  padding: 20px 12px 80px 12px;
}
@media screen and (min-width: 1200px) {
  .top-reservation {
    padding: 50px 0 120px 0;
  }
}
.top-reservation p {
  text-align: center;
  margin: 0 0 50px 0;
}

/*---------------------------------------------*/
/*---------------------------------------------------*/
footer {
  flex-shrink: 0;
  width: 100%;
}

#footer_wrapper {
  width: 100%;
  background: #f8f4ee 0% 0% no-repeat padding-box;
  border-top: 5px solid #ded0b9;
}

#footer_wrapper #footer_set {
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set {
    width: 100%;
  }
}
#footer_wrapper #footer_set .ft-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 70px 0 30px 0;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set .ft-logo {
    padding: 70px 0 35px 0;
  }
}
#footer_wrapper #footer_set .ft-logo a {
  display: block;
  text-align: center;
}
#footer_wrapper #footer_set .ft-logo a img {
  width: 90%;
  max-width: 318px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set .ft-logo a img {
    width: 347px;
    max-width: none;
  }
}
#footer_wrapper #footer_set .ft-logo a:hover img {
  opacity: 0.7;
}
#footer_wrapper #footer_set p.ft-address {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set p.ft-address {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }
}
#footer_wrapper #footer_set p.ft-open-date {
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
  color: #646262;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set p.ft-open-date {
    font-size: 27px;
    line-height: 37px;
  }
}
#footer_wrapper #footer_set p.ft-open-date span {
  font-size: 22px;
  line-height: 32px;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set p.ft-open-date span {
    font-size: 26px;
    line-height: 36px;
  }
}
#footer_wrapper #footer_set nav.ft-sns ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 29px auto 29px auto;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set nav.ft-sns ul {
    margin: 29px auto 29px auto;
  }
}
#footer_wrapper #footer_set nav.ft-sns ul li a {
  display: block;
  margin: 0 8px;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set nav.ft-sns ul li a {
    margin: 0 8px;
  }
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set nav.ft-sns ul li a:hover {
    opacity: 0.7;
  }
}
#footer_wrapper #footer_set p.copyright {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 1.1px;
  padding: 10px 0 10px 0;
  background: #ded0b9 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 1200px) {
  #footer_wrapper #footer_set p.copyright {
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0 10px 0;
  }
}/*# sourceMappingURL=style.css.map */