@charset "UTF-8";
/* commonParts
---------------------------------------------------- */
.__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .__inner {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner {
    width: calc(100% - 40px);
  }
}
.__inner.__wide {
  width: min(100%, 1920px);
}
.__inner.__medium {
  width: 72.5rem;
}
@media screen and (max-width: 1199px) {
  .__inner.__medium {
    width: 90rem;
  }
}
@media screen and (max-width: 991px) {
  .__inner.__medium {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner.__medium {
    width: calc(100% - 40px);
  }
}

.__liststyle li {
  display: flex;
  align-items: flex-start;
}
.__liststyle li::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.1em;
  background-color: #757572;
  margin-top: 0.8em;
  margin-right: 0.8em;
  flex-shrink: 0;
}
.__liststyle.__dotline li {
  background-image: url(../images/dotline_lgray.png);
  background-repeat: repeat-x;
  background-size: 6px 1px;
  background-position: 0 100%;
  padding-bottom: 6px;
  line-height: 2em;
}
.__liststyle.__dotline li::before {
  content: "\f111";
  width: initial;
  height: initial;
  background-color: initial;
  color: #99b244;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5em;
  margin-top: 0.3em;
  margin-right: 1.4em;
  flex-shrink: 0;
}
.__liststyle.__order li::before {
  display: none;
}
.__liststyle.__order li span.__num {
  flex-shrink: 0;
  margin-right: 0.4em;
}
.__liststyle.__note li {
  color: #757572;
  font-size: 0.9em;
  line-height: 1.6em;
  margin-top: 0.6em;
}
.__liststyle.__note li::before {
  width: initial;
  height: initial;
  background-color: initial;
  color: #757572;
  content: "※";
  margin-top: 0;
  margin-right: 0.4em;
}

.__txtlimit {
  max-width: 100%;
}
.__txtlimit span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.__fsiz-18 {
  font-family: "Shippori Mincho", serif;
  font-size: max(1.05em, 1.125rem);
}
@media screen and (max-width: 767px) {
  .__fsiz-18 {
    font-size: 1em;
  }
}

.__fsiz-20 {
  font-family: "Shippori Mincho", serif;
  font-size: max(1.125em, 1.25rem);
}

.__txtlimit {
  max-width: 100%; /* 親幅に合わせて制限 */
  white-space: nowrap; /* 折り返さない */
  overflow: hidden; /* はみ出した部分を隠す */
  text-overflow: ellipsis;
}

.__ttlstyle01 {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Shippori Mincho", serif;
  font-size: 2.25rem;
  line-height: 1.2em;
  padding-left: 0.8em;
  border-left: solid 4px #99b244;
}
@media screen and (max-width: 1199px) {
  .__ttlstyle01 {
    font-size: 1.645em;
  }
}
@media screen and (max-width: 767px) {
  .__ttlstyle01 {
    font-size: min(4.8vw, 1.375em);
  }
}
.__ttlstyle01.__center {
  margin: 0 auto;
}

.__ttlstyle02 {
  text-align: center;
  width: 100%;
  border: solid 1px #ccccc6;
  border-radius: 50vh;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 0.95em;
  line-height: 1.2em;
  padding: 0.6em;
}
@media screen and (max-width: 767px) {
  .__ttlstyle02 {
    font-size: 0.9em;
  }
}

.__ttlstyle03 {
  display: flex;
  align-items: flex-start;
  line-height: 1.4em;
}
.__ttlstyle03::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.1em;
  background-color: #a8be5c;
  margin-top: 0.7em;
  margin-right: 0.6em;
  flex-shrink: 0;
}

.__ttlstyle04 {
  padding-bottom: 1em;
  border-bottom: solid 1px #a7a7a7;
}
@media screen and (max-width: 767px) {
  .__ttlstyle04 {
    padding-bottom: 0.8em;
  }
}

.__labelstyle01 {
  display: inline-block;
  color: #fff;
  background-color: #757572;
  font-size: 0.75em;
  line-height: 1.4em;
  padding: 0.2em 0.6em 0.3em;
}

.__labelstyle02 {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  background-color: #f0f0eb;
  border: solid 1px #ccccc6;
  border-radius: 50vh;
  padding: 0.2em 1em 0.3em;
  margin-right: 0.6em;
  margin-top: 0.6em;
}

.__em-style {
  color: #cc3232;
}

