@charset "UTF-8";
/*-------------------------------------------------------

reset css

----------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/*-------------------------------------------------------

全体共通

----------------------------------------------------------*/
html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", serif;
  line-height: 1.5;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
body *::before, body *::after {
  box-sizing: border-box;
}
body.open {
  position: fixed;
  width: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

sup {
  font-size: 0.8rem;
  vertical-align: text-top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table-wrap {
  margin-top: 50px;
}
.table-wrap:first-child {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .table-wrap:first-child {
    margin-top: 20px;
  }
}

.h4-ttl {
  font-size: 1.42857em;
  font-weight: 700;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .h4-ttl {
    font-size: 16px;
  }
}

a[href$=".pdf"] {
  color: #005881 !important;
  text-decoration: underline;
}

a[href$=".pdf"]::after {
  content: "";
  color: #005881;
  text-decoration: underline;
  background-image: url("../images/common/icon_pdf.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding-right: 21px;
  margin-left: 6px;
  margin-right: 3px;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
.pc-none {
  display: block;
}
@media only screen and (min-width: 1080px) {
  .pc-none {
    display: none;
  }
}

/*-------------------------------------------------------

topへ戻るボタン

----------------------------------------------------------*/
#page-top {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s;
}
@media only screen and (max-width: 767px) {
  #page-top {
    right: 4%;
    bottom: 80px;
  }
}
#page-top.top-anchor {
  opacity: 1;
  z-index: 99;
  transition: all 0.2s;
  transition: all 0.2s;
}
#page-top a {
  text-decoration: none;
  display: flex;
  color: #a1a1a1;
  position: relative;
  width: 100%;
  height: 100%;
  bottom: 10px;
  left: 0;
  font-size: 1rem;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  color: #0477BE;
}

#page-top::before,
#page-top::after {
  position: absolute;
  width: 60px;
  height: 60px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

#page-top::before {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border: 1px solid #0477BE;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
}

#page-top::after {
  top: 30px;
  left: 22px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #0477BE;
  border-right: 1px solid #0477BE;
  transform: rotate(-45deg);
  animation: arrow 1.2s infinite;
}
@keyframes arrow {
  50% {
    top: 13px;
    opacity: 1;
  }
  100% {
    top: 5px;
    opacity: 0;
  }
}
.nav-active {
  color: #80b62f;
  font-weight: bold;
}

/*-------------------------------------------------------

header

----------------------------------------------------------*/
.header, .header__container {
  background-image: url(../images/common/header_bg.svg);
  background-position: center;
}
@media only screen and (min-width: 1080px) {
  .header {
    top: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    z-index: 999;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
}
.header__container {
  padding-left: 40px;
}
@media only screen and (max-width: 1080px) {
  .header__container {
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 4%;
    z-index: 9999;
    position: fixed;
  }
}
@media only screen and (max-width: 767px) {
  .header__container {
    padding: 10px 4%;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  max-width: 430px;
  font-size: 26px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    display: none;
    max-width: 120px;
  }
}
@media only screen and (max-width: 1080px) {
  .header__logo {
    z-index: 9999;
  }
}
.header__logo span {
  font-size: 14px;
  font-weight: 500;
}
.header__logo_sp {
  display: flex;
  align-items: center;
  max-width: 250px;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (min-width: 767px) {
  .header__logo_sp {
    display: none;
  }
}
.header__logo_sp span {
  font-size: 10px;
  font-weight: 500;
}
.header__logo a, .header__logo_sp a {
  color: #fff;
}

@media only screen and (max-width: 1080px) {
  .header__toggle {
    display: block;
    position: relative;
    width: 50px;
    height: 30px;
    z-index: 9999;
  }
  .header__toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.2s;
    background-color: #fff;
    border-radius: 2px;
  }
  .header__toggle span:nth-of-type(1) {
    top: 0;
  }
  .header__toggle span:nth-of-type(2) {
    top: 14px;
  }
  .header__toggle span:nth-of-type(3) {
    bottom: 0;
  }
  .header__toggle.active span:nth-of-type(1) {
    transform: translateY(14px) rotate(-45deg);
  }
  .header__toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__toggle.active span:nth-of-type(3) {
    transform: translateY(-14px) rotate(45deg);
  }
}
@media only screen and (max-width: 767px) {
  .header__toggle {
    top: 50%;
    right: 0;
    width: 30px;
    height: 20px;
    z-index: 9999;
  }
  .header__toggle span:nth-of-type(1) {
    top: 0;
  }
  .header__toggle span:nth-of-type(2) {
    top: 9px;
  }
  .header__toggle span:nth-of-type(3) {
    bottom: 0;
  }
  .header__toggle.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .header__toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__toggle.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}
.header__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1080px) {
  .header__nav {
    display: none;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    overflow: scroll;
  }
}
.g-menu {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .g-menu {
    padding: 77px 4% 0;
  }
}
@media only screen and (max-width: 1080px) {
  .g-menu {
    flex-wrap: wrap;
    height: auto;
    padding: 100px 4% 0;
  }
}
.g-menu__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1080px) {
  .g-menu__item {
    position: relative;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1080px) {
  .g-menu__item {
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1299px) {
  .g-menu__item {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .g-menu__item {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 1080px) {
  .g-menu__item::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
}
@media only screen and (min-width: 1080px) {
  .g-menu__item:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@media only screen and (max-width: 1080px) {
  .g-menu__item:first-child {
    border-top: 1px solid #eee;
  }
}
.g-menu__item a {
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 1080px) {
  .g-menu__item a {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    display: block;
    color: #000000;
  }
}

.g-menu__item--submenu {
  position: relative;
}

@media only screen and (min-width: 1080px) {
  .g-menu__item--submenu:hover .g-menu__submenu {
    visibility: visible;
  }
  .g-menu__item--submenu:hover .g-menu__submenu-item {
    opacity: 1;
    transform: translateX(0);
    z-index: 9999;
  }
}
.g-menu__copy {
  margin-bottom: 5px;
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #80b62f;
  box-sizing: border-box;
}

@media only screen and (max-width: 1080px) {
  .g-menu__copy {
    display: none;
  }
}
@media only screen and (min-width: 1080px) {
  .g-menu__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 25px;
    width: 230px;
    visibility: hidden;
  }
  .g-menu__submenu-item {
    position: relative;
    opacity: 0;
    border-bottom: 1px solid #fff;
    background-color: #1E5B85;
    transform-origin: left;
    transform: translateX(-20%);
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1);
    overflow: hidden;
  }
  .g-menu__submenu-item span {
    z-index: 999;
    transition: none;
  }
  .g-menu__submenu-item a {
    display: flex;
    align-items: center;
    color: #fff;
    width: 100%;
    height: 58px;
    padding: 20px;
  }
  .g-menu__submenu-item::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    color: #80b62f;
    background-color: #fff;
    overflow: hidden;
    transform-origin: left;
    transform: translateX(-100%);
    transition: 0.3s all cubic-bezier(0.52, 0.08, 0.18, 1);
  }
  .g-menu__submenu-item:hover span {
    color: #1E5B85;
  }
  .g-menu__submenu-item:hover::after {
    border-color: #1E5B85;
  }
  .g-menu__submenu-item:hover::before {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1080px) {
  .g-menu__submenu {
    width: 100%;
    display: none;
  }
  .g-menu__submenu-item {
    background: #eee;
    padding: 0 10px;
  }
  .g-menu__submenu-item + li {
    margin-top: 1px;
  }
}
@media only screen and (max-width: 1080px) {
  .g-menu__parent {
    position: relative;
    cursor: pointer;
  }
  .g-menu__parent::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 16px;
    background: #333;
    transform: translateY(-50%);
    transition: all 0.1s;
  }
  .g-menu__parent::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 7px;
    height: 16px;
    width: 1px;
    background: #333;
    transform: translateY(-50%);
    transition: all 0.1s;
  }
  .g-menu__parent.active::after {
    transform: translateY(-10px) rotate(-90deg);
    opacity: 0;
  }
}
.header-fontSize-font {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  position: absolute;
  right: 160px;
  top: 4px;
  color: #fff;
}
.header-fontSize-font .header-fontSize-text {
  font-size: 12px;
}
.header-fontSize-font #header-fontSize-list {
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
}
.header-fontSize-font #header-fontSize-list li {
  padding: 0 2px;
}
.header-fontSize-font #header-fontSize-list li a {
  display: block;
  width: 56px;
  height: 23px;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
}

.header-fontSize-font #header-fontSize-list li a.active {
  background: #fff;
  color: #1E5B85;
}

/*-------------------------------------------------------

ヘッダーアイコンボタン

----------------------------------------------------------*/
.catch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 120px;
  height: 100px;
}
@media only screen and (max-width: 1080px) {
  .catch-icon {
    margin-top: 30px;
    width: calc(100% - 5px);
    border-radius: 5px;
    height: 80px;
  }
}

