@charset "UTF-8";
/*
acab/reset.css
https://github.com/mayank99/reset.css/tree/main
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 2;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

/* コピペ用コード */ /*最後に削除する*/
:where(:focus-visible, :target) {
  scroll-margin-block: 0;
}

:where(html) {
  scroll-behavior: smooth;
}

:where(body) {
  font-family: "Zen Maru Gothic", serif;
  color: #5B4B3D;
}

html {
  background-color: white;
}

.btn {
  font-weight: 700;
  display: block;
  text-align: center;
  border-radius: 9999px;
  background-color: white;
  text-decoration: none;
  box-shadow: 0 0 10px #E5E5E5;
  padding: 1em;
  position: relative;
  max-width: 280px;
  width: 100%;
}
.btn svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.kome {
  text-indent: -1em;
  padding-left: 1em;
}

header {
  width: 100%;
  position: relative;
}
header::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  position: relative;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: url(../img/mocomoco-h.svg) repeat-x;
  margin-bottom: -12px;
}
header .header-inner {
  background-color: white;
}
@media print, screen and (width >= 768px) {
  header .header-inner {
    padding: 20px 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    row-gap: 20px;
  }
}
@media print, screen and (width >= 1200px) {
  header .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.header-title {
  display: flex;
  align-items: center;
  gap: 18px 14px;
  padding: 10px 20px;
  padding-right: 58px;
}
.header-title div {
  display: flex;
  flex-direction: column-reverse;
}
.header-title .title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: calc(1em + 0.5rem);
}
.header-title .title a {
  text-decoration: none;
}
.header-title .title a:hover, .header-title .title a:focus {
  color: #8CB500;
}
.header-title .sub {
  font-size: 0.625rem;
}
@media print, screen and (width >= 768px) {
  .header-title {
    padding: 0;
  }
  .header-title .title {
    font-size: 1.875rem;
  }
  .header-title .sub {
    font-size: 0.875rem;
  }
}

.nav-button {
  z-index: 4;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  position: fixed;
  top: 8px;
  right: 8px;
  background-color: white;
  box-shadow: 0 0 10px #E5E5E5;
}
.nav-button span {
  top: 25px;
}
.nav-button span, .nav-button span::before, .nav-button span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 9999px;
  background-color: #8CB500;
  position: absolute;
  left: 50%;
  margin-left: -11px;
}
.nav-button span::before, .nav-button span::after {
  content: "";
  transition: 0.5s ease;
}
.nav-button span::before {
  top: -9px;
}
.nav-button span::after {
  top: 9px;
}
@media print, screen and (width >= 768px) {
  .nav-button {
    display: none;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(124, 124, 124, 0.233);
}

.header-nav {
  visibility: hidden;
  transition: 0.3s ease;
  width: 100%;
  height: 0;
  max-height: calc(100vh - 66px);
  overflow-y: auto;
}
.header-nav .nav-list {
  padding: 30px 65px 80px;
}
.header-nav .nav-list a {
  text-decoration: none;
  display: block;
  padding: 0.5em 1em;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: dashed #5B4B3D 1px;
}
.header-nav .nav-list a svg, .header-nav .nav-list a path {
  width: 30px;
  height: 30px;
}
.header-nav .nav-list a:hover, .header-nav .nav-list a:focus, .header-nav .nav-list .current {
  color: #8CB500;
  color: #8CB500;
}
.header-nav .nav-list a:hover::before, .header-nav .nav-list a:focus::before, .header-nav .nav-list .current::before {
  background-color: #8CB500;
  border-color: #8CB500;
}
.header-nav .nav-list a:hover svg path, .header-nav .nav-list a:focus svg path, .header-nav .nav-list .current svg path {
  fill: #B4D936;
}
.header-nav .nav-list > li > a {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
@media print, screen and (width >= 768px) {
  .header-nav {
    overflow-y: visible;
    visibility: visible;
    position: relative;
    top: 0;
    max-height: none;
    height: auto;
    width: auto;
  }
  .header-nav .nav-list {
    padding: 0;
    display: flex;
    column-gap: 24px;
  }
  .header-nav .nav-list a {
    border-bottom: none;
    font-size: 1.125rem;
    padding: 0;
  }
  .header-nav .nav-list a svg {
    width: 40px !important;
    height: 40px !important;
  }
  .header-nav .nav-list > li > a {
    flex-direction: column;
  }
}

body.nav-active {
  overflow: hidden;
}
body.nav-active header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
}
body.nav-active .nav-button span {
  height: 0;
}
body.nav-active .nav-button span::before, body.nav-active .nav-button span::after {
  width: 24px;
  top: 50%;
  margin-left: -12px;
}
body.nav-active .nav-button span::before {
  transform: rotate(45deg) translateY(-50%);
}
body.nav-active .nav-button span::after {
  transform: rotate(-45deg) translateY(-50%);
}
body.nav-active .header-nav {
  opacity: 1;
  visibility: visible;
  height: auto;
}
body.nav-active .overlay {
  display: block;
}
@media print, screen and (width >= 768px) {
  body.nav-active {
    overflow: visible;
  }
  body.nav-active header {
    position: relative;
  }
  body.nav-active .overlay {
    display: none;
  }
}

.fixed-nav {
  position: fixed;
  bottom: 0;
  z-index: 10;
  display: flex;
  width: 100%;
}
.fixed-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  flex: 1;
  width: 100%;
  color: white;
  border-top: solid 2px white;
  text-decoration: none;
  padding: 10px;
}
.fixed-nav a:first-child {
  border-radius: 0 20px 0 0;
  border-right: solid 2px white;
  background-color: #F0A59F;
  margin-right: -1px;
}
.fixed-nav a:last-child {
  border-radius: 20px 0 0 0;
  border-left: solid 2px white;
  background-color: #8CB500;
  margin-left: -1px;
}
@media print, screen and (width >= 768px) {
  .fixed-nav {
    width: auto;
    right: 0;
    bottom: 50vh;
    margin-bottom: -80px;
    flex-direction: column;
  }
  .fixed-nav a {
    writing-mode: vertical-rl;
    flex: auto;
    font-size: 1.125rem;
    padding: 10px 10px 20px;
  }
  .fixed-nav a:first-child,
  .fixed-nav a:last-child {
    border-radius: 20px 0 0 20px;
    border: solid 2px white;
    border-right: 0;
  }
  .fixed-nav a:last-child {
    margin-left: 0;
    margin-top: -2px;
  }
}

