@charset "UTF-8";
:root {
  --main-rgb:59,198,89;
  --close-rgb:200,200,200;
  --gray-rgb:150,150,150;
  --event-rgb:255,234,44;
  --red-rgb:245,40,40;
  --vac-rgb:59,198,89;
  --few-rgb:245,225,44;
  --ful-rgb:255,70,70;
  --pri-rgb:170,170,170;
}

/*Reset
---------------------------------------------------------------------*/
/*html, body, div, span, object, iframe,*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

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

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --header-height:150px;
  --header-height-fixed:100px;
  --header-height-sp:90px;
  --radius:100% 55%;
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.inner {
  width: 96%;
  margin: 40px auto;
  padding: 2% 5%;
  border-radius: 10px;
  /*@media (min-width: 1600px) {
  	max-width: 1400px;
  }*/
}
@media (min-width: 768px) and (orientation: portrait) {
  .inner {
    max-width: 720px;
  }
}
@media (min-width: 768px) {
  .inner {
    max-width: 1280px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(51, 51, 51);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-family: "Arial", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, sans-serif;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  position: relative;
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgb(255, 255, 255);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

/*header
---------------------------------------------------------------------*/
#header {
  width: 100vw;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
  z-index: 100;
  position: fixed;
  top: 0;
  background-color: rgb(255, 255, 255);
  transition: all 0.5s;
  height: var(--header-height-sp);
}
@media (min-width: 768px) {
  #header {
    height: var(--header-height);
  }
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: 0px 2% 0;
}
@media (min-width: 768px) {
  #header .header_inner {
    padding: 0px 5% 0;
  }
}
#header #headerlogo {
  transition: all 0.5s;
  margin: 0;
  z-index: 100;
  width: 200px;
}
@media (min-width: 768px) {
  #header #headerlogo {
    width: 320px;
  }
}
#header .logo_sakakumo {
  width: 200px;
}
@media (min-width: 768px) {
  #header .logo_sakakumo {
    width: 240px;
  }
}
#header.headerfixed {
  height: var(--header-height-sp-fixed);
}
@media (min-width: 768px) {
  #header.headerfixed {
    height: var(--header-height-fixed);
  }
}
@media (min-width: 768px) {
  #header.headerfixed #headerlogo {
    width: 240px;
  }
}
#header.headerfixed #pc_nav .logo_sakakumo {
  display: none;
}

/*PC*/
#pc_nav {
  display: none;
}
@media screen and (min-width: 1281px) {
  #pc_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 2;
    gap: 10px;
  }
  #pc_nav .mainmenu {
    display: flex;
    position: relative;
    text-align: center;
    justify-content: end;
    gap: 2em;
  }
  #pc_nav .mainmenu > li {
    margin: 0;
    font-size: clamp(0.8rem, 0.6378435518rem + 0.422832981vw, 0.9rem);
    font-weight: normal;
    position: relative;
  }
  #pc_nav .mainmenu > li a {
    padding: 0px;
    position: relative;
    color: rgb(51, 51, 51);
  }
}

#body_about .mainmenu li.navi_about a,
#body_facility .mainmenu li.navi_facility a,
#body_guide .mainmenu li.navi_guide a,
#body_info .mainmenu li.navi_info a,
#body_event .mainmenu li.navi_event a,
#body_contact .mainmenu li.navi_contact a,
#body_reservation .mainmenu li.navi_reservation a,
#pc_nav .mainmenu li a:hover {
  border-bottom: 3px solid rgb(59, 198, 89);
  border-radius: 5px;
  padding-bottom: 3px;
}

#menu_btn {
  position: relative;
  cursor: pointer;
  padding: 0 0px;
  width: 50px;
  height: 50px;
  z-index: 25;
  overflow: hidden;
  text-align: center;
  color: rgb(59, 198, 89);
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: solid 1px rgb(59, 198, 89);
}
#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  width: 45%;
  background: rgb(59, 198, 89);
}
#menu_btn span:nth-of-type(1) {
  top: 14px;
}
#menu_btn span:nth-of-type(2) {
  top: 23px;
}
#menu_btn span:nth-of-type(3) {
  top: 32px;
}
#menu_btn.active {
  color: rgb(59, 198, 89);
}
#menu_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 14px;
  transform: translateY(9px) rotate(-135deg);
}
#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn.active span:nth-of-type(3) {
  top: 33px;
  left: 14px;
  transform: translateY(-9px) rotate(135deg);
}