.__txt-marker {
  font-weight: 500;
  display: inline;
  padding: 0.2em 0;
  line-height: 2em;
  background: linear-gradient(transparent 0, rgba(168, 190, 92, 0.3) 0);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 50%;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.__txt-marker.__inview {
  opacity: 1;
  background-size: 100% 50%;
}

a.__txtlink {
  color: #a8be5c;
  display: inline;
  text-decoration: underline;
}
a.__anchor-point {
  position: absolute;
}

.__hover-style {
  transition: all 0.24s ease;
}
.__hover-style:hover {
  opacity: 0.6;
}
.__hover-style.__08:hover {
  opacity: 0.8;
}

.__linkbtn01 {
  width: -moz-max-content;
  width: max-content;
}
.__linkbtn01 a, .__linkbtn01 button {
  position: relative;
  color: #373834;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.05em;
  padding: 0.4em 0;
  padding-right: 0.2em;
  border-bottom: solid 1px #fff;
}
.__linkbtn01 a::after, .__linkbtn01 button::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #757572;
  transform: translateY(1px) scaleX(0);
  opacity: 0;
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0s 0.24s;
}
.__linkbtn01 a span, .__linkbtn01 button span {
  display: block;
}
.__linkbtn01 a span.__txt, .__linkbtn01 button span.__txt {
  margin-right: 1.2em;
}
.__linkbtn01 a span.__arrow, .__linkbtn01 button span.__arrow {
  width: 0.24em;
}
.__linkbtn01 a span.__arrow img, .__linkbtn01 button span.__arrow img {
  width: 100%;
  height: auto;
}
.__linkbtn01 a:hover::after, .__linkbtn01 button:hover::after {
  transform: translateY(1px) scaleX(1);
  opacity: 1;
  transition: opacity 0s, transform 0.36s ease;
}
.__linkbtn01.__back a span.__txt, .__linkbtn01.__back button span.__txt {
  margin-right: 0;
  margin-left: 1.2em;
}
.__linkbtn01.__back a span.__arrow, .__linkbtn01.__back button span.__arrow {
  transform: scaleX(-1);
}
.__linkbtn01.__border-lgray a, .__linkbtn01.__border-lgray button {
  border-bottom-color: #f0f0eb;
}

.__linkbtn02 {
  position: relative;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
}
.__linkbtn02::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  display: block;
  background-color: #fff;
}
.__linkbtn02 a {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  padding: 1em 2em;
  box-shadow: 0px 0px 16px rgba(160, 160, 160, 0.2);
}
@media screen and (max-width: 767px) {
  .__linkbtn02 a {
    padding: 0.8em 2em;
  }
}
.__linkbtn02 a span {
  display: block;
}
.__linkbtn02 a span.__txt {
  margin-right: 1em;
}
.__linkbtn02 a span.__arrow {
  width: 0.8em;
}
.__linkbtn02 a span.__arrow img {
  width: 100%;
  height: auto;
}
.__linkbtn02.__web a {
  color: #fff;
  background-color: #99b244;
}
.__linkbtn02.__white a {
  color: #757572;
  background-color: #fff;
}
.__linkbtn02.__white a span.__txt {
  margin-right: 1em;
}
.__linkbtn02.__white a span.__arrow {
  padding-left: 0.48em;
}
.__linkbtn02.__white a span.__arrow img {
  opacity: 0.6;
}
.__linkbtn02.__white.__style02 {
  width: 20em;
}
.__linkbtn02.__white.__style02 a {
  justify-content: space-between;
  color: #373834;
  font-family: "Shippori Mincho", serif;
  font-size: 1.05em;
  padding: 1em 2.4em;
}
@media screen and (max-width: 767px) {
  .__linkbtn02.__white.__style02 a {
    padding: 0.8em 2em;
  }
}
.__linkbtn02.__white.__style02 a span.__txt {
  margin-right: 0;
}
.__linkbtn02.__white.__style02 a span.__arrow {
  padding-left: 0.52em;
}