footer {
  padding: 20px 30px 80px;
  background: url(../img/bg.jpg?2);
  position: relative;
}
footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background: url(../img/mocomoco-f.png) repeat-x;
  position: absolute;
  top: -23px;
  left: 0;
}
footer .footer-clinic {
  display: block;
  margin: 0 auto;
}
footer .footer-title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 20px;
}
footer .footer-title .title {
  font-size: 1.375rem;
  font-weight: 700;
}
footer .footer-address {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
footer .footer-address img {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-right: 5px;
}
footer .footer-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 10px;
  margin-bottom: 20px;
}
footer .footer-buttons .footer-btn {
  text-align: center;
  min-width: 220px;
  display: inline-block;
  border-radius: 9999px;
  padding: 0.5em 2em;
  text-decoration: none;
  background-color: #8CB500;
  color: white;
}
footer .footer-buttons .footer-btn svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
footer .footer-buttons .footer-btn--tel {
  color: #5B4B3D;
  background-color: #D3C69D;
}
footer .footer-buttons .footer-btn--reserve {
  background-color: #F0A59F;
}
footer .footer-nav {
  margin-bottom: 20px;
}
footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
footer .footer-nav a {
  background: url(../img/tri.svg) no-repeat left center;
  padding-left: 20px;
  font-weight: 700;
  text-decoration: none;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  text-decoration: underline;
}
footer .medical-hours {
  width: 100%;
  border-collapse: separate;
  background-color: white;
  border-radius: 20px;
  padding: 10px 10px;
  margin-bottom: 20px;
}
footer .medical-hours th, footer .medical-hours td {
  white-space: nowrap;
  position: relative;
  text-align: center;
}
footer .medical-hours thead th {
  padding: 0.2em 0;
}
footer .medical-hours tbody th {
  padding-right: 0.5em;
}
footer .medical-hours td {
  padding: 0.2em 0.5em;
}
footer .medical-hours tbody th, footer .medical-hours tbody td {
  border-top: solid 1px #5B4B3D;
}
footer .medical-hours thead th:last-child {
  width: 3em;
  letter-spacing: -0.2em;
}
footer .medical-hours span {
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
footer .medical-hours span::before {
  content: "";
  display: block;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
}
footer .medical-hours .maru::before {
  background-color: #8CB500;
  width: 18px;
  height: 18px;
  margin-top: -9px;
}
footer .medical-hours .batsu::before {
  background-color: #5B4B3D;
  border-radius: 2px;
  width: 16px;
  height: 2px;
  margin-top: -1px;
}
footer .copyright {
  display: block;
  font-size: 0.75em;
  text-align: center;
  margin-top: 30px;
}
@media print, screen and (width >= 768px) {
  footer .footer-clinic {
    width: 186px;
  }
  footer .footer-title .title {
    font-size: 2rem;
  }
  footer .footer-column {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 70px;
  }
  footer .footer-column .column1 {
    width: 460px;
  }
  footer .footer-column .footer-column2 {
    width: 460px;
  }
  footer .footer-column .footer-buttons {
    flex-direction: row;
  }
  footer .medical-hours {
    padding: 10px 20px;
    font-size: 1.125rem;
  }
}
@media print, screen and (width >= 1200px) {
  footer .medical-hours {
    padding: 20px 40px;
  }
}

.section {
  padding: 40px 30px;
}
@media print, screen and (width >= 768px) {
  .section {
    padding: 80px 6%;
  }
}

.section-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 12px;
  font-weight: 700;
}
@media print, screen and (width >= 768px) {
  .section-title {
    font-size: 2.125rem;
  }
}

