@charset "UTF-8";
/*#ffffffe8*/
.sp_disp {
  display: none !important;
}

.test {
  text-align: center;
}

html h1 {
  font-size: 3rem;
}

h2 {
  font-size: 4rem;
  font-weight: 500;
}

h3 {
  font-size: 4rem;
  font-weight: 400;
}

h4 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-top: 0;
  color: #976539;
}

section p, ul li {
  font-size: 1.7rem;
  line-height: 180%;
}

header {
  width: 100%;
}
header .hide_top {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  margin: auto;
  opacity: 0.8;
  width: 100%;
}
header .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
  margin: 0 auto;
}
header .inner h1 {
  width: 200px;
  font-size: 2rem;
  padding: 2rem 1rem 0.5rem;
  background: #fff;
  border-radius: 20px;
  border-radius: 0 0 20px 20px;
}
header .inner .logo_img img {
  width: 200px;
}
header .inner .logo_img span.tent_name {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  margin: -12px 0 5px;
  color: #976539;
}
header .inner .inner a {
  display: block;
}
header .menu_wrapper {
  display: none;
  position: relative;
  width: 100%;
  /* ハンバーガーがXに変形 */
  /* オーバーレイ背景 */
  /* メニュー本体（左から出す） */
}
header .menu_wrapper .menu_icon {
  width: 55px;
  height: 55px;
  position: fixed;
  top: 6.5%;
  right: 4.8vw;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
  background: rgba(255, 255, 255, 0.831372549);
  border-radius: 50%;
}
header .menu_wrapper .menu_icon_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
}
header .menu_wrapper .menu_icon span {
  display: block;
  height: 6px;
  width: 72%;
  margin: 6px auto 0;
  background: #333;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .menu_wrapper .menu_icon span:nth-child(1) {
  margin-top: 0;
}
header .menu_wrapper .menu_icon span:nth-child(1) {
  background-color: #00b096;
}
header .menu_wrapper .menu_icon span:nth-child(2) {
  background-color: #f4b3c1;
}
header .menu_wrapper .menu_icon span:nth-child(3) {
  background-color: #98cc8a;
}
header .menu_wrapper #menu_toggle {
  display: none;
}
header .menu_wrapper #menu_toggle:checked + .menu_icon span:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
header .menu_wrapper #menu_toggle:checked + .menu_icon span:nth-child(2) {
  opacity: 0;
}
header .menu_wrapper #menu_toggle:checked + .menu_icon span:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
header .menu_wrapper .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
header .menu_wrapper #menu_toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
header .menu_wrapper .menu {
  position: fixed;
  top: 0;
  left: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: left 0.4s ease;
  transition: left 0.4s ease;
  z-index: 2;
}
header .menu_wrapper #menu_toggle:checked ~ .menu {
  left: 0; /* ← 開いたときは左0へ */
}
header .menu_wrapper .menu ul {
  list-style: none;
  padding: 60px 20px;
}
header .menu_wrapper .menu li {
  margin: 20px 0;
}
header .menu_wrapper .menu a {
  text-decoration: none;
  color: #333;
  font-size: 2rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
header .menu_wrapper .menu a:hover {
  color: #007bff;
}

@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1400px;
    padding: 0;
    margin: 0 auto;
  }
}
section h3 {
  font-size: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
  color: #976539;
}

section h3 span {
  font-size: 2rem;
}