.__table-style01 dl {
  font-family: "Shippori Mincho", serif;
  font-size: max(1em, 1.125rem);
  display: flex;
  padding: 1.4em 0;
  border-bottom: solid 1px #ccccc6;
}
@media screen and (max-width: 767px) {
  .__table-style01 dl {
    display: block;
  }
}
.__table-style01 dl dt, .__table-style01 dl dd {
  font-size: 1em;
}
.__table-style01 dl dt {
  color: #757572;
  font-weight: 500;
  width: 16em;
}
@media screen and (max-width: 767px) {
  .__table-style01 dl dt {
    width: 100%;
  }
}
.__table-style01 dl dd {
  width: calc(100% - 16em);
}
@media screen and (max-width: 767px) {
  .__table-style01 dl dd {
    width: 100%;
    margin-top: 1em;
  }
}
.__table-style01 dl dd a {
  display: inline;
  font-size: 1em;
}

.__slider-style {
  width: 100%;
}
.__slider-style .swiper-slide {
  height: auto;
}
.__slider-style .slider-content {
  background-color: #fff;
  height: 100%;
}
.__slider-style .slider-content .content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.4em 1.6em;
}
.__slider-style .slider-content .content-inner .content-ttl {
  border-bottom: solid 1px #ccccc6;
  margin-bottom: 1.4em;
}
.__slider-style .slider-content .content-inner .content-ttl .__ttl {
  font-weight: 500;
}
.__slider-style .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .__slider-style .swiper-controller {
    margin-top: 1em;
  }
}
.__slider-style .swiper-controller .swiper-button-prev,
.__slider-style .swiper-controller .swiper-button-next {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  margin-top: 0;
  color: #fff;
  background-color: rgba(153, 178, 68, 0.7);
  width: 2em;
  height: 2em;
  border-radius: 50%;
}
.__slider-style .swiper-controller .swiper-button-prev::after,
.__slider-style .swiper-controller .swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85em;
}
.__slider-style .swiper-controller .swiper-button-prev::after {
  margin-left: -0.1em;
}
.__slider-style .swiper-controller .swiper-button-next::after {
  margin-right: -0.1em;
}
.__slider-style .swiper-controller .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: initial;
  width: 360px;
  margin: 0 1em;
}
@media screen and (max-width: 767px) {
  .__slider-style .swiper-controller .swiper-pagination {
    width: calc(100% - 8em);
  }
}
.__slider-style .swiper-controller .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #a7a7a7;
  width: calc(10% - 2.7px);
  height: 2px;
  margin-right: 3px;
}
.__slider-style .swiper-controller .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.__slider-style .swiper-controller .swiper-pagination-bullet-active {
  background-color: #757572;
}

.__bgcolor-lgray02 {
  background-color: #f0f0eb;
}

.__bgcolor-white {
  background-color: #fff;
}

.content-wrap.__tel {
  width: -moz-max-content;
  width: max-content;
  border: solid 1px #99b244;
  border-radius: 50vh;
  padding: 1em 2em;
}
.content-wrap.__tel .num-txt {
  color: #99b244;
  font-size: max(1.375em, 1.5rem);
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .content-wrap.__tel .num-txt {
    font-size: 1.25em;
  }
}
.content-wrap.__tel .num-txt a {
  display: inline;
  font-size: 1em;
}
.content-wrap.__tel .num-txt img {
  display: inline-block;
  width: 1em;
  height: auto;
  margin-left: -0.4em;
  margin-right: 0.6em;
}
.content-wrap.__border {
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 1px #f0f0eb;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .content-wrap.__border {
    padding: 4px;
  }
}
.content-wrap.__border .content-inner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  border: solid 1px #f0f0eb;
  padding: 1.6em;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .content-wrap.__border .content-inner {
    padding: 1.6em 1.2em;
  }
}

.__fadeIn {
  transform: translateY(10px);
  opacity: 0;
  transition: all 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.__fadeIn.__delay00 {
  transition-delay: 0s;
}
.__fadeIn.__inview {
  transform: translateY(0);
  opacity: 1;
}

.__blurIn {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  filter: blur(4px);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, opacity 1.2s ease 0.2s, filter 1s ease 0.2s;
}
.__blurIn.__inview {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0); /* 全表示 */
}

.__meguro-mental {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
.__meguro-mental p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6em;
}
.__meguro-mental p::after {
  content: "";
  display: block;
  width: calc(100% - 10em);
  height: 1px;
  background-color: #ccccc6;
}
.__meguro-mental h2, .__meguro-mental h3 {
  color: #99b244;
  line-height: 1.2em;
  transform: translateX(-0.12em);
}