.catch-icon--accent {
  background: #B10808;
}
@media only screen and (min-width: 1080px) {
  .catch-icon--accent {
    overflow: hidden;
    position: relative;
  }
  .catch-icon--accent::before {
    content: "";
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: left;
    transform: translateX(-100%);
    transition: 0.3s all cubic-bezier(0.52, 0.08, 0.18, 1);
  }
  .catch-icon--accent:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  .catch-icon--accent:hover span {
    color: #B10808;
  }
  .catch-icon--accent:hover svg {
    fill: #B10808;
  }
}

.catch-icon__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 1080px) {
  .catch-icon__box {
    flex-wrap: nowrap;
  }
}
.catch-icon__box span {
  margin-top: 5px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 999;
}
.catch-icon__box svg {
  width: 36px;
  height: 40px;
  fill: #fff;
  z-index: 999;
}
@media only screen and (max-width: 1080px) {
  .catch-icon__box svg {
    width: 62px;
  }
}
.catch-icon__box img {
  width: 36px;
  height: 40px;
  fill: #fff;
  z-index: 999;
}
@media only screen and (max-width: 1080px) {
  .catch-icon__box img {
    width: 27px;
    height: 30px;
  }
}

a[target=_blank].catch-icon__box::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath id='パス_3' data-name='パス 3' d='M11.486,2.99a.5.5,0,0,0-.056,0H9a.5.5,0,1,0,0,1h1.292L5.645,8.638a.5.5,0,1,0,.707.707L11,4.7V5.993a.5.5,0,1,0,1,0V3.558a.5.5,0,0,0-.51-.568ZM4,2.995a1.007,1.007,0,0,0-1,1v7a1.007,1.007,0,0,0,1,1h7a1.007,1.007,0,0,0,1-1v-3a.5.5,0,1,0-1,0v3H4v-7H7a.5.5,0,1,0,0-1Z' transform='translate(-3 -2.99)' fill='%23fff'/%3E%3C/svg%3E%0A");
  padding-left: 0.3em;
  position: absolute;
  right: 9px;
  bottom: 7px;
}

a[target=_blank].catch-icon__box:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath id='パス_3' data-name='パス 3' d='M11.486,2.99a.5.5,0,0,0-.056,0H9a.5.5,0,1,0,0,1h1.292L5.645,8.638a.5.5,0,1,0,.707.707L11,4.7V5.993a.5.5,0,1,0,1,0V3.558a.5.5,0,0,0-.51-.568ZM4,2.995a1.007,1.007,0,0,0-1,1v7a1.007,1.007,0,0,0,1,1h7a1.007,1.007,0,0,0,1-1v-3a.5.5,0,1,0-1,0v3H4v-7H7a.5.5,0,1,0,0-1Z' transform='translate(-3 -2.99)' fill='%23B10808'/%3E%3C/svg%3E%0A");
  padding-left: 0.3em;
}

@media only screen and (min-width: 1080px) {
  .arrow--wh-pc {
    position: relative;
  }
  .arrow--wh-pc::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center center;
  }
}
/*-------------------------------------------------------

パンくずリスト

----------------------------------------------------------*/
#breadcrumbs {
  margin-bottom: 30px;
}

#breadcrumbs a {
  text-decoration: underline;
}

#breadcrumbs > li {
  display: inline;
}

#breadcrumbs > li + li {
  position: relative;
}

#breadcrumbs > li + li::before {
  content: ">";
  margin: 0 5px;
}

/*-------------------------------------------------------

メインコンテンツのレイアウト指定

----------------------------------------------------------*/
.broad-outline {
  width: 94%;
  max-width: 980px;
  margin: 150px auto;
}
@media (max-width: 767px) {
  .broad-outline {
    margin: 100px auto 50px;
  }
}

.content-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .content-wrap {
    flex-wrap: wrap;
  }
}
.content-wrap * {
  min-height: 0;
  min-width: 0;
}
.content-wrap a {
  color: #000000;
  word-break: break-all;
}

.main-content {
  flex: 1;
  margin-right: 30px;
  width: 100%;
  max-width: 710px;
}

.content-wrap .main-content section {
  margin-bottom: 80px;
}

.content-wrap .main-content section:last-child {
  margin-bottom: 0;
}

.content-wrap .main-content section > *:last-child {
  margin-bottom: 0;
}

.content-wrap .main-content .common-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-weight: normal;
  position: relative;
  padding-left: 10px;
  padding-bottom: 12px;
}

.content-wrap .main-content .common-ttl::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #0477BE;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.content-wrap .main-content .common-ttl::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #ddd;
  left: 0;
  bottom: 0;
}

.content-wrap .main-content .common-ttl .common-ttl-text {
  position: relative;
  font-size: 1.85714em;
  font-weight: bold;
  margin: 0 auto 0 0;
}

.content-wrap .main-content .common-ttl .common-more-text-link {
  margin: 0;
  padding: 0;
}

.content-wrap .main-content .common-ttl .common-more-text-link a {
  color: #333333;
}

.content-wrap .main-content .common-sttl {
  position: relative;
  margin: 30px 0 20px;
}

.content-wrap .main-content .common-sttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 90%;
  background-color: #0477BE;
  top: 2px;
  left: 0;
  border-radius: 2px;
}

.content-wrap .main-content .common-sttl .common-sttl-text {
  font-size: 1.42857em;
  padding-left: 20px;
  display: inline-block;
  color: #0477BE;
}

.content-wrap .main-content .bottom-nav {
  margin-top: 30px;
  overflow: hidden;
}

.content-wrap .main-content .bottom-nav > .nav-previous {
  float: left;
}

.content-wrap .main-content .bottom-nav > .nav-next {
  float: right;
}