#mainnavi {
  background-color: white;
  z-index: 20;
  height: 100vh;
  width: 100vw;
  padding: var(--header-height-sp) 0;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  #mainnavi {
    padding: var(--header-height) 0;
  }
}
#mainnavi.active {
  opacity: 1;
  visibility: visible;
}
#mainnavi ul {
  margin: 0 0 30px;
  text-align: center;
}
#mainnavi li {
  margin: 0;
  padding: 0 0;
  font-size: 1rem;
}
#mainnavi li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: rgb(51, 51, 51);
}

/*main
---------------------------------------------------------------------*/
#main {
  padding: 0px 0 0 0;
  position: relative;
  background-color: rgb(255, 255, 255);
  margin-top: var(--header-height-sp);
}
@media (min-width: 768px) {
  #main {
    margin-top: var(--header-height);
  }
}

#body_top #topicpath {
  display: none;
}

#topicpath {
  padding: 0;
  font-size: 0.7rem;
  margin: 0 auto 2em;
}

/*sidecol
---------------------------------------------------------------------*/
/*footer
---------------------------------------------------------------------*/
#footer {
  margin-top: 10px;
  background: rgb(59, 198, 89) url(../img/footer.svg) no-repeat center -1px;
  background-size: 101%;
  padding: calc(7% + 50px) 0 30px 0;
  position: relative;
  font-size: 0.9rem;
}
#footer #footer_address {
  text-align: center;
}
#footer #copyright {
  margin: 2em auto 0px;
  padding: 0px 0px;
  text-align: center;
}

#yoyaku_link_btn {
  position: sticky;
  bottom: 5%;
  z-index: 10;
  margin-top: 4em;
  margin-bottom: -4em;
  font-size: clamp(1rem, 0.189217759rem + 2.1141649049vw, 1.5rem) !important;
}
#yoyaku_link_btn a {
  position: absolute;
  bottom: 0;
  right: 2%;
  background: rgba(59, 198, 89, 0.9);
  border-radius: var(--radius);
  color: #FFF;
  text-align: center;
  padding: 2em;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 8em;
  width: 8em;
  line-height: 1.1;
  gap: 0.7em;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
#yoyaku_link_btn a small {
  font-size: 0.8rem;
}
#yoyaku_link_btn a:hover {
  opacity: 0.8;
}

#body_reservation #yoyaku_link_btn {
  display: none;
}

/*common
---------------------------------------------------------------------*/
#maincol {
  z-index: 10;
  position: relative;
  padding: 0px 0 0 0;
}

#maincol article {
  margin: 0px 0;
  padding: calc(7% + 50px) 0 30px 0;
  background: url(../img/line.svg) no-repeat top center;
  background-size: 100%;
}

#maincol h1 {
  margin: 1em 0 1em;
  padding: 0;
  font-size: clamp(1.4rem, 0.4270613108rem + 2.5369978858vw, 2rem);
  color: rgb(51, 51, 51);
  position: relative;
  text-align: center;
  align-items: center;
  letter-spacing: 0;
  border: 0;
}
#maincol h1 span {
  position: relative;
  display: block;
  padding: 0 1em 0 0;
  margin-bottom: 1em;
  font-weight: normal;
  font-size: 0.95rem;
  color: rgb(59, 198, 89);
  letter-spacing: 0.25em;
}
#maincol h1 span.no_ls {
  letter-spacing: 0;
}
#maincol h1 span::before {
  vertical-align: middle;
  display: inline-block;
  margin: 0 1em 0 0;
  content: "";
  background: url(../img/book.svg) no-repeat center center;
  background-size: 100%;
  width: 1.75em;
  height: 1.75em;
}

#maincol article h1 {
  margin: 0em 0 1.5em;
}

#maincol h2 {
  font-size: clamp(1.2rem, 0.5513742072rem + 1.6913319239vw, 1.6rem);
  margin: 0 0 1em 0;
}
#maincol h2 span {
  display: inline-block;
  padding: 0;
  border-bottom: dotted 3px rgb(59, 198, 89);
}