.__revisit-hours .hours-calendar {
  width: 34em;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours .hours-calendar {
    width: 100%;
  }
}
.__revisit-hours .hours-calendar .calendar-content {
  margin-top: 0.8em;
}
.__revisit-hours .hours-calendar .calendar-content table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.9em, 1rem);
  border: none;
}
.__revisit-hours .hours-calendar .calendar-content table tr.__border-top {
  border-top: solid 2px #fff;
}
.__revisit-hours .hours-calendar .calendar-content table th, .__revisit-hours .hours-calendar .calendar-content table td {
  text-align: center;
  vertical-align: middle;
  background-color: #f8f7f4;
  padding: 1.2em 0.4em;
}
.__revisit-hours .hours-calendar .calendar-content table th {
  color: #757572;
  font-weight: 500;
  line-height: 1.4em;
}
.__revisit-hours .hours-calendar .calendar-content table th.__week {
  font-size: 0.925em;
  width: 4em;
  line-height: 1em;
}
.__revisit-hours .hours-calendar .calendar-content table th.__hour {
  font-size: 0.95em;
  width: 8em;
}
.__revisit-hours .hours-calendar .calendar-content table td {
  font-size: 1em;
  line-height: 1em;
}
.__revisit-hours .hours-calendar .calendar-content table td span.__mark01, .__revisit-hours .hours-calendar .calendar-content table td span.__mark02 {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border: solid 1px #99b244;
}
.__revisit-hours .hours-calendar .calendar-content table td span.__mark01 {
  background-color: #99b244;
}
.__revisit-hours .hours-calendar .calendar-content table td span.__mark02 {
  background-color: initial;
}
.__revisit-hours .hours-calendar .calendar-content table td span.__note {
  font-size: 0.8em;
  margin-left: 0.4em;
}
.__revisit-hours .hours-calendar .hour-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.__revisit-hours .hours-calendar .hour-list ul {
  width: calc(50% - 1em);
}
@media screen and (max-width: 767px) {
  .__revisit-hours .hours-calendar .hour-list ul {
    width: 100%;
    margin-top: 0.4em;
  }
}
.__revisit-hours .hours-calendar .hour-list ul li {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1em;
}
.__revisit-hours .hours-calendar .hour-list ul li span.__week {
  font-size: 0.9em;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .__revisit-hours .hours-calendar .hour-list ul li span.__week {
    width: 3em;
  }
}
.__revisit-hours .hours-calendar .hour-list ul li span.__note {
  font-size: 0.8em;
  margin-left: 0.4em;
}
.__revisit-hours .hours-calendar .hour-list ul li span.__labelstyle01 {
  color: #373834;
  background-color: transparent;
  border: solid 1px #373834;
  margin-top: 0.48em;
}
.__revisit-hours .note-txt ul li {
  color: #757572;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95em;
  line-height: 1.4em;
  display: flex;
  align-items: baseline;
  margin-top: 0.6em;
}
@media screen and (max-width: 767px) {
  .__revisit-hours .note-txt ul li {
    font-size: 0.9em;
  }
}
.__revisit-hours .note-txt ul li span.__note {
  flex-shrink: 0;
  margin-right: 1em;
}
.__revisit-hours.__revisit-reservation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__revisit-reservation {
    display: block;
  }
}
.__revisit-hours.__revisit-reservation .right-content {
  margin-left: 3em;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__revisit-reservation .right-content {
    margin-left: 0;
    margin-top: 2em;
  }
}
.__revisit-hours.__first-reservation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__first-reservation {
    display: block;
  }
}
.__revisit-hours.__first-reservation .right-content {
  width: calc(100% - 34em - 5rem);
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__first-reservation .right-content {
    width: 100%;
    margin-top: 2em;
  }
}
.__revisit-hours.__first-reservation .right-content .contact-content {
  margin-top: 3em;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__first-reservation .right-content .contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .__revisit-hours.__first-reservation .right-content .contact-content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .__revisit-hours.__first-reservation .right-content .contact-content .content-wrap.__tel, .__revisit-hours.__first-reservation .right-content .contact-content .__linkbtn01 {
    margin: 0 auto;
  }
}
.__revisit-hours.__first-reservation .right-content .contact-content .__linkbtn01 {
  margin-top: 1em;
}
@media screen and (max-width: 1199px) {
  .__revisit-hours.__first-reservation .right-content .contact-content .__linkbtn01 {
    margin-top: 0;
    margin-left: 3em;
  }
}
@media screen and (max-width: 767px) {
  .__revisit-hours.__first-reservation .right-content .contact-content .__linkbtn01 {
    margin-left: auto;
    margin-top: 1em;
  }
}