@media (max-width: 767px) {
  .content-wrap .main-content {
    flex: auto;
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  .content-wrap .main-content > *:last-child {
    margin-bottom: 0;
  }
  .content-wrap .main-content .common-ttl {
    padding-left: 10px;
  }
  .content-wrap .main-content .common-ttl .common-ttl-text {
    font-size: 2rem;
  }
  .content-wrap .main-content .common-sttl .common-sttl-text {
    font-size: 1.6rem;
    padding-left: 15px;
  }
}
/*-------------------------------------------------------

サイドバー

----------------------------------------------------------*/
.content-wrap .content-sidenav {
  width: 240px;
  flex: none;
}
@media (max-width: 767px) {
  .content-wrap .content-sidenav {
    width: 100%;
  }
}
.content-wrap .content-sidenav .content-sidenav-contact {
  padding: 10px;
  width: 100%;
  background-color: #F5F5F5;
  margin-bottom: 20px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .content-wrap .content-sidenav .content-sidenav-contact {
    overflow: hidden;
  }
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-ttl {
  position: relative;
  margin: 5px 0 10px 5px;
  padding: 0 15px;
  font-size: 1.285711em;
  font-weight: 700;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 90%;
  top: 0;
  left: 0;
  background-color: #0477BE;
  border-radius: 3px;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-subttl {
  background-color: #0477BE;
  color: #fff;
  width: 240px;
  margin-left: -10px;
  margin-bottom: 8px;
  padding: 8px 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content-wrap .content-sidenav .content-sidenav-contact .contact-subttl {
    width: 110%;
  }
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-map {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .content-wrap .content-sidenav .content-sidenav-contact .contact-map {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .content-wrap .content-sidenav .content-sidenav-contact .contact-map iframe {
    width: 100%;
  }
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-address span {
  font-size: 0.85714em;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-address li + li {
  margin-top: 8px;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-btn {
  margin-top: 12px;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-btn > a {
  display: block;
  padding: 0 40px 0 10px;
  font-weight: 700;
  line-height: 40px;
  width: 100%;
  color: #ffffff;
  background-color: #AF794A;
  text-align: left;
  text-decoration: none;
  position: relative;
  border-radius: 5px;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-btn > a:hover {
  opacity: 0.8;
}
.content-wrap .content-sidenav .content-sidenav-contact .contact-btn + .contact-subttl {
  margin-top: 20px;
}

.content-wrap .content-sidenav .content-sidenav-bnr,
.content-wrap .content-sidenav .content-sidenav-bnrs > li {
  margin-bottom: 10px;
}

.content-wrap .content-sidenav .content-sidenav-bnr img,
.content-wrap .content-sidenav .content-sidenav-bnrs > li img {
  width: 100%;
}

.content-wrap .content-sidenav .content-sidenav-text-links {
  margin-bottom: 10px;
}

.content-wrap .content-sidenav .content-sidenav-text-links > li {
  margin-bottom: 5px;
}

.content-wrap .content-sidenav .content-sidenav-widget {
  margin-bottom: 25px;
  text-align: center;
  border: 1px solid #80b62f;
  border-radius: 5px;
}

.content-wrap .content-sidenav .content-sidenav-widget > iframe {
  width: 100%;
}

@media (max-width: 767px) {
  .content-wrap .content-sidenav .content-sidenav-bnrs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .content-wrap .content-sidenav .content-sidenav-bnrs > li {
    width: 49%;
    flex: none;
  }
  .content-wrap .content-sidenav .content-sidenav-widget {
    margin-bottom: 25px;
  }
  .content-wrap .content-sidenav .content-sidenav-widget > iframe {
    height: 200px;
  }
}
/*-------------------------------------------------------

footer

----------------------------------------------------------*/
.footer__container {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  box-sizing: content-box;
  padding: 4%;
  background: #0477BE;
}
@media only screen and (max-width: 767px) {
  .footer__container {
    display: none;
  }
}
.footer__container a {
  color: #fff;
}
.footer__link {
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: space-between;
}
.footer__link a:hover {
  color: #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  padding-bottom: 2px;
}
.footer__link-item:nth-child(n+2) {
  margin-top: 20px;
  line-height: 1.5;
}
.footer__link-item.subcate {
  padding-left: 20px;
}
.footer__copy {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background: #3E4952;
  padding: 40px 4%;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 1rem;
    padding: 24px 4%;
  }
}
.footer__copy__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .footer__copy__wrap {
    flex-direction: column;
    gap: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__copy__link {
    font-size: 1rem;
  }
}
.footer__copy__link a {
  color: #fff;
}
.footer__copy__link a:hover {
  color: #cfd0d0;
}
.footer ul {
  padding: 0 10px 0 10px;
  width: 200px;
}
@media only screen and (max-width: 1080px) {
  .footer ul + ul {
    padding-left: 24px;
  }
}
.footer a[target=_blank]::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath id='パス_3' data-name='パス 3' d='M11.486,2.99a.5.5,0,0,0-.056,0H9a.5.5,0,1,0,0,1h1.292L5.645,8.638a.5.5,0,1,0,.707.707L11,4.7V5.993a.5.5,0,1,0,1,0V3.558a.5.5,0,0,0-.51-.568ZM4,2.995a1.007,1.007,0,0,0-1,1v7a1.007,1.007,0,0,0,1,1h7a1.007,1.007,0,0,0,1-1v-3a.5.5,0,1,0-1,0v3H4v-7H7a.5.5,0,1,0,0-1Z' transform='translate(-3 -2.99)' fill='%23fff'/%3E%3C/svg%3E%0A");
  padding-left: 0.3em;
}
.footer a[target=_blank]:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath id='パス_3' data-name='パス 3' d='M11.486,2.99a.5.5,0,0,0-.056,0H9a.5.5,0,1,0,0,1h1.292L5.645,8.638a.5.5,0,1,0,.707.707L11,4.7V5.993a.5.5,0,1,0,1,0V3.558a.5.5,0,0,0-.51-.568ZM4,2.995a1.007,1.007,0,0,0-1,1v7a1.007,1.007,0,0,0,1,1h7a1.007,1.007,0,0,0,1-1v-3a.5.5,0,1,0-1,0v3H4v-7H7a.5.5,0,1,0,0-1Z' transform='translate(-3 -2.99)' fill='%23bbb'/%3E%3C/svg%3E%0A");
  padding-left: 0.3em;
}

/*-------------------------------------------------------

単体テキスト関係

----------------------------------------------------------*/
.red-text {
  color: #ff0000 !important;
}

.green-text {
  color: #80b62f !important;
}

.bold-text {
  font-weight: bold !important;
}

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

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

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

/*-------------------------------------------------------



----------------------------------------------------------*/
.eye-catching-text {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 5px 5px;
  border-bottom: 1px dashed #d3d3d4;
  margin: 20px 0 10px;
  position: relative;
}

.eye-catching-text.no-border {
  border: none;
  padding: 0;
}

@media all and (max-width: 767px) {
  .eye-catching-text {
    font-size: 1.5rem;
  }
}
.note,
.notes > li {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.2rem;
}

.dot-list > li {
  padding-left: 1em;
  position: relative;
}

.dot-list > li::before {
  position: absolute;
  content: "・";
  left: 0;
}

/*-------------------------------------------------------

アーカイブリスト

----------------------------------------------------------*/
.text-item-list {
  margin-top: 20px;
  border-top: 1px solid #d3d3d4;
}

.text-item-list > li {
  border-bottom: 1px solid #d3d3d4;
}

.text-item-list > li.list-level2 {
  padding-left: 1.5em;
}

.text-item-list > li a {
  display: block;
  padding: 15px 10px;
}

.text-item-list > li a:hover {
  background-color: #d3d3d4;
  text-decoration: none;
}

/*-------------------------------------------------------



----------------------------------------------------------*/
.indent,
.indent-list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-2em,
.indent-2em-list > li {
  padding-left: 2em;
  text-indent: -2em;
}

a.link-pdf {
  padding-left: 25px !important;
  position: relative;
}

a.link-pdf::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  left: 5px;
  background: url(../images/icon_pdf.png) no-repeat center center;
  background-size: 100% auto;
}

.common-link-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding-left: 10px;
}

.common-link-icon::before,
.common-link-icon::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 5px solid #AF794A;
}

.common-link-icon:empty::before,
.common-link-icon:empty::after {
  display: none;
}

.common-link-icon-reverse {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding-right: 10px;
}

.common-link-icon-reverse::before,
.common-link-icon-reverse::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-right: 5px solid #AF794A;
}

.common-link-icon-reverse:empty::before,
.common-link-icon-reverse:empty::after {
  display: none;
}

.common-arrow-r {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.common-arrow-r::before,
.common-arrow-r::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.common-arrow-r::before {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #ffffff;
}

.common-arrow-r::after {
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #AF794A;
  border-right: 2px solid #AF794A;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.page-back {
  text-align: right;
  margin-top: 20px;
}

.tab-btns {
  display: flex;
  margin: 20px 0;
}

.tab-btns > li {
  margin-left: 10px;
  min-width: 60px;
}

.tab-btns > li:first-child {
  margin-left: 0;
}

.tab-btns > li a {
  color: #0477BE;
  border: 2px solid #0477BE;
  border-radius: 5px;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 5px 10px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

.tab-btns > li a.current {
  color: #ffffff;
  background-color: #0477BE;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
}

@media all and (max-width: 767px) {
  .tab-btns {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .tab-btns > li {
    margin: 0 0 0 2%;
    width: 32%;
    flex: none;
  }
  .tab-btns > li:nth-child(n+4) {
    margin-top: 10px;
  }
  .tab-btns > li:first-child,
  .tab-btns > li:nth-child(3n+1) {
    margin-left: 0;
  }
}
.scroll-area .scroll-table-read {
  display: none;
}

.border-box {
  border: 1px solid #000000;
  padding: 15px;
}

.red-border-box {
  border: 1px solid #ff0000;
  padding: 15px;
}

.green-border-box {
  border: 1px solid #80b62f;
  padding: 15px;
}

@media all and (max-width: 767px) {
  .border-box,
  .red-border-box,
  .green-border-box {
    padding: 10px;
  }
}
/*-------------------------------------------------------

お知らせ

----------------------------------------------------------*/
.news-list {
  margin-top: -10px;
}
.news-list > a.news-link {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #d3d3d4;
  padding: 0 5px;
}
.news-list > a.news-link:hover {
  background-color: #d3d3d4;
}
.news-list .news-item {
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px 0;
}
@media only screen and (max-width: 1080px) {
  .news-list .news-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .news-list .news-item {
    display: block;
  }
}
.news-list .news-item > * {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .news-list .news-item > * {
    display: inline-block;
  }
}
.news-list .news-item .news-date {
  min-width: 120px;
  max-width: 140px;
  flex: none;
  position: absolute;
}
@media only screen and (max-width: 1080px) {
  .news-list .news-item .news-date {
    position: relative;
  }
}
.news-list .news-item .news-taxonomies {
  position: absolute;
  padding-left: 120px;
}
@media only screen and (max-width: 1080px) {
  .news-list .news-item .news-taxonomies {
    position: relative;
    padding-left: 0;
  }
}
.news-list .news-item .news-desc {
  flex: 0 1 auto;
  padding-left: 200px;
}
@media only screen and (max-width: 1080px) {
  .news-list .news-item .news-desc {
    display: block;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .news-list .news-item .news-desc {
    min-width: 0;
    max-width: none;
    margin: 0 0 5px;
  }
}
.news-list .news-item .news-desc:hover {
  text-decoration: none;
}
.news-list .news-item .news-desc:hover .news-desc {
  text-decoration: none;
}

@media only screen and (max-width: 1080px) {
  .content-wrap .main-content .news-list .news-item {
    display: block;
  }
  .content-wrap .main-content .news-list .news-item .news-date {
    min-width: 0;
    max-width: none;
    margin: 0 13px 5px 0;
  }
}
.news-img-wrap img {
  max-width: 710px;
  height: auto;
}
@media (max-width: 767px) {
  .news-img-wrap img {
    max-width: 100%;
  }
}

.news-img-wrap2 img {
  max-width: 340px;
  height: auto;
}
@media (max-width: 767px) {
  .news-img-wrap2 img {
    max-width: 100%;
  }
}

/*-------------------------------------------------------

イベント・イベントプラネタリウム・天文ギャラリー

----------------------------------------------------------*/
.event-list {
  margin: 30px 0 50px;
}

.event-list > li {
  border-bottom: 1px solid #d3d3d4;
}

.event-list > li > div {
  height: 100%;
}

.event-item > a {
  display: block;
  text-decoration: none;
}

.event-item > a:hover {
  background-color: #d3d3d4;
}

.event-item > a:hover img {
  opacity: 1;
}

.event-item > a,
.event-item.no-link {
  padding: 20px 10px;
  height: 100%;
}

.event-item .event-title {
  font-size: 1.4em;
  font-weight: bold;
  /*  margin-bottom: 20px;*/
}

.event-item .event-title .event-copy {
  font-size: 0.8em;
  font-weight: normal;
  display: block;
}

.event-item .event-tags {
  text-align: left;
  overflow: hidden;
  margin: -10px 0 20px;
}

.event-item .event-tags > *:first-child {
  margin-left: 0;
}

.event-item .event-summary {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.event-item .event-summary .event-thumb {
  width: 30%;
  margin-right: 5%;
  flex: none;
}

.event-item .event-summary .event-thumb img {
  width: 100%;
}

.event-item .event-summary .event-thumb .presents-icon {
  margin-top: 5px;
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}

.event-item .event-summary .event-text-area {
  flex-grow: 1;
}

.event-item .event-summary .event-text-area .event-desc {
  margin-bottom: 20px;
}

.event-item .event-summary .event-text-area .event-info {
  overflow: hidden;
}

.event-item .event-summary .event-text-area .event-info > dt {
  float: left;
  width: 50px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 5px;
}

.event-item .event-summary .event-text-area .event-info > dd {
  overflow: hidden;
  margin-bottom: 10px;
}

.event-item .event-detail-btn {
  margin: 30px auto 0;
  width: 180px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  color: #ffffff;
  background-color: #80b62f;
}

.event-item .event-detail-btn:hover {
  opacity: 0.8;
}

.event-calendar .event-date {
  width: 15%;
}

.event-calendar .event-name {
  width: 20%;
}

.event-calendar .event-place {
  width: 15%;
}

.event-calendar .event-time {
  width: 15%;
}

.event-calendar .event-price {
  width: 15%;
}

.event-calendar .event-organizer {
  width: 20%;
}

@media all and (max-width: 767px) {
  .event-item > a,
  .event-item.no-link {
    padding: 20px 5px;
  }
  .event-item .event-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .event-item .event-tags {
    text-align: left;
    overflow: hidden;
    margin: -10px 0 20px;
  }
  .event-item .event-tags > *:first-child {
    margin-left: 0;
  }
  .event-item .event-summary .event-thumb {
    width: 28%;
    margin-right: 5%;
    flex: none;
  }
  .event-item .event-summary .event-thumb .presents-icon {
    font-size: 10px;
    line-height: 14px;
  }
  .event-item .event-summary .event-thumb .presents-icon::before {
    width: 14px;
    height: 14px;
    margin-right: 3px;
  }
  .event-item .event-summary .event-text-area .event-desc {
    margin-bottom: 20px;
  }
  .event-item .event-summary .event-text-area .event-info {
    overflow: hidden;
  }
  .event-item .event-summary .event-text-area .event-info > dt {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .event-item .event-summary .event-text-area .event-info > dd {
    margin-bottom: 10px;
  }
  .event-item .event-detail-btn {
    margin: 20px auto 0;
    width: 100%;
  }
}
/* イベントタグ */
.facility-tags {
  margin: 15px auto;
  word-spacing: -0.5em;
}

.facility-tags > * {
  word-spacing: normal;
}

.facility-tag {
  color: #ffffff;
  background-color: #666666;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  padding: 0.5em;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  line-height: 1.2em;
}

.facility-tag:last-child {
  margin-right: 0;
}

@media all and (max-width: 767px) {
  .facility-tag {
    margin-right: 5px;
    font-size: 10px;
    line-height: 1.4em;
  }
}
.place-tag {
  background-color: #EBBC2C;
}

.tag-end {
  background-color: #666666;
}

.tag-free {
  background-color: #48ca15;
}

.tag-cell {
  background-color: #84ce19;
}

.tag-stay {
  background-color: #f6ba2a;
}

.tag-over {
  background-color: #e11616;
}

.online-tag {
  background-color: #ff9900;
}

/*2020/05/25/追記*/
.planetarium-tag {
  background-color: #0000ff;
}

.event-tag {
  background-color: #e06666;
}

.culture-tag {
  background-color: #ff9c00;
}

/* post item */
.post-area > *:first-child {
  margin-top: 0;
}

.post-area > *:last-child {
  margin-bottom: 0;
}

.post-area .post-tag-area {
  text-align: right;
  margin: -15px 0 30px;
}

.post-area .post-flyer-image {
  text-align: center;
  margin: 20px auto;
}

.post-area .post-flyer-image img {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* キャプション */
.post-flyer-caption {
  font-size: 0.8em;
  margin-top: 5px;
}

.post-area .post-image,
.post-area .post-images {
  text-align: center;
  margin: 20px auto;
}

.post-area .post-image img,
.post-area .post-images img {
  width: auto;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.post-image-caption {
  font-size: 0.8em;
  margin-top: 5px;
}

.post-area .post-images {
  display: flex;
  justify-content: center;
}

.post-area .post-images > * {
  max-width: 100%;
  flex: 0 1 auto;
}

.post-area .post-images > * + * {
  margin-left: 2%;
}

.post-area .post-date {
  margin-top: 20px;
  text-align: right;
}

.post-area .post-body {
  margin: 30px auto;
}

.post-area .post-body > * {
  margin-bottom: 1em;
}

.post-area .post-body > *:last-child {
  margin-bottom: 0;
}

.post-area .post-body .post-body-inner {
  padding-left: 1em;
}

.post-area .post-body .post-body-inner > * {
  margin-bottom: 1em;
}

.post-area .post-body .post-body-inner > *:last-child {
  margin-bottom: 0;
}

.post-area .post-body ul:not([class]) {
  list-style: disc;
  padding-left: 1.5em;
}

.post-area .post-body ol:not([class]) {
  list-style: decimal;
  padding-left: 2em;
}

.post-area .post-body a {
  color: #005881 !important;
  text-decoration: underline;
}
.post-area .post-body a:hover {
  opacity: 0.8;
}
.post-area .post-body table tbody tr th, .post-area .post-body table tbody tr td {
  border: 1px solid rgb(216, 216, 217);
  padding: 6px 4px;
  vertical-align: middle;
}

.post-area .post-detail {
  overflow: hidden;
  position: relative;
  _zoom: 1;
  border-bottom: 1px dotted #cdcdcd;
  margin-bottom: 30px;
}

.post-area .post-detail > dt {
  width: 150px;
  padding: 14px 10px 14px 0;
  color: #333333;
  vertical-align: top;
  font-weight: bold;
  white-space: nowrap;
  border-top: 1px dotted #cdcdcd;
  float: left;
}

.post-area .post-detail > dd {
  padding: 14px 10px 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px dotted #cdcdcd;
}

.post-area .post-detail > dd > div,
.post-area .post-detail > dd p,
.post-area .post-detail > dd ul,
.post-area .post-detail > dd ol,
.post-area .post-detail > dd dl {
  margin-top: 1em;
}

.post-area .post-detail > dd > div:first-child,
.post-area .post-detail > dd p:first-child,
.post-area .post-detail > dd ul:first-child,
.post-area .post-detail > dd ol:first-child,
.post-area .post-detail > dd dl:first-child {
  margin-top: 0;
}

.post-area .post-detail > dd.date > *,
.post-area .post-detail > dd.price > * {
  margin-top: 0;
}

.post-area .post-desc-list > dt {
  font-weight: bold;
  margin-bottom: 5px;
}

.post-area .post-desc-list > dd {
  margin-bottom: 1.5em;
}

.post-area .post-desc-list > dd > *:not(br, span) {
  margin-bottom: 1em;
}

.post-area .post-desc-list > dd > *:not(br, span):last-child {
  margin-bottom: 0;
}

.post-area .post-desc-list > *:last-child {
  margin-bottom: 0;
}

.post-area .post-image-text-box {
  display: flex;
  justify-content: flex-start;
}

.post-area .post-image-text-box.reverse-position {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.post-area .post-image-text-box.reverse-position > .image-area {
  margin-left: 3%;
  margin-right: 0;
}

.post-area .post-image-text-box > .image-area {
  max-width: 42%;
  margin-right: 3%;
  flex: none;
}

.post-area .post-image-text-box > .image-area img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.post-area .post-image-text-box > .text-area {
  flex: 0 1 auto;
}

@media all and (-ms-high-contrast: none) {
  .post-area .post-image img,
  .post-area .post-images img {
    width: 100%;
    max-width: none;
  }
}
@media all and (max-width: 767px) {
  .post-area .post-flyer-image img {
    width: 80%;
  }
  .post-area .post-detail > dt {
    width: 100%;
    float: none;
    padding: 15px 10px 5px;
  }
  .post-area .post-detail > dd {
    padding: 0 15px 15px;
    background: none;
    border: none;
  }
  .post-area .post-image-text-box {
    display: block;
  }
  .post-area .post-image-text-box.reverse-position > .image-area {
    margin: 0 0 0.5em;
  }
  .post-area .post-image-text-box > .image-area {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 0 0.5em;
  }
}
/*-------------------------------------------------------



----------------------------------------------------------*/
/* Additional code */
.page-image {
  text-align: center;
  margin: 10px auto;
}

.page-image img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.page-image .page-image-caption {
  text-align: center;
  margin-top: 5px;
  font-size: 1.2rem;
}

.page-btn {
  max-width: 480px;
  margin: 20px auto;
}

.page-btn.full-width {
  width: 100%;
  max-width: none;
}

.page-btn a {
  color: #ffffff;
  background-color: #80b62f;
  width: 100%;
  display: block;
  padding: 15px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}

.page-btn a:hover {
  opacity: 0.8;
}

/*-------------------------------------------------------



----------------------------------------------------------*/
#postEvent.post-area .common-ttl {
  display: block;
}

#postEvent.post-area .common-ttl > .event-copy {
  font-size: 0.9em;
  display: block;
}

#postEvent.post-area .post-image img {
  width: 100%;
  max-width: 400px;
}

#postEvent.post-area .post-images img {
  max-height: 300px;
}

#postEvent.post-area .reserve-btn {
  margin-top: 10px;
}

#postEvent.post-area .reserve-btn > a {
  display: inline-block;
  color: #ffffff;
  background-color: #80b62f;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  line-height: 48px;
  padding: 0 40px 0 15px;
  border-radius: 5px;
}

@media all and (max-width: 767px) {
  #postEvent.post-area .post-image img {
    width: 80%;
  }
  #postEvent.post-area .reserve-btn > a {
    display: block;
    font-size: 12px;
    line-height: 42px;
  }
}
/* イベント関係 */
.facility-item {
  display: flex;
  justify-content: flex-start;
}

.facility-item > .facility-image-area {
  max-width: 48%;
  margin-right: 2%;
  flex: none;
}

.facility-item > .facility-image-area img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.facility-item > .facility-image-area .facility-image {
  width: 100%;
}

.facility-item > .facility-image-area .facility-image .facility-image-caption {
  margin-top: 5px;
  font-size: 1.2rem;
  text-align: center;
}

.facility-item > .facility-image-area .facility-images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.facility-item > .facility-image-area .facility-images > * {
  max-width: 49%;
  flex: none;
}

.facility-item > .facility-image-area .facility-images > * + * {
  margin-left: 2%;
}

.facility-item > .facility-image-area .facility-images > *:nth-child(n+3) {
  margin-top: 10px;
}

.facility-item > .facility-image-area .facility-images > *:nth-child(2n+1) {
  margin-left: 0;
}

.facility-item > .facility-info-area {
  flex: 0 1 auto;
}

.facility-item > .facility-info-area > * {
  margin-bottom: 15px;
}

.facility-item > .facility-info-area > *:last-child {
  margin-bottom: 0;
}

.facility-item > .facility-info-area .facility-detail-btn {
  display: inline-block;
  margin: 10px 0 0;
  padding: 0 20px;
  width: 180px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  border-radius: 20px;
  color: #ffffff;
  background-color: #80b62f;
}

.facility-item > .facility-info-area .facility-detail-btn:hover {
  opacity: 0.8;
}

@media all and (max-width: 767px) {
  .facility-item {
    display: block;
  }
  .facility-item > .facility-image-area {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 0 15px;
  }
  .facility-item > .facility-image-area .facility-image .facility-image-caption {
    text-align: left;
  }
  .facility-item > .facility-info-area .facility-detail-btn {
    width: 100%;
  }
}
#newsletter .page-image {
  max-width: 300px;
}

#newsletter .page-image .page-image-caption {
  font-size: inherit;
}

@media all and (max-width: 767px) {
  #newsletter .page-image {
    width: 80%;
  }
}
/*-------------------------------------------------------



----------------------------------------------------------*/
.menu-area {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.menu-area > .menu-item {
  /*  display: flex;*/
  margin: 0 auto;
}

.menu-area > .menu-item + * {
  width: 49%;
  margin-left: 2%;
  flex: none;
}

.menu-area > .menu-item img {
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  border: 1px solid #000000;
}

@media all and (max-width: 767px) {
  .menu-area {
    display: block;
  }
  .menu-area > .menu-item {
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu-area > .menu-item + * {
    margin: 15px auto 0;
  }
  .menu-area > .menu-item img {
    padding: 10px;
    max-width: 100%;
  }
}
/* facility images */
#facility-images.slick-initialized {
  width: 100%;
  max-width: 680px;
  padding-bottom: 0;
  margin: 20px auto;
}

#facility-images.slick-initialized img {
  width: 100%;
  height: auto;
}

/* grandhall */
#post-grandhall .post-detail > dt {
  width: 210px;
}