#maincol h3 {
  margin: 2em 0 0.75em;
  padding: 0 0 0 1em;
  font-size: clamp(1rem, 0.3513742072rem + 1.6913319239vw, 1.4rem);
  line-height: 1.2;
  position: relative;
}
#maincol h3:before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-color: rgb(59, 198, 89);
  border-radius: var(--radius);
  padding: 0px 0;
  margin: 0 0 0 0;
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
}

p {
  margin: 0 0 1em;
}

p.wiki_img {
  text-align: center;
  margin: 0 auto 1em;
  width: 80%;
  max-width: 720px;
  height: auto;
}
@media (min-width: 768px) {
  p.wiki_img {
    max-height: 640px;
  }
}
p.wiki_img img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
}

.margin_top {
  margin-top: 50px !important;
}

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

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

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

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

.widthmax {
  width: 100%;
}

img.image {
  border-radius: 20px;
  width: 80%;
  max-width: 640px;
}

strong {
  font-weight: bold;
  font-size: 110%;
}

em, .red {
  color: rgb(245, 40, 40);
}

a {
  text-decoration: none;
  color: rgb(58, 94, 200);
  transition: ease 0.2s;
}
a:hover {
  color: rgb(59, 198, 89);
}
a img {
  transition: ease 0.2s;
}
a:hover img {
  opacity: 0.8;
}

.linkbtn,
.linkbtn_b,
.show_btn {
  line-height: 0.1;
}

.show_btn {
  cursor: pointer;
}
.show_btn:hover span {
  background-color: rgb(59, 198, 89);
  color: #FFF;
}

.linkbtn a,
.linkbtn_b a,
.show_btn span {
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0.75em 1.5em;
  background-color: #FFF;
  color: rgb(59, 198, 89);
  border: solid 2px rgb(59, 198, 89);
  border-radius: 50px;
  min-width: 40%;
}
@media (min-width: 768px) {
  .linkbtn a:hover,
  .linkbtn_b a:hover,
  .show_btn span:hover {
    background-color: rgb(59, 198, 89);
    color: #FFF;
  }
}

.linkbtn_b a {
  background-color: rgb(59, 198, 89);
  color: #FFF;
}
@media (min-width: 768px) {
  .linkbtn_b a:hover {
    color: rgb(59, 198, 89);
    border: solid 2px rgb(59, 198, 89);
    background-color: #FFF;
  }
}

a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

a.blank:not(a:has(img)) {
  position: relative;
}
a.blank:not(a:has(img))::after {
  content: "　";
  display: inline-block;
  margin: 0 5px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

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

.chui:before {
  content: "※";
  font-family: sans-serif;
}

.chui_ol {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  counter-reset: number;
}
.chui_ol li {
  margin: 0 0 0.25em;
  padding: 0 0 0 2em;
  text-indent: -1em;
}
.chui_ol li:before {
  counter-increment: number;
  content: "※" counter(number);
  display: inline-block;
  margin-right: 0.5em;
}

.chui_ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
.chui_ul li {
  margin: 0 0 0.25em;
  text-indent: -1em;
  padding-left: 1em;
}
.chui_ul li:before {
  content: "※";
}

#maincol li {
  margin-bottom: 0.5em;
}

ul.ul_default {
  list-style: none;
  margin: 0 0 1em;
  padding: 0 0 0 0em;
}
ul.ul_default li {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  position: relative;
}
ul.ul_default li:before {
  content: "";
  height: 1em;
  width: 1em;
  border-radius: var(--radius);
  background-color: rgb(59, 198, 89);
  position: absolute;
  top: 0.15em;
  left: 0;
}

ul.linklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
ul.linklist li {
  flex-grow: 2;
}
ul.linklist .linkbtn a {
  display: block;
}

table.default {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 15px;
}
table.default tr {
  border-top: solid 1px #3bc659;
  border-left: solid 1px #3bc659;
}
table.default th, table.default td {
  padding: 0.5em 1em;
  font-weight: normal;
  background-color: rgb(255, 255, 255);
  border-bottom: solid 1px #3bc659;
  border-right: solid 1px #3bc659;
}
table.default th {
  font-weight: bold;
}
table.default thead th {
  text-align: center;
}
table.default tbody th {
  text-align: left;
  vertical-align: top;
  background-color: rgba(59, 198, 89, 0.1);
  white-space: nowrap;
}

