@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  word-wrap: break-word;
}

button {
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  margin: 0;
}

h5, h6 {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cutin_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cutin_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes balloon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.6rem);
  }
}
@keyframes airball {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(10deg);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_yellow {
  color: #F6CD00;
}

.txt_orange {
  color: #FFA200;
}

.img_c {
  margin: 1rem auto;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto;
}

img.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.main > section ~ section, .flex2 > section ~ section {
  margin-top: 4rem;
}

.main > section section ~ section, .flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > section > section section ~ section, .flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  border: 2px solid #A18B5F;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption dl {
  display: flex;
  flex-wrap: wrap;
}
.tbl_time caption dl dt {
  width: 18%;
}
.tbl_time caption dl dd {
  width: 82%;
}
.tbl_time tr:nth-of-type(2n) {
  background: #FEFFE6;
}
.tbl_time tr:not(:last-of-type) th[scope=row] {
  border-bottom: 1px solid #A18B5F;
}
.tbl_time tr:not(:last-of-type) td {
  border-bottom: 1px solid #A18B5F;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background: #FFED4D;
  border-bottom: 1px solid #A18B5F;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col]:last-child {
  width: 13%;
}
.tbl_time tr th[scope=row] {
  font-weight: normal;
}
.tbl_time tr th[scope=row] span {
  display: block;
  font-size: 70%;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  line-height: 1;
  font-size: 80%;
  font-weight: bold;
  color: #F6CD00;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
    font-size: 100%;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 2rem 0;
    font-size: 100%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 8rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2rem;
  line-height: 1.4;
  color: #528207;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
  margin: 4.5rem 0 0;
}
.tit_01 span {
  display: block;
}

.tit_02 {
  font-size: 2rem;
  color: #57431C;
  letter-spacing: 0.15em;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-height: 12rem;
  background: url(../img/tit_02.png) no-repeat center top/auto 12rem;
}
.tit_02::after {
  content: attr(data-txt);
  font-size: 1rem;
  color: #A18B5F;
  font-weight: normal;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.5rem 8rem 0.5rem 1rem;
  background: #B8B7A2;
  font-weight: normal;
  color: #fff;
  position: relative;
}
.tit_03::after {
  content: "";
  width: 7rem;
  height: 4rem;
  background: url(../img/tit_03.png) no-repeat top right/100% auto;
  position: absolute;
  right: 1rem;
  top: -0.7rem;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 2rem;
  padding: 0.8rem 1rem 0.5rem 4rem;
  color: #FFA200;
  background: url(../img/tit_04.svg) no-repeat top left/3.5rem auto;
  border-bottom: 1px solid #FFA200;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.5rem 1rem;
  color: #90C243;
  font-weight: normal;
  border-bottom: 1px dashed #90C243;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 12rem;
    background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
    font-size: 3.6rem;
    margin: 0;
  }
  .tit_01 span {
    display: inline;
  }
  .tit_02 {
    font-size: 3rem;
    margin: 0 auto 4rem;
    min-height: 24rem;
    line-height: 1.4;
    letter-spacing: 0.24em;
    background: url(../img/tit_02.png) no-repeat center top/auto 24rem;
  }
  .tit_02::after {
    font-size: 1.4rem;
    letter-spacing: 0.22em;
  }
  body:is(.index) .tit_02 {
    padding: 2rem 0 0;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 1rem 12rem 1rem 2rem;
  }
  .tit_03::after {
    width: 11rem;
    height: 5.5rem;
    right: 1rem;
    top: -1.3rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding: 1.3rem 1rem 0.5rem 6rem;
    background: url(../img/tit_04.svg) no-repeat top left/5.1rem auto;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 3rem;
    padding: 0.5rem 2rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.2em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: #FFA200;
  font-size: 60%;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #535353;
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: #535353;
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: #535353;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2.lst_ul > li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .flex2.gap {
    gap: 4rem;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.4rem;
}
.tel::before {
  content: "Tel.";
}
.tel a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.box_yellow,
.box_orange {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_yellow,
  .box_orange {
    padding: 3rem;
  }
}