/* harmonyhall */
#post-harmonyhall .post-detail > dt {
  width: 160px;
}

/*-------------------------------------------------------

タイトル

----------------------------------------------------------*/
.ttl-L {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}

.ttl-L span {
  display: block;
  font-size: 1.6rem;
  color: #80b62f;
  font-weight: bold;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .ttl-L {
    font-size: 3rem;
  }
}
.ttl-M {
  font-size: 2.6rem;
  padding-bottom: 20px;
  position: relative;
}

.ttl-M::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 20%;
  background: #80b62f;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.ttl-M::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #ddd;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  .ttl-M {
    font-size: 2.4rem;
  }
}
.ttl-S {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px;
  width: 100%;
  background: #b6d687;
  position: relative;
  color: #333;
}

.ttl-XS {
  font-size: 1.8rem;
  /*  display: inline;*/
  padding-left: 10px;
  font-weight: bold;
  position: relative;
  color: #80b62f;
}

.ttl-XS::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background: #80b62f;
  border-radius: 2px;
}

@media only screen and (max-width: 767px) {
  .ttl-XS {
    font-size: 1.6rem;
  }
}
.st-text {
  font-size: 1.8rem;
  color: #80b62f;
}

/*-------------------------------------------------------

outer

----------------------------------------------------------*/
.container-fixed {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  padding-left: 4%;
  padding-right: 4%;
}