.section-title + p:lang(en) {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #8CB500;
}
@media print, screen and (width >= 768px) {
  .section-title + p:lang(en) {
    font-size: 0.875rem;
  }
}

section.keyvisual {
  position: relative;
}
section.keyvisual::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: -10px;
  background: url(../img/deer.png) no-repeat right bottom/contain;
  z-index: 1;
}
section.keyvisual .keyvisual1 {
  display: block;
  aspect-ratio: 6/4;
  width: 100%;
  height: 100%;
}
section.keyvisual .keyvisual2 {
  display: none;
  margin: 0 auto;
  max-width: 1366px;
  width: 100%;
  height: auto;
}
section.keyvisual .message {
  display: block;
  position: absolute;
  top: 22%;
  left: 2%;
  height: 56%;
  max-height: 325px;
  width: auto;
}
@media print, screen and (width >= 768px) {
  section.keyvisual::after {
    width: 263px;
    height: 132px;
    bottom: -20px;
  }
  section.keyvisual .keyvisual1 {
    display: none;
  }
  section.keyvisual .keyvisual2 {
    display: block;
  }
  section.keyvisual .message {
    top: 50%;
    left: 5%;
    margin-top: -162px;
    height: 325px;
  }
}

.wavy {
  position: relative;
}

.wavy1 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.wavy2 {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 0;
  width: 100%;
}

.section--news .news-header {
  display: flex;
  justify-content: center;
}
.section--news .news-header-flame {
  border: solid 2px #B4D936;
  border-radius: 40px;
  padding: 30px 30px;
  position: relative;
  margin-right: 47px;
  margin-left: 47px;
  margin-bottom: 20px;
  max-width: 220px;
  width: 100%;
}
.section--news .squirrel {
  position: absolute;
  right: -47px;
  bottom: 0;
  width: 105px;
}
.section--news .clover {
  position: absolute;
  left: -30px;
  bottom: -20px;
  width: 115px;
}
@media print, screen and (width >= 768px) {
  .section--news {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 6%;
  }
  .section--news .news-header-flame {
    padding: 30px 60px;
    margin-right: 70px;
    margin-left: 0;
    margin-bottom: 0;
    max-width: none;
  }
  .section--news .squirrel {
    width: auto;
    right: -60px;
  }
  .section--news .clover {
    width: auto;
    left: -36px;
    bottom: -25px;
  }
  .section--news .news-list {
    flex: 1;
  }
}

.news-list li {
  padding-bottom: 20px;
  border-bottom: dashed 1px #D3C69D;
}
.news-list li:not(:last-child) {
  margin-bottom: 20px;
}
.news-list time {
  display: block;
  color: #8CB500;
  margin-bottom: 1em;
}
.news-list h3 {
  margin-bottom: 0.5em;
}
@media print, screen and (width >= 768px) {
  .news-list li {
    display: flex;
    column-gap: 30px;
  }
  .news-list li > *:last-child {
    flex: 1;
  }
}