.box_yellow {
  background: #FEFFE6;
}

.box_orange {
  background: #FFF6E6;
}

.btn_yellow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 3rem;
  color: #535353;
  text-decoration: none !important;
  background: #FFED4D;
  color: #57431C;
  font-weight: bold;
  border-radius: 100vh;
  line-height: normal;
  transition: 0.3s;
}
.btn_yellow::before {
  font-family: "fontello";
  content: "\e807";
  line-height: 1.2;
}
@media screen and (min-width: 48em), print {
  .btn_yellow {
    padding: 0.5rem 3.8rem;
  }
  .btn_yellow:is(:hover, :focus-visible) {
    background: #FEDC03;
    opacity: 1;
  }
}

.btn_detail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 3rem;
  color: #535353;
  text-decoration: none !important;
  background: #FFED4D;
  color: #57431C;
  font-weight: bold;
  transition: 0.3s;
}
.btn_detail::before {
  font-family: "fontello";
  content: "\f006";
  background: #57431C;
  color: #FFED4D;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1rem 0 0 0.1rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    padding: 0.5rem 3.8rem;
  }
  .btn_detail::before {
    width: 1.8rem;
    height: 1.8rem;
    padding: 0 0 0 0.1rem;
  }
  .btn_detail:is(:hover, :focus-visible) {
    background: #FEDC03;
    opacity: 1;
  }
  .btn_detail:is(:hover, :focus-visible)::before {
    color: #FEDC03;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: #535353;
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\71";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\77";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid #535353;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: #535353;
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #535353;
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.bnr_recruit {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 1rem;
}
.bnr_recruit a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  border: solid 4px #eeb3f8;
  border-radius: 2rem;
  text-decoration: none !important;
  padding: 0.6em;
}
.bnr_recruit a span {
  font-size: 1.6rem;
  display: inline-block;
  text-align: center;
  color: #eeb3f8;
  font-weight: bold;
}
.bnr_recruit a .circle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #eeb3f8;
  aspect-ratio: 1;
  width: 5rem;
  padding: 0.4rem;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 48em), print {
  .bnr_recruit a .circle {
    width: 9rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 48em), print {
  .bnr_recruit a span {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 48em), print {
  .bnr_recruit a {
    padding: 1.6em;
  }
}

html {
  font-size: 3.125vw;
}

body {
  background: #fff;
  color: #535353;
  font-family: "Hiragino Sans", "Yu Gothic medium", "游ゴシック Medium", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.main {
  font-size: 1.4rem;
  line-height: 1.8;
}
.main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.6rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.png) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header > .wrap .logo {
    width: 40%;
    height: 11rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    margin: 0;
  }
  .header > .wrap .headR .tel {
    font-size: 4.5rem;
    align-items: flex-end;
  }
  .header > .wrap .headR .tel::before {
    font-size: 2rem;
    margin-bottom: 1.3rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e81b";
  font-size: 3rem;
  color: #CE9F40;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e81a";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(var(--vh, 1vh) * 100 - 8rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  box-shadow: 0 10px 10px rgba(204, 204, 204, 0.8);
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid #CE9F40;
  border-bottom: 1px solid #CE9F40;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid #CE9F40;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  position: relative;
  -webkit-text-size-adjust: none;
}
#nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
  content: attr(data-txt);
  display: block;
  color: #A18B5F;
  font-size: 1.2rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: #57431c;
  text-shadow: 0.1rem 0.1rem 0 #ffed4d, 0.1rem 0 0 #ffed4d, 0.1rem -0.1rem 0 #ffed4d, 0 -0.1rem 0 #ffed4d, -0.1rem -0.1rem 0 #ffed4d, -0.1rem 0 0 #ffed4d, -0.1rem 0.1rem 0 #ffed4d, 0 0.1rem 0 #ffed4d;
}
#nav .gnav_subnav .gnav > li .sub::before {
  font-family: "fontello";
  content: "\e80c";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #A18B5F;
}
#nav .gnav_subnav .gnav > li .sub.close::before {
  font-family: "fontello";
  content: "\e80b";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  padding: 0 0 1rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #57431C;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\e807";
  margin: 0 0.5rem 0 0;
  font-size: 125%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: #FFED4D;
  text-shadow: none;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #535353;
  background: rgba(206, 159, 64, 0.5);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e81a";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.hide {
    transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
    box-shadow: none;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li::before {
    content: "";
    height: 3rem;
    width: 0.1rem;
    background: #CE9F40;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #nav .gnav_subnav .gnav > li:last-of-type::after {
    content: "";
    height: 3rem;
    width: 0.1rem;
    background: #CE9F40;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    text-shadow: 0.1rem 0.1rem 0 #ffed4d, 0.1rem 0 0 #ffed4d, 0.1rem -0.1rem 0 #ffed4d, 0 -0.1rem 0 #ffed4d, -0.1rem -0.1rem 0 #ffed4d, -0.1rem 0 0 #ffed4d, -0.1rem 0.1rem 0 #ffed4d, 0 0.1rem 0 #ffed4d;
    opacity: 1;
    color: #57431c;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current)::before, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current)::before {
    text-shadow: none;
  }
  #nav .gnav_subnav .gnav > li .sub::before {
    transform: translateY(0);
    top: 0.8rem;
    right: 3rem;
    text-shadow: none;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 28.5rem;
    background: #FFFDDC;
    position: absolute;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    padding: 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    text-align: left;
    padding: 0.6rem 1.5rem;
    transition: 0.2s;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    background: #FFED4D;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview_gmap {
  height: 100vw;
  margin: 5rem 0 0;
  border-top: 8px solid #FAE646;
  position: relative;
}
.overview_gmap::before {
  content: "";
  width: 90%;
  height: 5rem;
  background: url(../img/overview_city.png) no-repeat center/100% auto;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
}
.overview_gmap:not(body.index > .overview_gmap) {
  display: none;
}