/* header
---------------------------------------------------- */
header {
  pointer-events: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0px 0px 16px rgba(160, 160, 160, 0.2);
}
header > * {
  pointer-events: auto;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.6em max(1.875rem, 20px);
}
@media screen and (max-width: 1399px) {
  header .header-inner {
    padding: 1em 20px;
  }
}
@media screen and (max-width: 767px) {
  header .header-inner {
    padding: 0.4em 16px;
  }
}
@media screen and (max-width: 1399px) {
  header .__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.36s ease;
  }
  header .__overlay.__open {
    opacity: 1;
    visibility: visible;
  }
}
header .header-logo {
  width: 340px;
}
@media screen and (max-width: 1599px) {
  header .header-logo {
    width: 306px;
  }
}
@media screen and (max-width: 1399px) {
  header .header-logo {
    width: 255px;
  }
}
@media screen and (max-width: 767px) {
  header .header-logo {
    width: 204px;
  }
}
header .header-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1399px) {
  header .nav-btn {
    position: relative;
    z-index: 99;
    width: 32px;
    height: 40px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1399px) and (max-width: 767px) {
  header .nav-btn {
    width: 24px;
  }
}
@media screen and (max-width: 1399px) {
  header .nav-btn span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: all 0.2s ease;
  }
  header .nav-btn span:nth-of-type(1) {
    margin-top: -7px;
  }
  header .nav-btn span:nth-of-type(3) {
    margin-top: 7px;
  }
  header .nav-btn.__open span:nth-of-type(1) {
    margin-top: 0;
    transform: translateY(-50%) rotate(30deg);
  }
  header .nav-btn.__open span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav-btn.__open span:nth-of-type(3) {
    margin-top: 0;
    transform: translateY(-50%) rotate(-30deg);
  }
}
@media screen and (max-width: 1399px) {
  header .header-menu {
    background-color: #f0f0eb;
    width: max(270px, 50vw);
    height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
  }
}
@media screen and (max-width: 1399px) {
  header .header-menu.__open {
    opacity: 1;
    transform: translateX(0);
  }
}
header .header-menu nav > ul {
  display: flex;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul {
    display: block;
  }
}
header .header-menu nav > ul > li {
  position: relative;
  z-index: 2;
  font-family: "Shippori Mincho", serif;
  font-size: max(0.95em, 1.125rem);
  margin: 0 1em;
  padding: 1.1em 0;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li {
    margin: 0;
    padding: 0;
  }
}
header .header-menu nav > ul > li > a {
  font-size: 1em;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li > a {
    padding: 1.2em 30px;
    border-bottom: solid 2px #f8f7f4;
  }
}
header .header-menu nav > ul > li:last-of-type {
  margin-right: 0;
}
header .header-menu nav > ul > li .accordion-menu {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  font-size: 1em;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li .accordion-menu {
    justify-content: space-between;
    padding: 1.2em 30px;
    border-bottom: solid 2px #f8f7f4;
  }
}
header .header-menu nav > ul > li .accordion-menu .accordion-icon {
  position: relative;
  color: #757572;
  font-size: 0.6em;
  margin-left: 0.6em;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li .accordion-menu .accordion-icon {
    font-size: 0.9em;
  }
}
header .header-menu nav > ul > li .accordion-menu .accordion-icon i {
  transition: all 0.36s ease;
}
header .header-menu nav > ul > li .accordion-menu .accordion-icon i.fa-plus {
  opacity: 1;
}
header .header-menu nav > ul > li .accordion-menu .accordion-icon i.fa-minus {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
header .header-menu nav > ul > li .accordion-menu.__open .accordion-icon i.fa-plus {
  opacity: 0;
}
header .header-menu nav > ul > li .accordion-menu.__open .accordion-icon i.fa-minus {
  opacity: 1;
}
header .header-menu nav > ul > li .accordion-inner {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  white-space: nowrap;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  padding: 1em;
  padding-right: 1.2em;
  transform: translateY(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.48s ease;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li .accordion-inner {
    position: relative;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background-color: #f8f7f4;
    padding: 1em 27px 1.2em;
    transition: none;
  }
}
header .header-menu nav > ul > li .accordion-inner.__open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
header .header-menu nav > ul > li .accordion-inner ul li {
  color: #757572;
  margin-bottom: 0.6em;
  font-size: 0.9em;
}
@media screen and (max-width: 1399px) {
  header .header-menu nav > ul > li .accordion-inner ul li {
    font-size: 1em;
  }
}
header .header-menu nav > ul > li .accordion-inner ul li:last-of-type {
  margin-bottom: 0;
}
header .header-menu nav > ul > li .accordion-inner ul li a {
  font-size: 1em;
}
header .header-menu nav > ul > li.__current {
  color: #99b244;
}
header .header-menu nav > ul > li.__current .accordion-inner ul li.__current a {
  pointer-events: none;
  color: #99b244;
}

#floating-btn {
  position: fixed;
  z-index: 9;
  bottom: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  #floating-btn {
    display: flex;
    width: 100%;
  }
}
#floating-btn .__linkbtn02 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #floating-btn .__linkbtn02 {
    width: 50%;
  }
}
#floating-btn .__linkbtn02 a {
  justify-content: space-between;
  font-size: max(0.95em, 1rem);
  font-weight: 500;
  padding: 1.6em 2.4em;
}
@media screen and (max-width: 767px) {
  #floating-btn .__linkbtn02 a {
    justify-content: center;
    padding: 0.8em;
  }
}