.section--process {
  position: relative;
  z-index: 0;
  padding-top: 70px;
}
.section--process p:lang(en) {
  margin-bottom: 30px;
}
.section--process::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: linear-gradient(#F7FBEA 80%, white);
}
@media print, screen and (width >= 768px) {
  .section--process {
    padding-top: 100px;
  }
  .section--process p:lang(en) {
    margin-bottom: 50px;
  }
}

.process-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.process-list .images {
  position: relative;
  z-index: 0;
  max-width: 280px;
  margin: 0 auto;
}
.process-list .images img:first-child {
  display: block;
}
.process-list .btn {
  margin: -25px auto 0;
  padding: 1.5em 1em;
}
.process-list .process-image {
  display: block;
  width: 100%;
  height: auto;
}
.process-list .process1_1 {
  position: absolute;
  z-index: -1;
  bottom: 40px;
  left: -40px;
  width: 122px;
}
.process-list .process1_2 {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: -8px;
  width: 42px;
}
.process-list .process2_1 {
  position: absolute;
  z-index: -1;
  top: -5px;
  right: -35px;
  width: 110px;
}
.process-list .process2_2 {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: -20px;
  width: 54px;
}
.process-list .process3_1 {
  position: absolute;
  z-index: -1;
  bottom: 40px;
  left: -40px;
  width: 176px;
}
.process-list .process3_2 {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: -2px;
  width: 48px;
}
.process-list li:first-child a svg path {
  fill: #FCF58C;
}
.process-list li:nth-child(2) a svg path {
  fill: #FFD0CC;
}
.process-list li:nth-child(3) a svg path {
  fill: #AAD8F2;
}
@media print, screen and (width >= 768px) {
  .process-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 60px;
    justify-content: center;
  }
  .process-list .images {
    max-width: 320px;
  }
  .process-list .process1_1 {
    bottom: 30px;
    left: -45px;
    width: 143px;
  }
  .process-list .process1_2 {
    top: 20px;
    right: 0;
    width: 49px;
  }
  .process-list .process2_1 {
    top: -12px;
    right: -45px;
    width: 124px;
  }
  .process-list .process2_2 {
    bottom: 45px;
    left: -30px;
    width: 61px;
  }
  .process-list .process3_1 {
    bottom: 45px;
    left: -30px;
    width: 183px;
  }
  .process-list .process3_2 {
    top: 0;
    right: 0;
    width: 55px;
  }
}

.slider img {
  border-radius: 20px;
}
.slider .slick-slide {
  margin-right: 20px;
}
@media print, screen and (width >= 768px) {
  .slider .slick-slide {
    margin-right: 35px;
  }
}

.section--greeting {
  background: url(../img/bg2.png);
}
.section--greeting p:not(:last-child) {
  margin-bottom: 1em;
}
.section--greeting p:lang(en) {
  margin-bottom: 30px;
}
@media print, screen and (width >= 768px) {
  .section--greeting p:lang(en) {
    margin-bottom: 50px;
  }
}

.greeting-inner {
  background-color: white;
  border-radius: 40px;
  border: solid #B4D936 2px;
  padding: 40px 30px;
}
@media print, screen and (width >= 768px) {
  .greeting-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 60px;
  }
}