dl.history {
  border-collapse: collapse;
  margin: 0;
}
dl.history div {
  display: flex;
  margin: 0 0 0.5em 0;
  gap: 1em;
}
dl.history dt {
  margin: 0;
  font-weight: bold;
  width: 5em;
  flex-shrink: 0;
  text-align: right;
}
dl.history dd {
  margin: 0;
}

@media (max-width: 767px) {
  table.cellblock tr {
    display: block;
    margin-bottom: 3px;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
  position: relative;
  color: #298c3e;
  font-weight: bold;
  font-size: clamp(0.95rem, 0.5446088795rem + 1.0570824524vw, 1.2rem);
}
dl.dl_default dd {
  margin: 0 0 1em 2em;
}

dl.dl_fs {
  border: solid 1px rgb(var(--main-rgb));
  border-radius: 5px;
  padding: 0.5em 1em;
}
dl.dl_fs dt {
  margin: -1.25em 0 0.5em;
}
dl.dl_fs dt strong {
  padding: 0 0.5em;
  background-color: #FFF;
}
dl.dl_fs dd {
  margin: 0;
}

dl.theme div {
  display: flex;
  margin: 0em 0;
  padding: 1em 0;
  gap: 1em;
  align-items: center;
  border-bottom: dotted 2px rgba(var(--main-rgb), 0.5);
}
@media (max-width: 767px) {
  dl.theme div {
    flex-direction: column;
  }
}
dl.theme dt {
  margin: 0;
  min-width: 15em;
  height: 10em;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/theme.svg) no-repeat center center;
  background-size: contain;
}
dl.theme dt span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--main-rgb));
  color: #FFF;
  line-height: 1;
  width: 1em;
  height: 1em;
  padding: 1em;
  margin: -0.5em 0 1em;
  text-align: center;
  border-radius: var(--radius);
}
dl.theme dd {
  margin: 0;
}

/*TOPページ*/
/*TOPスライド*/
.topmainimage {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.topmainimage #mainswiper.swiper-container {
  position: relative;
  border-top-right-radius: 2000px 150px;
  border-top-left-radius: 2000px 150px;
  margin: 0 -60px 0px;
  padding: 0px 60px 0px;
}
.topmainimage #mainswiper.swiper-container:after {
  position: relative;
  z-index: 10;
  display: block;
  content: "";
  height: max(10vw, 50px);
  width: calc(100% + 120px);
  background: none;
  border-top-right-radius: 2000px 150px;
  border-top-left-radius: 2000px 150px;
  margin: max(-10vw, -50px) -60px 0px;
  padding: 0px 60px 0px;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .topmainimage #mainswiper.swiper-container:after {
    margin: max(-5vw, -25px) -60px 0px;
  }
}
.topmainimage .swiper-wrapper {
  margin: 0 auto;
  text-align: center;
}
.topmainimage .swiper-slide img {
  display: block;
  height: 60vh;
  width: 100vw;
  min-height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .topmainimage .swiper-slide img {
    height: 40vh;
    min-height: auto;
  }
}
@media (min-width: 1200px) and (orientation: landscape) {
  .topmainimage .swiper-slide img {
    min-height: 800px;
  }
}

#body_top #maincol article:first-child {
  background: none;
  padding-top: 0;
}