body > .overview {
  background: url(../img/overview_bg.jpg) no-repeat center top/auto 100%;
  padding: 4rem 1rem 7rem;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
}
body > .overview > .wrap {
  padding: 2rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  position: relative;
}
body > .overview > .wrap::after {
  content: "";
  width: 9rem;
  height: 5.5rem;
  background: url(../img/overview_children.png) no-repeat center/100% auto;
  position: absolute;
  bottom: -2rem;
  right: 1rem;
}
body > .overview > .wrap .clinic_name {
  margin: 0 0 2rem;
}
body > .overview > .wrap .clinic_name img {
  max-width: 80%;
  margin: auto;
}
body > .overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body > .overview > .wrap .overviewL .gaiyo dt {
  width: 25%;
  padding: 0 0 0.4rem;
  color: #528207;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}
body > .overview > .wrap .overviewL .gaiyo dt::before {
  font-family: "fontello";
  content: "\f006";
  font-size: 80%;
  margin: 0.1rem 0 0;
}
body > .overview > .wrap .overviewL .gaiyo dd {
  width: 73%;
  padding: 0 0 0.4rem;
}
body > .overview > .wrap .overviewL .gaiyo dd .tel::before {
  display: none;
}
body > .overview > .wrap .overviewL .gaiyo dd.add span {
  display: block;
}
body > .overview > .wrap .overviewR {
  margin: 3rem 0 0;
}
body > .overview > .wrap .overviewR .gnav {
  margin: 0 0 2rem;
  display: flex;
}
body > .overview > .wrap .overviewR .gnav li {
  flex: auto;
  text-align: center;
  font-size: 1.1rem;
  color: #528207;
  -webkit-text-size-adjust: none;
  border-left: 1px solid #528207;
}
body > .overview > .wrap .overviewR .gnav li:last-of-type, body > .overview > .wrap .overviewR .gnav li.greet_wrap {
  border-right: 1px solid #528207;
}
body > .overview > .wrap .overviewR .gnav li.groups {
  display: none;
}
body > .overview > .wrap .overviewR > .subnav li {
  font-size: 1.3rem;
  color: #528207;
}
body > .overview > .wrap .overviewR > .subnav li:not(:last-of-type) {
  margin: 0 0 0.5rem;
}
body > .overview > .wrap .overviewR > .subnav li::before {
  font-family: "fontello";
  content: "\f1ad";
  margin: 0 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .overview_gmap {
    height: 50rem;
    margin: 12rem 0 0;
    border-top: 16px solid #FAE646;
  }
  .overview_gmap::before {
    width: 81rem;
    height: 11.5rem;
    background: url(../img/overview_city.png) no-repeat center/100% auto;
    position: absolute;
    top: -12.3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  body > .overview {
    background: url(../img/overview_bg.jpg) no-repeat center/200rem auto;
    padding: 5rem 0 7rem;
    font-size: 1.6rem;
  }
  body > .overview > .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem 7rem 2rem 8rem;
  }
  body > .overview > .wrap::after {
    width: 18rem;
    height: 11rem;
    bottom: -3.5rem;
    right: 9rem;
  }
  body > .overview > .wrap .clinic_name {
    width: 100%;
  }
  body > .overview > .wrap .clinic_name img {
    max-width: 51.4rem;
  }
  body > .overview > .wrap .overviewL {
    width: 42%;
  }
  body > .overview > .wrap .overviewL .gaiyo {
    justify-content: flex-start;
  }
  body > .overview > .wrap .overviewL .gaiyo dt {
    width: 25%;
    padding: 0 0 0.7rem;
  }
  body > .overview > .wrap .overviewL .gaiyo dd {
    width: 75%;
    padding: 0 0 0.7rem;
  }
  body > .overview > .wrap .overviewR {
    width: 54%;
    margin: 0;
  }
  body > .overview > .wrap .overviewR .gnav {
    margin: 0 0 3rem;
  }
  body > .overview > .wrap .overviewR .gnav li {
    font-size: 1.4rem;
    padding: 0 2rem;
    flex: none;
  }
  body > .overview > .wrap .overviewR .gnav li a {
    transition: 0.2s;
  }
  body > .overview > .wrap .overviewR .gnav li a:hover {
    text-decoration: underline;
  }
  body > .overview > .wrap .overviewR .subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 0;
  }
  body > .overview > .wrap .overviewR .subnav li {
    font-size: 1.6rem;
    width: 49%;
    -webkit-text-size-adjust: none;
  }
  body > .overview > .wrap .overviewR .subnav li a {
    transition: 0.2s;
  }
  body > .overview > .wrap .overviewR .subnav li a:hover {
    text-decoration: underline;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .tel_ft {
  height: 100%;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
}
#tel_up ul li .tel_ft::before {
  content: "Tel.";
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  color: #57431C;
  background: #FFF454;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    visibility: hidden;
    width: 5rem;
    height: 5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    font-size: 3rem;
    border-radius: 50%;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    opacity: 1;
    background: #FEDC03;
  }
}
.footer {
  text-align: center;
  margin: -3rem 0 4rem;
  position: relative;
  z-index: 5;
}
.footer .copy {
  display: block;
  background: rgba(40, 84, 5, 0.5);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    margin: -3rem 0 0;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  margin: 4.5rem 0 0;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 24rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 24rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl > .wrap {
  position: absolute;
  top: 8.5rem;
  left: 0;
  right: 0;
}
.keyvsl > .wrap .catch {
  color: #fff;
  text-shadow: 0px 0px 5px #045898;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  opacity: 0;
  margin: 0;
  padding: 0 0 0 2rem;
}
.keyvsl > .wrap .catch.trigger {
  animation: fadein 1.5s forwards normal;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin: 0;
    overflow-x: clip;
  }
  .keyvsl #keyvsl {
    height: 73rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 73rem !important;
  }
  .keyvsl > .wrap {
    top: 24rem;
  }
  .keyvsl > .wrap::before {
    content: "";
    width: 13.5rem;
    height: 42rem;
    background: url(../img/index_kv_cloudL.svg) no-repeat center/100% auto;
    position: absolute;
    left: -19rem;
    top: -14rem;
    animation: fuwafuwa 3s normal infinite;
  }
  .keyvsl > .wrap::after {
    content: "";
    width: 20rem;
    height: 45.3rem;
    background: url(../img/index_kv_cloudR.svg) no-repeat center/100% auto;
    position: absolute;
    right: -20rem;
    top: -14.6rem;
    animation: fuwafuwa 3s 0.5s normal infinite;
  }
  .keyvsl > .wrap .catch {
    text-shadow: 0px 0px 10px #045898;
    font-size: 4rem;
    letter-spacing: 0.06em;
    padding: 0 0 0 4rem;
  }
}
.info {
  margin: 4rem 0;
  padding: 1rem 1rem 3rem;
  background: url(../img/index_info_bg.png) repeat left top/15rem auto;
  position: relative;
}
.info::before {
  content: "";
  width: 100%;
  height: 4rem;
  background: url(../img/index_info_grass.svg) repeat-x left/auto 100%;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
}
.info::after {
  content: "";
  width: 8rem;
  height: 6rem;
  background: url(../img/index_info_bus.png) no-repeat center/100% auto;
  position: absolute;
  bottom: -3rem;
  right: 1rem;
  animation: yurayura 3s infinite;
}
.info .tit_02 {
  background: url(../img/tit_02_info.png) no-repeat center top/auto 100%;
  min-height: 13rem;
}
.info dl {
  padding: 0 0 1rem;
}
.info dl dt {
  display: flex;
  align-items: flex-start;
  gap: 0 0.6rem;
  margin: 0 0 0.6rem;
  color: #528207;
  position: relative;
  cursor: pointer;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e80c";
}
.info dl dt.close::before {
  font-family: "fontello";
  content: "\e80b";
}
.info dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
}
.info dl dt:not(:first-of-type)::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  border-top: 1px dashed #c3c3c3;
  position: absolute;
  top: 0;
  left: 0;
}
.info dl dd {
  margin: 0 0 1.6rem;
  padding: 0 0 0 1.5rem;
}
.info dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 8.1rem 0;
    padding: 5rem calc((100% - 120rem) / 2) 8rem;
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .info::before {
    height: 8.1rem;
    top: -8.1rem;
  }
  .info::after {
    width: 16.6rem;
    height: 13rem;
    right: calc((100% - 108rem) / 2);
    bottom: -6rem;
  }
  .info .tit_02 {
    width: 23.8rem;
    background: url(../img/tit_02_info.png) no-repeat center top/auto 23rem;
    min-height: 23rem;
    padding: 0 !important;
    margin: 0;
  }
  .info dl {
    flex: 1;
    line-height: 1.6;
    padding: 0 0 1.5rem;
    min-height: 24rem;
  }
  .info dl::after {
    width: 96%;
  }
  .info dl dt {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    transition: 0.2s;
  }
  .info dl dt::before {
    margin-right: 1rem;
  }
  .info dl dt:not(:first-of-type) {
    margin: 1.6rem 0 0.5rem;
    padding: 1.6rem 0 0;
  }
  .info dl dt:not(:first-of-type)::after {
    width: 96%;
  }
  .info dl dt:hover {
    text-shadow: 0 0 2px #528207;
  }
  .info dl dd {
    margin: 0 0 1.6rem;
    padding: 0 0 0 2.5rem;
  }
}
.policy {
  background: url(../img/index_policy_bg.png) no-repeat center/auto 100%;
  padding: 3rem 1rem 8rem;
}
.policy .tit_02 {
  background: url(../img/tit_02_policy.svg) no-repeat center/auto 12rem;
  padding: 2.5rem 8rem 0 0;
}
.policy .txt_wrap {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 2rem 1rem 1rem;
  opacity: 0;
}
.policy .txt_wrap .tit {
  color: #90C243;
  text-align: center;
}
.policy .txt_wrap.trigger {
  animation: fadein 1.5s normal forwards;
}