div.mv_mainvisual {
  position: relative;
  background: #FFFDEF;
  background-size: 20%;
  padding: 4rem 4rem 0;
  height: 85vh;
}
div.mv_mainvisual .inner {
  width: 100%;
  height: 85vh;
  max-width: 100vw;
  background-image: url("../images/mv_pc.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 4rem 4rem 0rem 0;
}
@media screen and (min-width: 1200px) {
  div.mv_mainvisual .inner {
    width: 100%;
    max-width: 95vw;
  }
}
div.mv_mainvisual .hide_top {
  position: absolute;
  top: 0;
}
div.mv_mainvisual h2 {
  top: 30%;
}
div.mv_mainvisual img {
  width: 100%;
  display: none;
}
div.mv_mainvisual .mv_copy, div.mv_mainvisual .mv_pop {
  position: absolute;
  font-size: 2rem;
}
div.mv_mainvisual .mv_copy {
  position: absolute;
  top: 62%;
  left: 5%;
}
div.mv_mainvisual .mv_copy h2 {
  color: #6aafa5;
  font-size: 3.6rem;
  line-height: 69px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
div.mv_mainvisual .mv_copy h2 span {
  display: block;
  background-color: #fff;
  padding: 0 15px 2px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  line-height: 1.75;
}
div.mv_mainvisual .mv_copy h2 span.fadeLeft:nth-child(1) {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}
div.mv_mainvisual .mv_copy h2 span.fadeLeft:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; /*遅延*/
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s; /*アニメ間隔*/
}
div.mv_mainvisual .mv_copy .sub_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0 0;
}
div.mv_mainvisual .mv_copy .sub_list.fadeLeft {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}
div.mv_mainvisual .mv_copy .sub_list li {
  background: #976539;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  z-index: 1;
}
div.mv_mainvisual .mv_copy .sub_list li.fadeIn:nth-child(1) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  margin-right: 2rem;
}
div.mv_mainvisual .mv_copy .sub_list li.fadeIn:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
div.mv_mainvisual .mv_pop {
  position: absolute;
  right: 0%;
  bottom: 0;
  background: #6aafa5;
  color: #fff;
  border-radius: 20px 0 0 0;
  width: 440px;
  height: 132px;
  padding: 20px 5% 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}
div.mv_mainvisual .mv_pop p {
  font-size: 32px;
  text-align: left;
}
div.mv_mainvisual .mv_pop span.small {
  font-size: 2.4rem;
}
div.mv_mainvisual .mv_pop span.number, div.mv_mainvisual .mv_pop span.big {
  margin: 0 0.5rem;
  font-size: 3.6rem;
}
div.mv_mainvisual .mv_pop span.weekday {
  background-color: #fff;
  color: #6aafa5;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  padding: 0px 5px;
  margin: -10px 0px 0 5px;
  vertical-align: middle;
  font-size: 2rem;
}
div.mv_mainvisual img {
  display: none;
  width: 350px;
}
div.mv_mainvisual p {
  margin: 0;
  font-size: 2.4rem;
}

.fv-area img {
  display: block;
  width: 100%;
}

nav.nav_menu_list {
  z-index: 1111;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0px;
}
nav.nav_menu_list ul {
  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;
  height: 10rem;
  width: 80vw;
  margin: 0 auto;
}
nav.nav_menu_list li {
  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;
  width: 100%;
  height: inherit;
  color: #976539;
  font-weight: bold;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
nav.nav_menu_list li:first-child a {
  border-left: 1px solid #ccc;
}
nav.nav_menu_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.8rem;
  font-weight: 600;
  border-right: 1px solid #ccc;
  width: 100%;
  text-align: center;
  color: #333;
  padding-bottom: 2rem;
}
nav.nav_menu_list li a:after {
  position: absolute;
  bottom: 0.2rem;
  right: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  line-height: 1;
  margin: 0;
  color: #d4a378;
  font-weight: bold;
}

.bnr_box {
  text-align: center;
  padding: 8rem 0 0;
  background-color: #f4eee8;
}

.bnr_box img {
  width: 700px;
  max-width: 100%;
  height: auto;
}