.container-fluid {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.outer-box-L {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .outer-box-L {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
.outer-box-M {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .outer-box-M {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.outer-box-S {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .outer-box-S {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.outer-box-XS {
  padding-top: 20px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .outer-box-XS {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.outer-pt-L {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .outer-pt-L {
    padding-top: 90px;
  }
}
.outer-pt-M {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .outer-pt-M {
    padding-top: 40px;
  }
}
.outer-pt-S {
  padding-top: 40px;
}

@media only screen and (max-width: 767px) {
  .outer-pt-S {
    padding-top: 30px;
  }
}
.outer-pt-XS {
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .outer-pt-XS {
    padding-top: 20px;
  }
}
.outer-mt-L {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .outer-mt-L {
    margin-top: 90px;
  }
}
.outer-mt-M {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .outer-mt-M {
    margin-top: 40px;
  }
}
.outer-mt-S {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .outer-mt-S {
    margin-top: 30px;
  }
}
.outer-mt-XS {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .outer-mt-XS {
    padding-top: 20px;
  }
}
.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .mt-1-sp {
    margin-top: 5px;
  }
  .mt-2-sp {
    margin-top: 15px;
  }
}
.mx-auto {
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

/*-------------------------------------------------------

グリッド

----------------------------------------------------------*/
.grid-full {
  width: 100%;
}

.grid-half {
  width: calc(50% - 15px);
}

@media only screen and (max-width: 767px) {
  .grid-half {
    width: 100%;
  }
}
.grid-8-12 {
  width: calc(66.6666666667% - 30px);
}

@media only screen and (max-width: 767px) {
  .grid-8-12 {
    width: 100%;
  }
}
.grid-4-12 {
  width: calc(33.3333333333% - 30px);
}

@media only screen and (max-width: 767px) {
  .grid-4-12 {
    width: 100%;
  }
}
.column-3-2::after {
  content: "";
  display: block;
  width: 32%;
}

.column-3-2 > * {
  width: 32%;
  margin-top: 20px;
}

.column-3-2 > *:nth-child(1),
.column-3-2 > *:nth-child(2),
.column-3-2 > *:nth-child(3) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .column-3-2 > * {
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .column-3-2 > *:nth-child(3) {
    margin-top: 10px;
  }
}
.column-3-1::after {
  content: "";
  display: block;
  width: 32%;
}

.column-3-1 > * {
  width: 32%;
  margin-top: 20px;
}

.column-3-1 > *:nth-child(1),
.column-3-1 > *:nth-child(2),
.column-3-1 > *:nth-child(3) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .column-3-1 > * {
    width: 100%;
    margin-top: 20px;
  }
  .column-3-1 > *:nth-child(2),
  .column-3-1 > *:nth-child(3) {
    margin-top: 20px;
  }
}
.column-2-1 > * {
  width: calc(50% - 15px);
  margin-top: 30px;
}

.column-2-1 > *:nth-child(1),
.column-2-1 > *:nth-child(2) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .column-2-1 > * {
    width: 100%;
    margin-top: 30px;
  }
  .column-2-1 > *:nth-child(2) {
    margin-top: 30px;
  }
}
/*-------------------------------------------------------

フレックス

----------------------------------------------------------*/
.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-start-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.flex-between-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-between-wrapreverse {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
}

/*-------------------------------------------------------

tableレイアウト

----------------------------------------------------------*/
.table-box {
  overflow: auto;
  overflow-y: hidden;
}

.table-layout-1 {
  width: 100%;
}

.table-layout-1 tr th,
.table-layout-1 tr td {
  margin-top: 10px;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .table-layout-1 tr th,
  .table-layout-1 tr td {
    padding: 5px;
  }
}
.table-layout-1 tr th {
  width: 35%;
  text-align: left;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .table-layout-1 tr th {
    width: 50%;
  }
}
.table-layout-1 tr td {
  border-left: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .table-layout-1 tr td {
    border-left: none;
  }
}
.table-layout-1 tr:first-child td {
  font-weight: bold;
}

.table-layout-2 {
  width: 100%;
  border: 1px solid #eee;
}

@media only screen and (max-width: 767px) {
  .table-layout-2 {
    width: 600px;
  }
}
.table-layout-2 tr th,
.table-layout-2 tr td {
  margin-top: 10px;
  padding: 15px;
  border-left: 1px solid #ddd;
}

.table-layout-2 tr th {
  width: auto;
  text-align: left;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .table-layout-2 tr th {
    width: auto;
  }
}
.table-layout-2 tr td {
  text-align: center;
  vertical-align: middle;
}

.table-layout-2 tr:nth-child(odd) {
  background: #fafafa;
}

.table-layout-2 tr:first-child th,
.table-layout-2 tr:first-child td {
  padding: 10px 15px;
  background: #80b62f;
  color: #fff;
  font-weight: bold;
}

.table-layout-3 {
  width: 100%;
  border: 1px solid #eee;
}

.table-layout-3 tr th,
.table-layout-3 tr td {
  margin-top: 10px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.table-layout-3 tr th {
  width: 35%;
  background: #80b62f;
  color: #fff;
  text-align: left;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .table-layout-3 tr th {
    width: 20%;
  }
}
.table-layout-3 tr td {
  text-align: center;
  vertical-align: middle;
}

.table-layout-4 {
  width: 100%;
  border: 1px solid #eee;
}

@media only screen and (max-width: 767px) {
  .table-layout-4 {
    width: 600px;
  }
}
.table-layout-4 tr th,
.table-layout-4 tr td {
  margin-top: 10px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.table-layout-4 tr th {
  width: 35%;
  background: #80b62f;
  color: #fff;
  text-align: left;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .table-layout-4 tr th {
    width: 20%;
  }
}
.table-layout-4 tr td {
  text-align: center;
  vertical-align: middle;
}

/*-------------------------------------------------------

矢印・ボタン・リンク

----------------------------------------------------------*/
.common-arrow {
  position: relative;
  padding-right: 20px;
}

.common-arrow::after {
  content: "";
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 6px;
  border-top: solid 2px #80b62f;
  border-right: solid 2px #80b62f;
  transform: rotate(45deg);
}

.link-text-1 {
  transition-duration: 0.1s;
}

.link-text-1:hover {
  color: #80b62f;
}

.link-text-2 {
  transition-duration: 0.1s;
  text-decoration: underline;
}

.link-text-2:hover {
  color: #80b62f;
}

.common-btn-1 {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  text-align: center;
  background-color: #80b62f;
  border: 1px solid #80b62f;
  font-size: 16px;
  color: #80b62f;
  text-decoration: none;
  font-weight: bold;
  line-height: 50px;
  border-radius: 4px;
  position: relative;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .common-btn-1 {
    max-width: 100%;
  }
}
.common-btn-1 span {
  position: relative;
  z-index: 1;
}

.common-btn-1::before,
.common-btn-1::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.2s;
}

.common-btn-1::before {
  left: 0;
}

.common-btn-1::after {
  right: 0;
}

.common-btn-1:hover {
  color: #fff;
}

.common-btn-1:hover:before,
.common-btn-1:hover:after {
  width: 0;
  background-color: #fff;
}

.common-btn-2 {
  max-width: 300px;
  width: 100%;
  background: #80b62f;
  color: #fff;
  display: block;
  transition-duration: 0.1s;
  margin: 0 auto;
  border-radius: 25px;
  box-sizing: border-box;
  border: 1px solid #80b62f;
}

@media only screen and (max-width: 767px) {
  .common-btn-2 {
    max-width: 100%;
  }
}
.common-btn-2 span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
  position: relative;
}

.common-btn-2 span::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.common-btn-2:hover {
  background: #fff;
}

.common-btn-2:hover span {
  color: #80b62f;
}

.common-btn-2:hover span::after {
  border-top: solid 2px #80b62f;
  border-right: solid 2px #80b62f;
}

.common-btn-3 {
  max-width: 300px;
  width: 100%;
  border: 1px solid #80b62f;
  color: #80b62f;
  display: block;
  transition-duration: 0.1s;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .common-btn-3 {
    max-width: 100%;
  }
}
.common-btn-3 span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
  position: relative;
}

.common-btn-3 span::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url("../images/icon_pdf.png") no-repeat center center;
  background-size: contain;
}

.common-btn-3:hover {
  opacity: 0.8;
}

.anchor-btn li {
  border: 1px solid #80b62f;
  display: block;
  transition-duration: 0.1s;
  background: #80b62f;
  border-radius: 25px;
}

@media only screen and (max-width: 767px) {
  .anchor-btn li {
    width: 100%;
  }
}
.anchor-btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
  position: relative;
  color: #fff;
}

.anchor-btn li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
}

.anchor-btn li:hover {
  background: #fff;
}

.anchor-btn li:hover a {
  color: #80b62f;
}

.anchor-btn li:hover a::after {
  border-top: solid 2px #80b62f;
  border-right: solid 2px #80b62f;
}

.yoyaku-btn {
  margin-top: 50px;
}
.yoyaku-btn a {
  display: flex;
  justify-content: center;
  border-radius: 6px;
  background-color: #B10808;
  color: #fff;
  max-width: 387px;
  width: 100%;
  text-align: center;
  align-items: center;
  padding: 26px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  gap: 14px;
  position: relative;
}
.yoyaku-btn a:hover {
  opacity: 0.8;
}
.yoyaku-btn a span {
  display: block;
  font-size: 14px;
}
.yoyaku-btn a[target=_blank]::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath id='パス_3' data-name='パス 3' d='M11.486,2.99a.5.5,0,0,0-.056,0H9a.5.5,0,1,0,0,1h1.292L5.645,8.638a.5.5,0,1,0,.707.707L11,4.7V5.993a.5.5,0,1,0,1,0V3.558a.5.5,0,0,0-.51-.568ZM4,2.995a1.007,1.007,0,0,0-1,1v7a1.007,1.007,0,0,0,1,1h7a1.007,1.007,0,0,0,1-1v-3a.5.5,0,1,0-1,0v3H4v-7H7a.5.5,0,1,0,0-1Z' transform='translate(-3 -2.99)' fill='%23fff'/%3E%3C/svg%3E%0A");
  padding-left: 0.3em;
  position: absolute;
  right: 7px;
  bottom: 2px;
}

.find-item-link {
  cursor: pointer;
}

.arrow-down {
  margin-bottom: 60px;
  position: relative;
}

.arrow-down::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 100%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 22px;
  border-color: #80b62f transparent transparent transparent;
}

.arrow-center-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .arrow-center-1 {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.arrow-center-1::before {
  content: "";
  order: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #80b62f;
  margin: 20px;
}

@media only screen and (max-width: 767px) {
  .arrow-center-1::before {
    transform: rotate(90deg);
  }
}
.arrow-center-1 > *:nth-child(1),
.arrow-center-1 > *:nth-child(2) {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .arrow-center-1 > *:nth-child(1),
  .arrow-center-1 > *:nth-child(2) {
    width: 100%;
  }
}
.arrow-center-1 > *:nth-child(1) {
  order: 1;
}

.arrow-center-1 > *:nth-child(2) {
  order: 3;
}

.arrow-center-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.arrow-center-2::before {
  content: "";
  order: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #80b62f;
  margin: 0 auto;
}

.arrow-center-2::after {
  content: "";
  order: 4;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #80b62f;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .arrow-center-2::before,
  .arrow-center-2::after {
    transform: rotate(90deg);
  }
}
.arrow-center-2 > *:nth-child(1),
.arrow-center-2 > *:nth-child(2),
.arrow-center-2 > *:nth-child(3) {
  width: 29%;
}

@media only screen and (max-width: 767px) {
  .arrow-center-2 > *:nth-child(1),
  .arrow-center-2 > *:nth-child(2),
  .arrow-center-2 > *:nth-child(3) {
    width: 100%;
  }
}
.arrow-center-2 > *:nth-child(1) {
  order: 1;
}

.arrow-center-2 > *:nth-child(2) {
  order: 3;
}

.arrow-center-2 > *:nth-child(3) {
  order: 5;
}

.arrow-center-2 > *:nth-child(4) {
  order: 6;
}

/*-------------------------------------------------------

リストスタイル・行間

----------------------------------------------------------*/
.text-box > * + * {
  margin-top: 10px;
}

.disk-list {
  padding-left: 1em;
}

.disk-list li {
  position: relative;
  display: block;
}

.disk-list li::before {
  position: absolute;
  content: "・";
  color: #333;
  top: 0;
  left: -20px;
}

.square-list {
  padding-left: 1em;
}

.square-list li {
  position: relative;
  display: block;
}

.square-list li::before {
  position: absolute;
  content: "■";
  color: #333;
  top: 0;
  left: -20px;
}

.note-list {
  padding-left: 1em;
  position: relative;
  display: block;
}

.note-list::before {
  position: absolute;
  content: "※";
  color: #333;
  top: 0;
  left: 0;
}

.notecount-list {
  counter-reset: note;
  /* 数字のカウントをリセットする */
}

.notecount-list li {
  position: relative;
  padding-left: 2em;
  display: block;
}

.notecount-list li::before {
  counter-increment: note;
  /* 任意の名前を付ける（もちろん英語で） */
  content: "※" counter(note);
  /* 名前を付けたカウンターをcontentで発動！ */
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
}

.number-list {
  counter-reset: note;
  /* 数字のカウントをリセットする */
}

.number-list > li {
  position: relative;
  padding-left: 1.2em;
  display: block;
}

.number-list > li::before {
  counter-increment: note;
  /* 任意の名前を付ける（もちろん英語で） */
  content: counter(note) ".";
  /* 名前を付けたカウンターをcontentで発動！ */
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
}

.number-list .brackets-limit-over {
  padding-left: 2em;
}

.bracketsw-list {
  counter-reset: note;
  /* 数字のカウントをリセットする */
}

.bracketsw-list > li {
  position: relative;
  padding-left: 1.4em;
  display: block;
}

.bracketsw-list > li::before {
  counter-increment: note;
  /* 任意の名前を付ける（もちろん英語で） */
  content: "(" counter(note) ")";
  /* 名前を付けたカウンターをcontentで発動！ */
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
}

.checkmark {
  padding-left: 2em;
  position: relative;
}

.checkmark::before,
.checkmark::after {
  content: "";
  display: block;
  position: absolute;
}

.checkmark::before {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #000000;
  left: 0;
  top: 2px;
}

.checkmark::after {
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  width: 18px;
  height: 5px;
  transform: rotate(-45deg);
  left: 5px;
  top: 3px;
}

/*-------------------------------------------------------

サブメニュー 連番

----------------------------------------------------------*/
.g-menu__submenu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.g-menu__submenu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.g-menu__submenu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.g-menu__submenu-item:nth-child(4) {
  transition-delay: 0.4s;
}

.g-menu__submenu-item:nth-child(5) {
  transition-delay: 0.5s;
}

.g-menu__submenu-item:nth-child(6) {
  transition-delay: 0.6s;
}

/*2020/04/21/修正*/
.event-top .event-item .event-title {
  font-size: 1.2em;
}

@media (max-width: 767px) {
  .event-top .event-item .event-title {
    font-size: 1.4em;
  }
}
.event-top .event-item .event-summary .event-thumb {
  width: 40%;
  margin-right: 5%;
}

.event-top .event-item .event-summary .event-text-area {
  font-size: 1.4rem;
}

.event-top .event-item .event-detail-btn {
  margin: 20px auto 0;
}

.event-top .event-item .event-summary .event-text-area .event-info > dt {
  float: none;
  margin-right: 5px;
}

/*-------------------------------------------------------

css 追記

----------------------------------------------------------*/
/*2020/05/11/追記*/
.planetarium_gallery_img img {
  width: 340px;
  height: 230px;
}

@media only screen and (max-width: 767px) {
  .planetarium_gallery_img img {
    width: 100%;
    height: auto;
  }
}
.pb-s {
  padding-bottom: 40px;
}

/*2020/05/12/追記*/
.text-center {
  text-align: center;
}

/*2020/05/19/追記 天文ギャラリー　ページネイション*/
.pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-item .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #80b62f;
  background-color: #fff;
  border: 1px solid #80b62f;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #80b62f;
  border-color: #80b62f;
}

/*2020/05/20/追記*/
.flame-img img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  border: 1px solid #000000;
}