@media screen and (min-width: 48em), print {
  .policy {
    background: url(../img/index_policy_bg.png) no-repeat center/200rem auto;
    min-height: 85rem;
    padding: 4rem calc((100% - 104.6rem) / 2) 0;
  }
  .policy .tit_02 {
    background: url(../img/tit_02_policy.svg) no-repeat center/auto 16.2rem;
    padding: 4rem 11rem 0 0 !important;
    min-height: 16.2rem;
  }
  .policy .txt_wrap {
    width: 69rem;
    padding: 2.3rem 2.3rem 3.2rem;
    margin: 25rem 0 0;
    border-radius: 2rem;
  }
  .policy .txt_wrap .tit {
    font-size: 2.4rem;
  }
  .policy .txt_wrap p {
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
  .policy .txt_wrap p.txt01 {
    margin-bottom: 2.5rem;
  }
}
.top_groups {
  padding: 0 1rem 6rem;
  background: url(../img/index_groups_bg.png) no-repeat center/auto 80%;
}
.top_groups .clinic_wrap.trigger section:nth-child(1) {
  animation: fade_up 1s forwards normal;
  animation-delay: 0.3s;
}
.top_groups .clinic_wrap.trigger section:nth-child(2) {
  animation: fade_up 1s forwards normal;
  animation-delay: 0.6s;
}
.top_groups .clinic_wrap.trigger section:nth-child(3) {
  animation: fade_up 1s forwards normal;
  animation-delay: 0.9s;
}
.top_groups .clinic_wrap.trigger section:nth-child(4) {
  animation: fade_up 1s forwards normal;
  animation-delay: 1.2s;
}
.top_groups .clinic_wrap.trigger section:nth-child(5) {
  animation: fade_up 1s forwards normal;
  animation-delay: 1.5s;
}
.top_groups .clinic_wrap.trigger section:nth-child(6) {
  animation: fade_up 1s forwards normal;
  animation-delay: 1.8s;
}
.top_groups .clinic_wrap .clinic_box {
  background: #FEFFE3;
  border-radius: 1rem;
  padding: 2rem;
  opacity: 0;
}
.top_groups .clinic_wrap .clinic_box .tit {
  text-align: center;
  margin: 0 0 2rem;
  padding: 0 0 2.5rem;
  background: url(../img/index_groups_tit.png) no-repeat center bottom/60% auto;
}
.top_groups .clinic_wrap .clinic_box img {
  width: 100%;
}
.top_groups .clinic_wrap .clinic_box .btn_yellow {
  display: flex;
  width: fit-content;
  margin: 3rem auto 0;
}

@media screen and (min-width: 48em), print {
  .top_groups {
    padding: 0 calc((100% - 114rem) / 2) 10rem;
    background: url(../img/index_groups_bg.png) no-repeat center bottom/200rem auto;
  }
  .top_groups .clinic_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem 3rem;
  }
  .top_groups .clinic_wrap .clinic_box {
    width: 36rem;
    padding: 3rem 2rem;
    margin: 0;
    border-radius: 2rem;
  }
  .top_groups .clinic_wrap .clinic_box .tit {
    margin: 0 0 3rem;
    font-size: 2rem;
  }
  .top_groups .clinic_wrap .clinic_box img {
    width: 30rem;
    margin: 0 auto 2rem;
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 2rem 1rem 6rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 120rem;
    margin: 4rem auto 8rem;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: "＞";
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.6rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
body.greeting .riji {
  text-align: right;
}
body.greeting .riji span {
  font-weight: bold;
  font-size: 120%;
}

body.overview main .add span {
  display: block;
}
body.overview main .tel::before {
  display: none;
}
body.overview main .gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  body.overview main .box_orange {
    width: 80%;
    margin: auto;
  }
  body.overview main .gmap {
    height: 89%;
  }
}
.clinic_detail .img_wrap img {
  width: 80%;
  margin: 0 auto 2rem;
}
.clinic_detail .tel::before {
  display: none;
}
.clinic_detail .gmap {
  height: 100vw;
}

.dr_wrap .dr img {
  width: 70%;
  margin: auto;
}
.dr_wrap .dr > section {
  width: 85%;
  margin: 1rem auto 0;
}
.dr_wrap .dr > section .dr_name {
  text-align: center;
  font-weight: bold;
  font-size: 125%;
}
.dr_wrap .keireki {
  margin: 3rem 0 0;
}

@media screen and (min-width: 48em), print {
  .clinic_detail .img_wrap {
    display: flex;
    gap: 3rem;
    justify-content: center;
  }
  .clinic_detail .img_wrap img {
    width: 40rem;
    margin: 0;
  }
  .clinic_detail .gmap {
    height: 89%;
  }
  .dr_wrap {
    display: flex;
    justify-content: space-between;
  }
  .dr_wrap .dr {
    width: 23%;
  }
  .dr_wrap .dr img {
    width: 100%;
  }
  .dr_wrap .dr > section {
    width: 100%;
  }
  .dr_wrap .dr > section .dr_name {
    font-size: 150%;
  }
  .dr_wrap .keireki {
    width: 70%;
    margin: 0;
  }
}
body.higako .add span {
  display: none;
}

body.hanako .tbl_time tr th[scope=col]:last-child {
  width: auto;
}
body.hanako .tbl_time tr th[scope=col]:nth-child(5) {
  width: 15%;
}
body.hanako .tbl_time tr td span {
  font-size: 10px;
  display: block;
  color: #FFA200;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  body.hanako .tbl_time tr th[scope=col]:nth-child(5) {
    width: auto;
  }
  body.hanako .tbl_time tr td span {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
  }
}
.staff_wrap .staff img {
  width: 50%;
  margin: auto;
}
.staff_wrap .staff > section {
  width: 85%;
  margin: 1rem auto 0;
}
.staff_wrap .staff > section .dr_name {
  text-align: center;
  font-weight: bold;
  font-size: 125%;
}
.staff_wrap .interview {
  margin: 3rem 0 0;
}