.about_area {
  padding: 10rem 0;
  margin-bottom: 0;
  background-blend-mode: lighten;
  background-position: left;
}
.about_area .about_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 25px;
}
.about_area .about_inner h4 {
  text-align: center;
  margin-bottom: 2rem;
}
.about_area .about_inner .about_img {
  width: 50vw;
  max-width: 250px;
  display: block;
  margin: 0 auto 2rem;
}
.about_area .about_inner p {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.doctor_area {
  padding: 8rem 4rem;
  background-color: #f4eee8;
}
.doctor_area h3 {
  margin-bottom: 4rem;
  text-align: center;
  color: #976539;
}
.doctor_area .doctor_name {
  font-size: 2rem;
  text-align: right;
  margin: 20px 0 0 0;
  padding: 0 0px 0 0;
}
.doctor_area .doctor_name rt {
  font-size: 12px;
  display: ruby-text;
  text-indent: 0px;
  line-height: normal;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  letter-spacing: -1.65rem;
}
.doctor_area .doctor_name rb {
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  font-weight: 400;
}
.doctor_area .doctor_name ruby {
  font-size: 30px;
  margin: 10px 0 0;
}

.greeting_box, .historyFlex, .feature ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.greeting_box {
  margin-bottom: 8rem;
}

.historyFlex {
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.historyFlex ul li {
  padding: 1rem 0.5rem;
  border-bottom: 2px dotted #ccc;
}
.historyFlex ul li:last-child {
  border-bottom: 0;
}
.historyFlex .history {
  margin-right: 2rem;
}
.historyFlex .history h3 {
  text-align: center;
  margin-bottom: 0.8rem;
  color: #976539;
  font-weight: normal;
}
.historyFlex .history dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dotted #ccc;
  padding: 1rem 0.5rem;
  margin: 0;
}
.historyFlex .history dl.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.historyFlex .history dl:last-child {
  border-bottom: 0;
}
.historyFlex .history dl dt {
  width: 100px;
  float: left;
}
.historyFlex .history dl dt, .historyFlex .history dl dd {
  line-height: 180%;
}
.historyFlex .history, .historyFlex .qualification {
  padding: 4rem;
  width: calc((100% - 2.4rem) / 2);
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
.historyFlex .history h4, .historyFlex .qualification h4 {
  text-align: center;
  margin-bottom: 1rem;
}

.greeting_box {
  margin-bottom: 8rem;
  padding: 5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  border-radius: 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.greeting_box h3 {
  text-align: center;
}
.greeting_box .item:nth-chigreeting_boxld(1) {
  width: 50vw;
  margin-right: 1rem;
}
.greeting_box .item h4 {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  line-height: 4.8rem;
  font-weight: 500;
  color: #6aafa5;
}
.greeting_box .item .greeting_img {
  width: 360px;
  height: 500px;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: #f8f8f8;
  border-radius: 1vw;
  min-width: 300px;
  float: right;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature {
  padding: 8rem 4rem;
}
.feature ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.feature h3 {
  text-align: center;
  margin-bottom: 6rem;
}
.feature li {
  width: calc((100% - 4rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6rem;
}
.feature li p.list_title {
  font-weight: bold;
  color: #976539;
  font-size: 2.3rem;
  line-height: 1.4;
  margin: 0 0 1rem;
}
.feature li p.img-area {
  position: relative;
}
.feature li p.img-area img {
  display: block;
  width: 210px;
  background: #ccc;
  background-size: cover;
  margin: 0 2rem 0;
  border-radius: 100px 50px;
}
.feature li:last-child {
  margin-right: 0;
}
.feature li:nth-child(1) p.img-area::before {
  content: "1";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  color: #b9a28e;
  position: absolute;
  top: -20px;
  margin: 0 auto;
  border-radius: 60px;
  z-index: 1;
  font-size: 8rem;
}
.feature li:nth-child(2) p.img-area::before {
  content: "2";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  color: #b9a28e;
  position: absolute;
  top: -20px;
  margin: 0 auto;
  border-radius: 60px;
  z-index: 1;
  font-size: 8rem;
}
.feature li:nth-child(3) p.img-area::before {
  content: "3";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  color: #b9a28e;
  position: absolute;
  top: -20px;
  margin: 0 auto;
  border-radius: 60px;
  z-index: 1;
  font-size: 8rem;
}
.feature li:nth-child(4) p.img-area::before {
  content: "4";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  color: #b9a28e;
  position: absolute;
  top: -20px;
  margin: 0 auto;
  border-radius: 60px;
  z-index: 1;
  font-size: 8rem;
}
@media screen and (max-width: 1260px) {
  .feature li:nth-child(1) p.list_title br {
    display: none;
  }
}

.access_area {
  position: relative;
  padding: 8rem 0;
  background: #dceadf;
}
.access_area .access_logo {
  width: 100%;
  margin-right: auto;
}
.access_area .access_logo img {
  position: relative;
  display: block;
  margin: 0 0 2rem;
  max-width: 250px;
}
.access_area button.mapBtn {
  display: block;
  margin: 1rem 0;
  background: #a5815f;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  color: #fff;
}
.access_area button.mapBtn:focus {
  outline: 2px solid #976539;
}
.access_area button.mapBtn:hover {
  background-color: #b9a28e;
}
.access_area button.mapBtn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  line-height: 1;
  margin: 0 5px 0 0;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
}
.access_area button.mapBtn:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  line-height: 1;
  margin: 0 0 0 7px;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
}
.access_area h3 {
  position: absolute;
  top: 13rem;
  left: 0;
  margin: 0rem 0 0rem 0;
  text-align: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #976539;
  z-index: 100;
}
.access_area .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  -ms-flex-pack: center;
  background: #dceadf;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.access_area .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.access_area .inner dl dt, .access_area .inner dl dd {
  margin-bottom: 1rem;
}
.access_area .inner dl dt {
  width: 20%;
}
.access_area .inner dl dd {
  width: 80%;
}
.access_area button {
  margin: 1rem;
}
.access_area .detail_box {
  width: 53%;
  margin-right: 2rem;
}
.access_area .map_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border-radius: 0rem;
  overflow: hidden;
}
.access_area .map_box iframe {
  height: 595px;
}
.access_area #timeTable table {
  border-collapse: collapse;
  border-top: solid 1px #111;
  border-bottom: solid 1px #111;
  width: 100%;
  margin: 0 0 20px;
  color: #111;
}
.access_area #timeTable table tr:nth-child(1) {
  font-weight: bold;
  color: #595757;
}
.access_area #timeTable table td.close {
  color: #111 !important;
}
.access_area #timeTable table tr {
  border-bottom: solid 1px #111;
  text-align: center;
}
.access_area #timeTable table tr:nth-child(1) th {
  font-weight: bold !important;
  width: 170px;
  padding: 10px;
  color: #976539;
}
.access_area #timeTable table th, .access_area #timeTable table td {
  vertical-align: middle;
  padding: 15px 10px;
  position: relative;
  font-size: 17px;
  font-weight: 400;
}
.access_area #timeTable span.shapes {
  color: #a5815f;
}

footer {
  /* トップへ戻るボタン */
}
footer .copyright {
  color: #fff;
  text-align: center;
  background-color: #867c73;
  padding: 0px 0 4rem;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 4rem 0;
}
footer .grandeur {
  text-align: center;
  padding: 50px 0;
}
footer .grandeur dt {
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 5px;
}
footer .grandeur dd a img {
  width: 160px;
  height: auto;
}
footer .page_top_btn {
  position: fixed;
  bottom: 15px;
  right: 2.4vw;
  font-weight: bold;
  padding: 0.7em;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  background-image: url(../images/pagetop.png);
  background-size: cover;
}
footer .footer .page_top_btn a:before {
  display: inline-block;
  width: 60px;
  height: 60px;
}age_top_btn a:before {
  display: inline-block;
  width: 60px;
  height: 60px;
}