.mb-2 {
  margin-bottom: 20px;
}

/*2020/05/26/追記*/
.header__logo img {
  width: 100%;
  max-width: initial;
  height: auto;
}

/*2020/05/27/追記*/
.br-pc {
  display: block;
}

@media only screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}
.content-wrap_top {
  margin: 30px auto 150px !important;
}

/*2020/07/07/追記*/
.profile-name p {
  display: inline-block;
}

.grecaptcha-badge {
  visibility: hidden;
}

.post-taxonomies {
  margin-bottom: 50px !important;
}

.taxonomy-name {
  display: inline-block;
  padding: 1px 8px 2px;
  font-size: 12px;
  color: white;
  text-align: center;
  min-width: 62px;
}

/* タクソノミーのスラッグごとのスタイル */
.news-category-common {
  background-color: #0477BE;
}

.news-category-info_magazine {
  background-color: #B11C07;
}

/*-------------------------------------------------------

モジュール

----------------------------------------------------------*/
.text-box {
  font-size: 16px;
  font-size: 1.14286em;
}
.text-box > * + * {
  margin-top: 30px;
}
.text-box ul {
  list-style: none;
}
.text-box ul li {
  text-indent: -0.8em;
  padding-left: 0.8em;
}
.text-box ul li::before {
  content: "・";
  padding-right: 4px;
}
.text-box ul li + li {
  margin-top: 4px;
}
.text-box dl dt::before {
  content: "〇";
  margin-right: 3px;
}
.text-box dl dd {
  margin-top: 8px;
  padding-left: 20px;
}
.text-box dl dd + dt {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .text-box dl dd + dt {
    margin-top: 20px;
  }
}
.text-box + .text-box {
  margin-top: 20px;
}