/*TOPカレンダー*/
.top_calendar {
  border: solid 1px rgb(59, 198, 89);
  border-radius: 30px;
  padding: 3%;
}
@media (min-width: 768px) {
  .top_calendar {
    width: 60%;
  }
}
.top_calendar .calendar {
  margin: 0 0 20px;
  border: 0;
}
.top_calendar .calendar caption {
  padding: 0;
  position: relative;
}
.top_calendar .calendar caption span {
  display: block;
}
.top_calendar .calendar span.calcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_calendar .calendar span.cal_next {
  cursor: pointer;
  float: right;
  font-size: 70%;
}
.top_calendar .calendar span.cal_next:after {
  content: " ≫";
}
.top_calendar .calendar span.cal_prev {
  cursor: pointer;
  float: left;
  font-size: 70%;
}
.top_calendar .calendar span.cal_prev:before {
  content: "≪ ";
}
.top_calendar .calendar tr, .top_calendar .calendar td, .top_calendar .calendar th {
  border: 0;
  background-color: transparent !important;
}
.top_calendar .calendar td {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: solid 1px #DDD;
}
.top_calendar .calendar td.empty {
  background-color: transparent !important;
}
.top_calendar .calendar td div {
  min-height: calc(1em + 15px);
}
@media (max-width: 767px) {
  .top_calendar .calendar td div {
    font-size: 0.8rem;
  }
}
.top_calendar .calendar td div:after {
  content: "";
  height: 5px;
  width: 3em;
  background-color: rgb(59, 198, 89);
  border-radius: 0 0 5px 5px;
  display: block;
  padding: 0 5px;
  margin: auto;
}
.top_calendar .calendar td.null_day div:after {
  background-color: transparent;
}
.top_calendar .calendar td.open_day div:after {
  background-color: transparent;
}
.top_calendar .calendar td.closed_day div:after {
  background-color: rgb(200, 200, 200);
}
.top_calendar .calendar td.event_day div:after {
  background-color: rgb(255, 234, 44);
}
.top_calendar .hanrei {
  margin: 0 1em;
}
.top_calendar .hanrei span:before {
  content: "";
  height: 1em;
  width: 1em;
  background-color: rgb(59, 198, 89);
  display: inline-block;
  padding: 0;
  margin: 0 0.25em 0 0;
  vertical-align: middle;
}
.top_calendar .hanrei span.null_day:before {
  background-color: transparent;
}
.top_calendar .hanrei span.open_day:before {
  background-color: rgb(59, 198, 89);
}
.top_calendar .hanrei span.closed_day:before {
  background-color: rgb(200, 200, 200);
}
.top_calendar .hanrei span.event_day:before {
  background-color: rgb(255, 234, 44);
}

.top_guide {
  margin: 3% 3% 0;
}
@media (min-width: 768px) {
  .top_guide {
    width: 36%;
  }
}

.entry_time span {
  display: inline-block;
  white-space: nowrap;
  margin: 0 0.8em;
}

.honnomori_link {
  display: flex;
  justify-content: space-around;
  gap: 1%;
}
.honnomori_link p {
  width: 200px;
  height: 200px;
}
.honnomori_link p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .honnomori_link {
    flex-wrap: wrap;
  }
  .honnomori_link p {
    width: 32%;
    height: auto;
  }
}

/*イベント・お知らせ*/
a .event_date {
  font-size: 80%;
  color: #666;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 3em 0 1em;
}
.pagination a, .pagination span {
  width: 2em;
  height: 2em;
  border: 1px solid rgb(59, 198, 89);
  background-color: rgb(59, 198, 89);
  color: #FFF;
  display: block;
  text-align: center;
  line-height: 2em;
  border-radius: 50%;
}
.pagination a {
  background-color: #FFF;
  color: rgb(59, 198, 89);
}
.pagination .pagination_prev, .pagination .pagination_next {
  background-color: transparent;
  position: relative;
  border: 0;
}
.pagination .pagination_prev:before, .pagination .pagination_next:before {
  content: "";
  background-color: rgb(59, 198, 89);
  position: absolute;
  height: 20px;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagination .pagination_prev:before {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.pagination span.pagination_prev:before, .pagination span.pagination_next:before {
  background-color: rgb(200, 200, 200);
}

.prev_next_html {
  display: flex;
  justify-content: space-between;
  margin: 5em 0 0 0;
  padding: 1em 0 0 0;
  border-top: 1px dotted #ddd;
  font-size: 90%;
}
.prev_next_html div {
  gap: 1em;
  flex-grow: 2;
}
.prev_next_html .news_next {
  text-align: right;
}
.prev_next_html .news_prev a, .prev_next_html .news_next a {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.prev_next_html .news_prev a:before, .prev_next_html .news_next a:after {
  content: "";
  display: block;
  background-color: rgb(59, 198, 89);
  position: absolute;
  height: 15px;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 0.25em;
}
.prev_next_html .news_prev a:before {
  left: 0;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.prev_next_html .news_next a:after {
  right: 0;
}

/**/
.iframe {
  margin: 30px auto;
}
.iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 720px;
  display: block;
  margin: auto;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .flex_box {
    display: flex;
    justify-content: space-around;
    gap: 2%;
  }
}
@media print {
  footer, #overlay, #menu_btn, #yoyaku_link_btn, #sidecol, #topicpath {
    display: none;
  }
  header {
    position: relative !important;
  }
}

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