.sec-link .link-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2em;
}
.sec-link .link-list ul .link-list-item {
  width: calc(50% - 1em);
  margin-right: 2em;
  margin-top: 2em;
}
.sec-link .link-list ul .link-list-item:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .sec-link .link-list ul .link-list-item {
    width: 100%;
    margin-right: 0;
  }
}
.sec-link .link-list ul .link-list-item a {
  background-color: #fff;
}
.sec-link .link-list ul .link-list-item a .item-inner {
  display: flex;
  align-items: center;
  transition: all 0.48s ease;
}
@media screen and (max-width: 767px) {
  .sec-link .link-list ul .link-list-item a .item-inner {
    display: block;
  }
}
.sec-link .link-list ul .link-list-item a .item-inner .item-img {
  flex-shrink: 0;
  width: 16.875rem;
  height: 13em;
  overflow: clip;
}
@media screen and (max-width: 1199px) {
  .sec-link .link-list ul .link-list-item a .item-inner .item-img {
    width: 16em;
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 767px) {
  .sec-link .link-list ul .link-list-item a .item-inner .item-img {
    width: 100%;
    aspect-ratio: 5/2;
  }
}
.sec-link .link-list ul .link-list-item a .item-inner .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.48s ease;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content {
  width: 100%;
  min-height: 11em;
  padding: 1.6em 2em;
}
@media screen and (max-width: 1199px) {
  .sec-link .link-list ul .link-list-item a .item-inner .item-content {
    min-height: initial;
  }
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name {
  position: relative;
  border-bottom: solid 0.1em #f0f0eb;
  padding-bottom: 0.4em;
  margin-bottom: 0.6em;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 0.1em;
  background-color: #757572;
  transform: translateY(0.1em) scaleX(0);
  opacity: 0;
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0s 0.24s;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 {
  display: flex;
  align-items: center;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span {
  display: block;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span.__txt {
  margin-right: 1.2em;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span.__arrow {
  width: 0.24em;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span.__arrow img {
  width: 100%;
  height: auto;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span.__arrow.__newwin {
  width: 0.7em;
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-name h3 span.__arrow.__newwin img {
  filter: brightness(0);
}
.sec-link .link-list ul .link-list-item a .item-inner .item-content .item-txt p {
  color: #a7a7a7;
  font-size: 0.925em;
}
.sec-link .link-list ul .link-list-item a:hover .item-inner {
  opacity: 0.8;
}
.sec-link .link-list ul .link-list-item a:hover .item-inner .item-img img {
  transform: scale(1.05);
}
.sec-link .link-list ul .link-list-item a:hover .item-inner .item-content .item-name::after {
  transform: translateY(1px) scaleX(1);
  opacity: 1;
  transition: opacity 0s, transform 0.48s ease;
}
.sec-link .contact-content {
  border: solid 1px #ccccc6;
  padding: 4em 7.5rem;
}
@media screen and (max-width: 1199px) {
  .sec-link .contact-content {
    padding-top: 3.2em;
    padding-bottom: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-link .contact-content {
    padding: 2.7em 2em 2.4em;
  }
}
.sec-link .contact-content .flex-wrap {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
@media screen and (max-width: 1199px) {
  .sec-link .contact-content .flex-wrap {
    display: block;
    margin-top: 1.6em;
  }
}
.sec-link .contact-content .flex-wrap .content-wrap.__tel {
  margin-left: 3em;
}
@media screen and (max-width: 1199px) {
  .sec-link .contact-content .flex-wrap .content-wrap.__tel {
    margin-left: 0;
    margin-top: 1em;
  }
}

/* footer
---------------------------------------------------- */
@media screen and (max-width: 1199px) {
  footer .footer-inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
footer .footer-inner .flex-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .flex-wrap {
    display: block;
  }
}
footer .footer-inner .flex-wrap .__revisit-hours .hours-calendar {
  width: 32em;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .flex-wrap .__revisit-hours .hours-calendar {
    width: 100%;
  }
}
footer .footer-inner .flex-wrap .__revisit-hours .hours-calendar .content-ttl h3 {
  font-size: max(0.95em, 1rem);
}
footer .footer-inner .flex-wrap .__revisit-hours .note-txt {
  margin-top: 1em;
}
footer .footer-inner .flex-wrap .__revisit-hours .note-txt ul li {
  font-size: 0.85em;
}
footer .footer-inner .flex-wrap .footer-menu {
  width: calc(100% - 32em - 5rem);
  margin-top: -2em;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .flex-wrap .footer-menu {
    width: 100%;
    margin-top: 3em;
  }
}
footer .footer-inner .flex-wrap .footer-menu > ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-inner .flex-wrap .footer-menu > ul > li {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: max(0.95em, 1rem);
  width: 33.3333333333%;
  padding-left: 1em;
  margin-top: 2.4em;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .flex-wrap .footer-menu > ul > li {
    width: 100%;
    padding-left: 0;
    margin-top: 1.6em;
  }
}
footer .footer-inner .flex-wrap .footer-menu > ul > li a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  margin-bottom: 0.6em;
  transition: all 0.24s ease;
}
footer .footer-inner .flex-wrap .footer-menu > ul > li a::before {
  background-color: #373834;
}
footer .footer-inner .flex-wrap .footer-menu > ul > li a:hover {
  opacity: 0.6;
}
footer .footer-inner .flex-wrap .footer-menu > ul > li ul li {
  color: #757572;
  font-weight: 400;
  font-size: 0.95em;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .flex-wrap .footer-menu > ul > li ul li {
    font-size: 0.95em;
  }
}
footer .footer-inner #pagetop {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.6em;
  margin-left: auto;
}
footer .footer-inner #pagetop a {
  color: #fff;
  background-color: #aca99a;
  font-size: 1.125em;
  padding: 0 1em;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner #pagetop a {
    font-size: 1em;
  }
}
footer .footer-inner .footer-bottom {
  border-top: solid 1px #f0f0eb;
  margin-top: 2em;
}
footer .footer-inner .footer-bottom .flex-wrap {
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .footer-bottom .flex-wrap {
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  footer .footer-inner .footer-bottom .flex-wrap {
    display: block;
  }
}
footer .footer-inner .footer-bottom .flex-wrap .footer-logo h3 {
  font-size: 3rem;
  margin-bottom: -0.1em;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .footer-bottom .flex-wrap .footer-logo h3 {
    font-size: 2.25em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-bottom .flex-wrap .footer-logo h3 {
    font-size: 1.825em;
  }
}
footer .footer-inner .footer-bottom .flex-wrap .footer-info {
  margin-left: 6.25rem;
}
@media screen and (max-width: 991px) {
  footer .footer-inner .footer-bottom .flex-wrap .footer-info {
    margin-left: 0;
    margin-top: 2em;
  }
}
footer .footer-inner .footer-bottom .flex-wrap .footer-info p {
  color: #a7a7a7;
  font-size: 0.85em;
}
footer .footer-inner .footer-bottom .flex-wrap .footer-info p a {
  font-size: 1em;
  display: inline;
}
footer .footer-inner .copyright {
  margin-top: 1.6em;
}
@media screen and (max-width: 1199px) {
  footer .footer-inner .copyright {
    margin-top: 3em;
  }
}
footer .footer-inner .copyright p {
  color: #ccccc6;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .copyright p {
    font-size: 10px;
  }
}/*# sourceMappingURL=common.css.map */