a[target=_blank]:hover {
  opacity: 0.8;
}

.link-box {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .link-box {
    margin-top: 30px;
  }
}

.table_template01 table {
  border-collapse: collapse;
  font-size: 1.14286em;
}
.table_template01 table thead:after {
  content: "";
  width: 100%;
  padding: 24px 0 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  .table_template01 table thead:after {
    padding: 20px 0 0;
  }
}
.table_template01 table thead tr th {
  font-weight: 700;
  background-color: #0477BE;
  color: #fff;
  padding: 10px;
  text-align: left;
}
.table_template01 table tbody tr th {
  font-weight: 700;
  color: #0477BE;
  width: 30%;
}
.table_template01 table tbody tr td {
  font-weight: 400;
  width: 70%;
}
.table_template01 table tbody tr th, .table_template01 table tbody tr td {
  border: 1px solid rgb(216, 216, 217);
  padding: 18px;
}

.table_template02 table {
  border-collapse: collapse;
  font-size: 1.14286em;
  width: 100%;
}
.table_template02 table tbody tr th {
  font-weight: 700;
  background-color: #EEEEEE;
  color: #333333;
  width: 30%;
}
.table_template02 table tbody tr td {
  font-weight: 400;
  width: 70%;
}
.table_template02 table tbody tr td > * {
  margin-top: 8px;
}
.table_template02 table tbody tr td > *:first-child {
  margin-top: 0;
}
.table_template02 table tbody tr td ul {
  list-style: none;
}
.table_template02 table tbody tr td ul li {
  text-indent: -0.8em;
  padding-left: 0.8em;
}
.table_template02 table tbody tr td ul li::before {
  content: "・";
  padding-right: 4px;
}
.table_template02 table tbody tr td ul li + li {
  margin-top: 4px;
}
.table_template02 table tbody tr td ol {
  list-style: none;
  counter-reset: li_count;
}
.table_template02 table tbody tr td ol li {
  position: relative;
  text-indent: 0em;
  padding-left: 1.8em;
}
.table_template02 table tbody tr td ol li::before {
  counter-increment: li_count;
  content: counter(li_count) ".";
  position: absolute;
  left: 2px;
}
.table_template02 table tbody tr td ol li + li {
  margin-top: 4px;
}
.table_template02 table tbody tr td .m_top {
  margin-top: 24px;
}
.table_template02 table tbody tr td span {
  font-weight: 700;
}
.table_template02 table tbody tr td .flex-img {
  display: flex;
  margin: 14px 0;
}
@media only screen and (max-width: 767px) {
  .table_template02 table tbody tr td .flex-img {
    flex-direction: column;
    gap: 10px;
  }
}
.table_template02 table tbody tr th, .table_template02 table tbody tr td {
  border: 1px solid rgb(216, 216, 217);
  padding: 18px;
}