.form-bread-crumbs {
  display: flex;
  column-gap: 22px;
}
.form-bread-crumbs li {
  background-color: #B4D936;
  flex: 1;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.form-bread-crumbs li:not(:last-child)::after {
  content: "";
  display: block;
  background-color: #B4D936;
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.form-bread-crumbs li.current {
  background-color: #8CB500;
  color: white;
}
.form-bread-crumbs li.current:not(:last-child)::after {
  background-color: #8CB500;
}
@media print, screen and (width >= 768px) {
  .form-bread-crumbs li {
    padding: 1em 0.5em;
  }
}

.submit-button {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
.submit-button::before, .submit-button::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  right: 20px;
}
.submit-button::before {
  transform-origin: right calc(50% + 1px);
  transform: rotate(30deg);
}
.submit-button::after {
  transform-origin: right calc(50% - 1px);
  transform: rotate(-30deg);
}
.submit-button input {
  cursor: pointer;
  display: inline-block;
  background-color: #8CB500;
  color: white;
  border: solid 1px #8CB500;
  text-decoration: none;
  padding: 0.5em 2em;
  padding-right: 3.5em;
  width: 100%;
  border-radius: 9999px;
}
.submit-button:hover input, .submit-button:focus input {
  background-color: white;
  color: #8CB500;
}
.submit-button:hover::before, .submit-button:hover::after, .submit-button:focus::before, .submit-button:focus::after {
  background-color: #8CB500;
}

.return-button {
  position: relative;
  width: 220px;
  margin: 1em auto 0;
}
.return-button::before, .return-button::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 20px;
}
.return-button::before {
  transform-origin: left calc(50% + 1px);
  transform: rotate(30deg);
}
.return-button::after {
  transform-origin: left calc(50% - 1px);
  transform: rotate(-30deg);
}
.return-button input {
  cursor: pointer;
  display: inline-block;
  background-color: #D3C69D;
  border: solid 1px #D3C69D;
  text-decoration: none;
  padding: 0.5em 2em;
  padding-left: 3.5em;
  width: 100%;
  border-radius: 9999px;
}
.return-button:hover input, .return-button:focus input {
  background-color: white;
}
.return-button:hover::before, .return-button:hover::after, .return-button:focus::before, .return-button:focus::after {
  background-color: #D3C69D;
}

.red_txt {
  color: #9A0056;
}
.red_txt ul li {
  position: relative;
  padding-left: 1em;
}
.red_txt ul li::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background-color: #9A0056;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75em;
}

.red {
  color: #9A0056;
}

.form-table {
  display: block;
  margin: 0 auto 30px;
}
.form-table tbody, .form-table th, .form-table td {
  display: block;
}
.form-table tr {
  display: flex;
  flex-direction: column;
}
.form-table th {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.5em;
  margin-top: 1em;
}
.form-table input[type=text], .form-table select, .form-table input[type=email], .form-table input[type=tel], .form-table textarea {
  width: 100%;
  padding: 0.5em;
  border-radius: 12px;
  border: solid #707070 1px;
  line-height: normal;
}
.form-table textarea {
  height: 7em;
}
@media print, screen and (width >= 768px) {
  .form-table {
    display: table;
    width: 100%;
  }
  .form-table tbody {
    display: table-row-group;
  }
  .form-table tr {
    display: table-row;
  }
  .form-table th, .form-table td {
    display: table-cell;
    border-bottom: dashed 1px #D3C69D;
    padding: 1em 0;
  }
  .form-table th {
    width: 16em;
  }
}

.text-thanks {
  margin-bottom: 2em;
}

.link-button {
  text-align: center;
}
.link-button a, .link-button button {
  display: inline-block;
  background-color: #8CB500;
  color: white;
  border: solid 1px #8CB500;
  text-decoration: none;
  padding: 0.5em 2em;
  padding-right: 3.5em;
  min-width: 220px;
  border-radius: 9999px;
  position: relative;
}
.link-button a::before, .link-button a::after, .link-button button::before, .link-button button::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  right: 20px;
}
.link-button a::before, .link-button button::before {
  transform-origin: right calc(50% + 1px);
  transform: rotate(30deg);
}
.link-button a::after, .link-button button::after {
  transform-origin: right calc(50% - 1px);
  transform: rotate(-30deg);
}
.link-button a:hover, .link-button a:focus, .link-button button:hover, .link-button button:focus {
  background-color: white;
  color: #8CB500;
}
.link-button a:hover::before, .link-button a:hover::after, .link-button a:focus::before, .link-button a:focus::after, .link-button button:hover::before, .link-button button:hover::after, .link-button button:focus::before, .link-button button:focus::after {
  background-color: #8CB500;
}

.taR {
  text-align: right;
}

.taC {
  text-align: center;
}