@media screen and (min-width: 48em), print {
  .staff_wrap {
    display: flex;
    justify-content: space-between;
  }
  .staff_wrap .staff {
    width: 23%;
  }
  .staff_wrap .staff img {
    width: 60%;
  }
  .staff_wrap .staff > section {
    width: 100%;
  }
  .staff_wrap .staff > section .dr_name {
    font-size: 150%;
  }
  .staff_wrap .interview {
    width: 70%;
    margin: 0;
  }
}
.list_tab {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 1rem;
}
.list_tab li {
  width: 33.333%;
}
.list_tab li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #FEFFE6;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  text-decoration: none !important;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.2;
}
.list_tab li.active a {
  background: #FFED4D;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;
  opacity: 0;
  background: #fff;
  padding: 0 0.5rem;
  /*areaにis-activeというクラスがついた時の形状*/
}
.area.is-active {
  display: block;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width: 48em), print {
  .list_tab li a {
    line-height: 2;
  }
}
.tbl_recruit {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  border: 2px solid #A18B5F;
}
.tbl_recruit caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_recruit caption dl {
  display: flex;
  flex-wrap: wrap;
}
.tbl_recruit caption dl dt {
  width: 18%;
}
.tbl_recruit caption dl dd {
  width: 82%;
}
.tbl_recruit:not(:last-of-type) th {
  border-bottom: 1px solid #A18B5F;
}
.tbl_recruit:not(:last-of-type) td {
  border-bottom: 1px solid #A18B5F;
}
.tbl_recruit th {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background: #FFED4D;
  border-bottom: 1px solid #A18B5F;
}
.tbl_recruit td {
  padding: 1.4rem 0.4rem;
  line-height: 1;
  font-size: 80%;
  border-bottom: 1px solid #A18B5F;
}
.tbl_recruit td:first-child {
  width: 30%;
  text-align: center;
  font-weight: bold;
  background: #FEFFE6;
  border-right: 1px solid #A18B5F;
}

@media screen and (min-width: 48em), print {
  .tbl_recruit {
    table-layout: fixed;
    font-size: 2rem;
  }
  .tbl_recruit tr th {
    padding: 1rem;
    font-size: 100%;
  }
  .tbl_recruit tr td {
    padding: 1rem;
    font-size: 100%;
  }
  .tbl_recruit tr td:first-child {
    width: 15%;
  }
}

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