.table_template03 {
  overflow: auto;
}
.table_template03 > * + * {
  margin-top: 20px;
}
.table_template03 table {
  border-collapse: collapse;
  font-size: 1em;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .table_template03 table {
    font-size: 14px;
  }
}
.table_template03 table.custum-width_kihon {
  min-width: 710px;
}
.table_template03 table.custum-width_kihon tbody tr:nth-child(1) th:nth-child(1) {
  width: 33px;
}
.table_template03 table.custum-width_kihon tbody tr:nth-child(1) th:nth-child(2) {
  min-width: 60px;
}
.table_template03 table.custum-width_kihon tbody tr td {
  width: calc((100% - 160px) / 6);
}
.table_template03 table.custum-width_mainhall thead tr th {
  width: 50%;
}
.table_template03 table.custum-width_mainhall tbody tr:nth-child(1) th:first-child {
  width: 32.5%;
}
.table_template03 table.custum-width_fuzoku {
  min-width: 710px;
}
.table_template03 table.custum-width_fuzoku tbody tr:nth-child(1) th:nth-child(1) {
  width: 33px;
}
.table_template03 table.custum-width_fuzoku tbody tr:nth-child(1) th:nth-child(2) {
  width: 100px;
}
.table_template03 table.custum-width_fuzoku tbody td.price {
  width: 80px !important;
}
.table_template03 table.custum-width_fuzoku tbody td:last-child {
  width: 160px;
}
.table_template03 table caption {
  text-align: right;
  margin-bottom: 6px;
}
.table_template03 table thead {
  color: #fff;
}
.table_template03 table thead tr > *:nth-child(2) {
  width: calc(100% - 193px);
}
.table_template03 table thead tr > *:nth-child(3),
.table_template03 table thead tr *:nth-child(4) {
  width: 80px;
}
.table_template03 table thead tr th {
  border: 1px solid rgb(216, 216, 217);
  background-color: #0477BE;
  padding: 6px 4px;
  vertical-align: middle;
}
.table_template03 table thead tr th.sub-th {
  background-color: #E3F3FF;
  color: #333333;
}
.table_template03 table thead tr th.sub-th-2 {
  background-color: #EEEEEE;
  color: #333333;
  font-weight: 400;
  text-align: left;
}
.table_template03 table tbody tr th {
  font-weight: 700;
  background-color: #0477BE;
  color: #fff;
}
.table_template03 table tbody tr th.sub-th {
  background-color: #E3F3FF;
  color: #333333;
}
.table_template03 table tbody tr th.sub-th-2 {
  background-color: #EEEEEE;
  color: #333333;
  font-weight: 400;
  text-align: left;
}
.table_template03 table tbody tr td {
  font-weight: 400;
}
.table_template03 table tbody tr td.price {
  text-align: right;
}
.table_template03 table tbody tr th, .table_template03 table tbody tr td {
  border: 1px solid rgb(216, 216, 217);
  padding: 6px 4px;
  vertical-align: middle;
}
.table_template03 ol {
  list-style: none;
  counter-reset: li_count;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .table_template03 ol {
    margin-top: 14px;
  }
}
.table_template03 ol li {
  position: relative;
  text-indent: 0em;
  padding-left: 1.8em;
}
.table_template03 ol li::before {
  counter-increment: li_count;
  content: counter(li_count) ".";
  position: absolute;
  left: 2px;
}
.table_template03 ol li + li {
  margin-top: 4px;
}

.table_template04 > * + * {
  margin-top: 20px;
}
.table_template04 table {
  border-collapse: collapse;
  font-size: 1em;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .table_template04 table {
    font-size: 14px;
  }
}
.table_template04 table thead {
  color: #fff;
}
.table_template04 table thead tr th {
  border: 1px solid rgb(216, 216, 217);
  background-color: #0477BE;
  padding: 6px 4px;
}
.table_template04 table tbody tr th {
  font-weight: 700;
  background-color: #EEEEEE;
  color: #333333;
}
.table_template04 table tbody tr td {
  font-weight: 400;
}
.table_template04 table tbody tr th, .table_template04 table tbody tr td {
  border: 1px solid rgb(216, 216, 217);
  padding: 6px 4px;
  width: 33.3333333333%;
  vertical-align: middle;
}
.table_template04 ol {
  list-style: none;
  counter-reset: li_count;
}
.table_template04 ol li {
  position: relative;
  text-indent: 0em;
  padding-left: 1.8em;
}
.table_template04 ol li::before {
  counter-increment: li_count;
  content: counter(li_count) ".";
  position: absolute;
  left: 2px;
}
.table_template04 ol li + li {
  margin-top: 4px;
}

.pdf-note {
  background-color: #EEEEEE;
  margin-top: 60px;
}
.pdf-note__wrap {
  display: flex;
  gap: 18px;
  padding: 18px 30px;
}
@media only screen and (max-width: 767px) {
  .pdf-note__wrap {
    flex-direction: column;
  }
}
.pdf-note__wrap p {
  width: 76%;
}
@media only screen and (max-width: 767px) {
  .pdf-note__wrap p {
    width: 100%;
  }
}
.pdf-note__wrap a {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  .pdf-note__wrap a {
    width: 160px;
    margin: 0 auto;
  }
}
.pdf-note__wrap a img {
  width: 100%;
}
.pdf-note a[target=_blank]::after {
  display: none;
}

/*-------------------------------------------------------

ビッグボタン

----------------------------------------------------------*/
#index-nav {
  max-width: 980px;
  width: 94%;
  margin: 60px auto;
}
@media (max-width: 767px) {
  #index-nav {
    width: 100%;
    margin: 40px auto 50px;
  }
}
#index-nav #index-nav-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 767px) {
  #index-nav #index-nav-list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }
}
@media (max-width: 519px) {
  #index-nav #index-nav-list {
    justify-content: center;
  }
}
#index-nav #index-nav-list > li {
  flex: 0 1 auto;
}
@media (max-width: 767px) {
  #index-nav #index-nav-list > li {
    width: 100%;
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  #index-nav #index-nav-list > li:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  #index-nav #index-nav-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
}
#index-nav #index-nav-list > li img {
  width: 100%;
}
#index-nav #index-nav-list > li + li {
  /*margin-left: 2%;*/
}

/*-------------------------------------------------------

equipment ページ

----------------------------------------------------------*/
.equipment-wrap__flex {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .equipment-wrap__flex {
    flex-direction: column;
    gap: 20px;
  }
}
.equipment-wrap__flex > * {
  flex: 1;
}
@media (max-width: 767px) {
  .equipment-wrap__flex > *:nth-child(1) {
    order: 2;
  }
}
@media (max-width: 767px) {
  .equipment-wrap__flex > *:nth-child(2) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .equipment-wrap__flex.reverse > *:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .equipment-wrap__flex.reverse > *:nth-child(2) {
    order: 2;
  }
}
.equipment-wrap__flex figure img {
  width: 100%;
}
.equipment-wrap .table_template02 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .equipment-wrap .table_template02 {
    margin-top: 20px;
  }
}
.equipment-wrap .reverse .table_template02 {
  margin-top: 0;
}

.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nav-pages {
  text-align: center;
}

/* ページ番号のデザイン */
.nav-pages .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #f0f0f0;
  text-decoration: none;
  color: #333;
}

.nav-pages .page-numbers.current {
  background: #0073aa;
  color: #fff;
  font-weight: bold;
}

/* スマホ用の前後リンクを非表示 */
.sp-only {
  display: none;
}

/* PC用のデザイン */
@media (min-width: 768px) {
  .bottom-nav {
    flex-direction: row;
  }
  .nav-controls {
    display: none; /* スマホ用の前後リンクを非表示 */
  }
}
/* スマホ用のデザイン */
@media (max-width: 767px) {
  .bottom-nav {
    flex-direction: column;
    align-items: center;
  }
  .nav-pages {
    order: 1; /* ページ番号を上に */
  }
  .sp-only {
    display: flex; /* スマホ時に前後リンクを表示 */
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
  }
  .pc-only {
    display: none; /* PC専用の前後リンクを非表示 */
  }
}/*# sourceMappingURL=common.css.map */