.column2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  gap: 20px 40px;
}
.column2 img {
  border-radius: 20px;
}
.column2 table {
  width: 100%;
}
.column2 > *:nth-child(2) {
  margin-top: 0;
}
@media print, screen and (width >= 768px) {
  .column2 {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-header {
  padding: 54px 30px 30px;
  background: url(../img/bg.jpg?2);
  text-align: center;
}
.page-header .title {
  font-size: 2.125rem;
}
@media print, screen and (width >= 768px) {
  .page-header {
    padding: 84px 30px 60px;
  }
  .page-header .title {
    font-size: 2.625rem;
  }
}

.page-content {
  padding: 40px 30px 64px;
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6, .page-content p, .page-content ul, .page-content ol, .page-content .table-wrap, .page-content table, .page-content img {
  margin-top: 1em;
}
.page-content h2:first-child, .page-content h3:first-child, .page-content h4:first-child, .page-content h5:first-child, .page-content h6:first-child, .page-content p:first-child, .page-content ul:first-child, .page-content ol:first-child, .page-content .table-wrap:first-child, .page-content table:first-child, .page-content img:first-child {
  margin-top: 0;
}
.page-content h2 {
  font-size: 2.25rem;
  background: url(../img/quatrefoil.png) no-repeat left 0/auto 1.2em;
  padding-left: 1.2em;
}
.page-content h3 {
  font-size: 1.75rem;
  border: solid #B4D936 2px;
  border-radius: 20px;
  padding: 0.4em 1em;
}
.page-content h4 {
  font-size: 1.5rem;
}
.page-content h5 {
  font-size: 1.25rem;
}
.page-content h6 {
  font-size: 1rem;
}
.page-content ul li {
  position: relative;
  padding-left: 2em;
}
.page-content ul li:not(:first-child) {
  margin-top: 0.2em;
}
.page-content ul li::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0.7em;
  background-color: #8CB500;
}
.page-content ol:not(.form-bread-crumbs) {
  counter-reset: number;
}
.page-content ol:not(.form-bread-crumbs) li {
  position: relative;
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.page-content ol:not(.form-bread-crumbs) li:not(:first-child) {
  margin-top: 0.4em;
}
.page-content ol:not(.form-bread-crumbs) li::before {
  counter-increment: number;
  content: counter(number);
  background: #B4D936;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  border-radius: 50%;
  color: #5B4B3D;
  margin-right: 0.5em;
  text-indent: 0;
}
.page-content table:not(.form-table) {
  border-collapse: separate;
  margin-bottom: 20px;
  border-radius: 20px;
  border-top: solid 1px #B4D936;
  border-right: solid 1px #B4D936;
}
.page-content table:not(.form-table) th, .page-content table:not(.form-table) td {
  padding: 0.5em 1em;
  border-bottom: solid 1px #B4D936;
  border-left: solid 1px #B4D936;
}
.page-content table:not(.form-table) thead th {
  background-color: #B4D936;
}
.page-content table:not(.form-table) tbody th {
  background-color: #B4D936;
}
.page-content table:not(.form-table) thead th:first-child,
.page-content table:not(.form-table) tbody:not(thead + *) tr:first-child th:first-child,
.page-content table:not(.form-table) tbody:not(thead + *) tr:first-child td:first-child {
  border-radius: 20px 0 0 0;
}
.page-content table:not(.form-table) thead th:last-child {
  border-radius: 0 20px 0 0;
}
.page-content table:not(.form-table) tbody tr:last-child th:first-child,
.page-content table:not(.form-table) tbody tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}
.page-content table:not(.form-table) tbody tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}
.page-content table:not(.form-table) thead th:not(:first-child) {
  border-left-color: white;
}
.page-content table:not(.form-table) thead th:first-child,
.page-content table:not(.form-table) tbody th:not(tr:last-child *) {
  border-bottom-color: white;
}
.page-content .table-wrap {
  overflow-x: scroll;
  margin-bottom: 20px;
}
.page-content .table-wrap table {
  margin-bottom: 0;
  width: 100%;
  white-space: nowrap;
}
@media print, screen and (width >= 768px) {
  .page-content {
    padding: 60px 6% 84px;
  }
  .page-content .table-wrap {
    overflow-x: auto;
  }
  .page-content .table-wrap table {
    width: auto;
    white-space: normal;
  }
}

.googlemap {
  width: 100%;
  height: 300px;
  margin-bottom: 1em;
}
@media print, screen and (width >= 768px) {
  .googlemap {
    height: 450px;
  }
}

.facility-list {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}
.facility-list div {
  width: 48%;
}
.facility-list img {
  border-radius: 20px;
}
@media print, screen and (width >= 768px) {
  .facility-list {
    gap: 30px 2%;
  }
  .facility-list div {
    width: 32%;
  }
}

@page {
  margin: 10mm;
  size: 210mm 297mm;
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    width: 1200px;
    zoom: 0.8;
  }
  .fixed-nav {
    position: absolute;
  }
}