@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  color: #141414;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
}
body {
  font-size: 1.8rem;
}
p {
  font-size: 1.8rem;
}
* + p {
  margin-top: 10px;
}
.l-container > p {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #141414;
}
a:hover {
  opacity: 0.6;
}
ul {
  list-style: none;
  padding: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
@media (min-width:1px) and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc-none {
    display: none !important;
  }
}

/* layout */
.l-content {
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
}
.content {
  background-color: #f6f6f6;
  padding: 60px 0 120px 0;
}
.l-container {
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* btn */
.btn {
  display: inline-block;
  padding: 21px 50px;
  border-radius: 100px;
  text-decoration: none;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  background-color: #141414;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
  min-width: 280px;
  transition: .4s ;
}
.btn::before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(/facilities/assets/images/icon_link-w.svg);
  width: 1em;
  height: 1em;
  background-size: 3em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 26px;
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.6;
}
.box + p > .btn {
  margin-top: 30px;
}
.btn-conversion {
  background-color: #fccf00;
  color: #141414;
}
.btn-conversion:hover {
  color: #141414;
  background-color: #ffe757;
}
.btn-conversion::before {
  background-image: url(/facilities/assets/images/icon_link-blk.svg);
}
.btn-calendar::before {
  display: none;
}
.btn-calendar::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 17px;
  background-size: 34px;
  background-image: url(/facilities/assets/images/icon_calendar.svg);
  background-position: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  border: none;
  position: static;
  margin-left: 8px;
  transform: translateY(2px);
}
.btn-external::before {
  width: 28px;
  height: 28px;
  background-size: 28px;
  background-image: url(/facilities/assets/images/icon_link-external-w.svg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  border: none;
  top: calc(50% - 13px);
  right: 22px;
}
.btn-print {
  background-color: #fff;
  color: #141414;
  min-width: 190px;
  font-size: 1.6rem;
  padding: 12px 40px 15px 22px;
  text-align: center;
}
.btn-print:hover {
  color: #141414;
  background-color: #fff;
  cursor: pointer;
}
.btn-print::before {
  display: none;
}
.btn-print span {
  position: relative;
}
.btn-print span::before,
.btn-print span::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 20px;
  background-size: 28px 30px;
  background-image: url(/facilities/assets/images/icon_link-pdf-blk.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  margin-left: 0.4em;
  transition: .4s;
  position: absolute;
  top: 3px;
  right: -24px;
}
.btn-disabled {
  background-color: #f0f0f0;
  color: #676767;
}
.btn-disabled::before {
  background-image: url(/facilities/assets/images/icon_link-gry.svg);
}
.btn-disabled:hover {
  opacity: 1;
  cursor: not-allowed;
  background-color: #f0f0f0;
  color: #676767;
  text-decoration: none;
}

/* checkbox */
input[type="checkbox"] {
  display:none;
}
.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 1.6em;
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox::before,
.checkbox::after {
  content: '';
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
}
.checkbox::before {
  background: #fff;
  border: 2px solid #676767;
  border-radius: 4px;
}
input:checked + .checkbox::before {
  border: 2px solid #fccf00;
}
input:checked + .checkbox::after {
  top: 0.4em;
  left: 0.3em;
  height: 0.4em;
  width: 0.7em;
  border-left: 3px solid #fccf00;
  border-bottom: 3px solid #fccf00;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* link */
.list {
  margin-top: 44px;
}
.list li {
  margin-top: 8px;
}
.link,
.link-external,
.link-pdf {
  display: inline-block;
  text-decoration: underline;
}
.link-underline {
  text-decoration: underline;
}
.link {
  position: relative;
}
.link::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  transform: translateY(2px);
  background-image: url(/facilities/assets/images/icon_link-blk.svg);
  width: 1em;
  height: 1em;
  background-size: 2.3em;
  background-position: center;
  background-repeat: no-repeat;
  position: static;
  margin-left: 0.6em;
}
.link-external::after,
.link-inline-external::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-image: url(/facilities/assets/images/icon_link-external-blk.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(2px);
  margin-left: 0.6em;
}
.link-pdf::after,
.link-inline-pdf::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-image: url(/facilities/assets/images/icon_link-pdf-blk.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(2px);
  margin-left: 0.6em;
}
.link-inline,
.link-inline-external,
.link-inline-pdf {
  text-decoration: underline;
}
.link-inline-external::after {
  margin: 0 0.4em 0 0.2em;
}
.link-inline-pdf::after {
  margin: 0 0.4em 0 0.2em;
}

/* box-anchor */
.box-anchor {
  display: block;
  border: 1px solid #f6f6f6;
  background-color: #fff;
  box-sizing: border-box;
  padding: 12px 60px 8px 80px;
  color: #141414;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
}
.box-anchor:first-of-type {
  border-radius: 12px 0 0 0;
}
.box-anchor:nth-of-type(2) {
  border-radius: 0 12px 0 0;
}
.box-anchor:nth-of-type(3) {
  border-radius: 0 0 0 12px;
}
.box-anchor:nth-of-type(4) {
  border-radius: 0 0 12px 0;
}
.box-anchor::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  transform: translateY(-3px);
  margin-right: 10px;
}
.box-anchor::after {
  content: '';
  display: inline-block;
  background-image: url(/facilities/assets/images/icon_link-blk.svg);
  width: 1em;
  height: 1em;
  background-size: 2.6em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 21px;
  top: calc(50% - 0.5em);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.box-anchor-train::before {
  background-image: url(/facilities/assets/images/icon_train.svg);
}
.box-anchor-car::before {
  background-image: url(/facilities/assets/images/icon_car.svg);
}
.box-anchor-bicycle::before {
  background-image: url(/facilities/assets/images/icon_bicycle.svg);
}

/* list */
.list-disc,
.list-decimal,
.list-notes {
  padding-left: 2rem;
  font-size: 1.4rem;
}
.list-notes > li {
  position: relative;
}
.list-notes > li::before {
  content: "※";
  display: inline-block;
  position: absolute;
  left: -2rem;
}
.list-disc {
  list-style: disc;
}
.list-disc li {
  margin-top: 8px;
  position: relative;
}
.list-line:not(:first-child) {
  margin-top: 10px;
}
.list-line li:not(:first-of-type) {
  border-top: 2px solid #f0f0f0;
  margin-top: 26px;
  padding-top: 25px;
}
.list-secondary {
  list-style: none;
  padding-left: 2rem;
  
}
.list-secondary li {
  margin-top: 8px;
  position: relative;
}
.list-secondary li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fccf00;
  transform: translateY(-2px);
  margin-right: 10px;
  position: absolute;
  top: 0.8em;
  left: -16px;
}
.list-decimal-circle-secondary {
  list-style: none;
  counter-reset: number;
  padding-left: 2.6em;
}
.list-decimal-circle-secondary li {
  position: relative;
}
.list-decimal-circle-secondary li:not(:first-of-type) {
  margin-top: 0.8em;
}
.list-decimal-circle-secondary li::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 2em;
  background-size: 2em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -2.6em;
  transform: translateY(-2px);
}
.list-decimal-circle-secondary li:first-of-type::before {
  background-image: url(/facilities/assets/images/icon_num_01.png);
}
.list-decimal-circle-secondary li:nth-of-type(2)::before {
  background-image: url(/facilities/assets/images/icon_num_02.png);
}
.list-decimal-circle-secondary li:nth-of-type(3)::before {
  background-image: url(/facilities/assets/images/icon_num_03.png);
}
.list-decimal-circle-secondary li:nth-of-type(4)::before {
  background-image: url(/facilities/assets/images/icon_num_04.png);
}

/* text */
.text-caption {
  font-size: 1.6rem;
  margin: 0;
}
.text-notes {
  font-size: 0.8em;
}
.text-notes::before {
  content: '※';
  display: inline-block;
  margin-right: .2em;
}

/* column */
.l-grids,
.l-grids-gap {
  display: flex;
  flex-wrap: wrap;
}
.l-grids-gap {
  margin: -20px;
}
.box .l-grids-gap {
  margin-top: 30px;
}
.box .l-grids-gap:first-child {
  margin-top: -20px;
}
.l-grids-gap [class^=l-grid-] {
  margin: 20px;
}

/* table */
.table {
  width: 100%;
  margin-top: 30px;
}
.table:first-child {
  margin-top: 0;
}
.table th, .table td {
  border: 2px solid #f6f6f6;
  vertical-align: middle;
  padding: 16px 20px;
}
.table th {
  background-color: #f0f0f0;
}

/* tab */
.tabs {
  display: flex;
}
.tab {
  min-width: 266px;
  border-radius: 6px 6px 0 0;
  background-color: #f0f0f0;
  font-weight: 500;
  padding: 11px 16px 7px;
  align-self: flex-end;
  margin-top: 8px;
  margin-right: 10px;
  text-align: center;
  transition: .4s;
}
.tab:hover {
  cursor: pointer;
  background-color: #141414;
  color: #fff;
}
.tab.is-active {
  background-color: #141414;
  color: #fff;
  padding: 15px 16px 11px;
  margin-top: 0;
}
.tabbox-content {
  border: 2px solid #141414;
  border-radius: 0 0 12px 12px;
  padding: 40px 40px;
  display: none;
}
.tabbox-content.is-active {
  display: block;
}
.tab-attention-scroll {
  border: 1px solid #141414;
  margin-top: 45px;
  padding: 30px 36px;
  height: 270px;
  overflow-y: auto;
}

.l-grid-1 {
  width: 8.33%;
}
.l-grid-2 {
  width: 16.66%;
}
.l-grid-3 {
  width: 25%;
}
.l-grid-4 {
  width: 33.33%;
}
.l-grid-5 {
  width: 41.66%;
}
.l-grid-6 {
  width: 50%;
}
.l-grid-7 {
  width: 58.33%;
}
.l-grid-8 {
  width: 66.66%;
}
.l-grid-9 {
  width: 75%;
}
.l-grid-10 {
  width: 83.33%;
}
.l-grid-11 {
  width: 91.66%;
}
.l-grid-12 {
  width: 100%;
}
.l-grids-gap .l-grid-1 {
  width: calc(8.33% - 40px);
}
.l-grids-gap .l-grid-2 {
  width: calc(16.66% - 40px);
}
.l-grids-gap .l-grid-3 {
  width: calc(25% - 40px);
}
.l-grids-gap .l-grid-4 {
  width: calc(33.33% - 40px);
}
.l-grids-gap .l-grid-5 {
  width: calc(41.66% - 40px);
}
.l-grids-gap .l-grid-6 {
  width: calc(50% - 40px);
}
.l-grids-gap .l-grid-7 {
  width: calc(58.33% - 40px);
}
.l-grids-gap .l-grid-8 {
  width: calc(66.66% - 40px);
}
.l-grids-gap .l-grid-9 {
  width: calc(75% - 40px);
}
.l-grids-gap .l-grid-10 {
  width: calc(83.33% - 40px);
}
.l-grids-gap .l-grid-11 {
  width: calc(91.66% - 40px);
}
.l-grids-gap .l-grid-12 {
  width: calc(100% - 40px);
}
.l-grids-btn {
  margin: -10px;
}
.l-grids-btn .l-grid-6:first-of-type {
  text-align: right;
  margin: 10px;
}
.l-grids-btn .l-grid-6:last-of-type {
  text-align: left;
  margin: 10px;
}
.l-grids-bnr {
  margin: -20px;
  display: flex;
  flex-wrap: wrap;
}
.l-grids-bnr .l-grid-3 {
  width: calc(25% - 40px);
  overflow: hidden;
}
.l-grids-bnr .l-grid-3 img {
  border-radius: 12px;
  transition: .4s;
}
.l-grids-bnr .l-grid-3 img:hover {
  opacity: .4;
}
.l-grids-bnr [class^=l-grid-] {
  margin: 20px;
}

/* header */
.l-header {
  width: 100%;
  min-width: 1000px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}
.header-inner {
  background-color: #fff;
  position: relative;
  z-index: 999;
}
.header-inner.is-hide-nav {
  border-bottom: 1px solid #e5e5e5;
}
.header-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.header-logo > a {
  flex-shrink: 0;
  width: 217px;
  line-height: 1;
}
.header-logo > a:hover {
  opacity: 1;
}
.header-title {
  flex-shrink: 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.header-title > a:hover {
  opacity: 1;
}
.header-nav-btn .header-nav-btn-inner {
  position: relative;
  display: inline-block;
  min-width: 107px;
  margin: 0;
  padding: 8px 14px 9px;
  border-radius: 4px;
  background-color: #fccf00;
  color: #141414;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  transition: .4s;
}
.header-nav-btn .header-nav-btn-inner:hover {
  opacity: 1;
  background-color: #ffe757;
  color: #141414;
  text-decoration: none;
}
.header-languages {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  list-style: none;
}
.header-languages a {
  display: block;
  color: #ccc;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
}
.header-languages .is-active a {
  color: #141414;
}
.header-languages a:hover {
  color: #fccf00;
}
.header-languages li:not(:first-of-type) {
  margin-left: 20px;
}
.header-nav {
  background-color: #141414;
  transition: .4s;
}
.header-nav.is-hide {
  margin-top: -44px;
}
.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.header-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}
.header-nav-list li {
  position: relative;
}
.header-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  padding: 8px 18px;
  text-align: center;
  transition: .4s;
}
.header-nav-list .is-current::after {
  content: '';
  display: block;
  width: calc(100% - 24px);
  height: 4px;
  background-color: #fccf00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header-nav-list a:hover {
  background-color: #fccf00;
  color: #141414;
}

/* footer */
.l-footer {
  min-width: 1000px;
}
.l-footer a:hover {
  text-decoration: none;
}
.footer-contents {
  background-color: #141414;
  color: #fff;
  font-size: 1.6rem;
  padding: 35px 0 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav li:not(:last-of-type) {
  margin-right: 20px;
}
.footer-nav .footer-nav {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
.footer-nav .footer-nav li {
  margin-top: 7px;
}
.footer-nav a {
  color: #fff;
}
.footer-nav a:hover {
  opacity: 0.6;
}
.footer-sns {
  text-align: center;
  margin-top: 34px;
}
.footer-sns p {
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 16px 0 0;
  letter-spacing: 0.02em;
}
.footer-sns a {
  margin-right: 16px;
}
.footer-sns img {
  width: 32px;
  vertical-align: middle;
}
.footer-notes {
  background-color: #fff;
  color: #141414;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 0 40px 0;
}
.footer-notes p {
  display: inline-block;
  font-size: 1.6rem;
}
.footer-notes a {
  color: #141414;
  font-size: 1.6rem;
  text-decoration: none;
}
.footer-notes p {
  margin: 10px 0 0 40px;
}
.footer-notes p:first-of-type {
  margin: 0;
}
.footer-notes .copyright {
  display: block;
  margin: 0 2px 0 0;
  letter-spacing: 0.1em;
}

/* alert */
.alert {
  background-color: #ffe2e2;
}
.alert-item-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 9px 56px;
  display: flex;
}
.alert-item-inner a {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
}
.alertlist {
  padding: 0;
  list-style: none;
  margin: 0;
}
.alert-item {
  padding-left: 30px;
}
.alert-text {
  font-size: 1.4rem;
  color: #b40000;
  margin-left: 20px;
}
.alert-item-inner:hover .alert-text {
  color: #e87676;
}
.alert-item-inner:hover .label-alert {
  background-color: #e87676;
}
.alert-item:not(:first-of-type) {
  border-top: 1px solid #fff;
}
.label-alert {
  display: inline-block;
  background-color: #b40000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1px 10px;
  flex-shrink: 0;
  -ms-flex-negative: 0;
}
.alert-link::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  transform: translateY(2px);
  background-image: url(/facilities/assets/images/icon_link-red.svg);
  width: 1em;
  height: 1em;
  background-size: 2.3em;
  background-position: center;
  background-repeat: no-repeat;
  position: static;
  margin-left: 0.6em;
}
.alert-link-external::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-image: url(/facilities/assets/images/icon_link-external-red.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.6em;
  transform: translateY(2px);
}
.alert-link-pdf::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-image: url(/facilities/assets/images/icon_link-pdf-red.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.6em;
  transform: translateY(2px);
}

/* breadcrumb */
.l-breadcrumb {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}
.breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6px 20px;
  font-size: 1rem;
  font-weight: 500;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb > li:not(:first-of-type)::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(2px);
  border-right: 1px solid #141414;
  border-top: 1px solid #141414;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 1px 6px;
}
.breadcrumb a {
  color: #141414;
}

/* title */
.h1title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  padding: 38px;
  background-color: #fff;
}
.title {
  font-size: 2.4rem;
  display: block;
}
.h2title:not(:first-child),
.h3title:not(:first-child),
.h4title:not(:first-child),
.h5title:not(:first-child) {
  margin: 30px 0 15px;
}
.h2title {
  font-size: 3.8rem;
  font-weight: bold;
}
.section .h2title {
  font-size: 3.8rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}
.h3title {
  font-size: 1.8rem;
  font-weight: bold;
}
.h4title {
  font-size: 1.8rem;
  font-weight: bold;
}
.h5title {
  font-size: 1.6rem;
  font-weight: bold;
}
.h6title {
  font-size: 1.4rem;
  font-weight: bold;
}
.heading-line-secondary {
  background-color: #fccf00;
  padding: 4px 10px;
  font-weight: 500;
}
.heading-line-secondary:not(:first-child) {
  margin-top: 30px;
}

/* text */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-attention {
  font-size: 7rem;
  font-weight: 500;
}
.underline-secondary {
  background: linear-gradient(transparent 70%, #fccf00 70%);
}

/* box */
.box {
  padding: 30px 40px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 12px;
}
a.box {
  color: #141414;
}
a.box:hover {
  text-decoration: none;
}
.box.l-grid-6 {
  padding: 30px;
}
.box-event {
  display: flex;
  align-items: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 30px 30px;
  font-weight: 500;
}
.box-event::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 15px solid transparent;
  border-right: 15px solid #141414;
  border-bottom: 15px solid #141414;
  border-left: 15px solid transparent;
}
.box-attention-head {
  padding: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.box-attention-secondary .box-attention-head {
  background-color: #fccf00;
}
.box-attention-body {
  padding: 30px;
  background-color: #fff;
}
.box-attention-secondary .list-disc {
  list-style: none;
}
.box-attention-secondary .list-disc li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fccf00;
  transform: translateY(-2px);
  margin-right: 10px;
  position: absolute;
  top: 12px;
  left: -16px;
}
.box-none {
  background-color: #fff;
  padding: 24px 50px 20px 30px;
  position: relative;
  display: block;
  color: #141414;
  border-radius: 12px;
}
.box-alert {
  border: 4px solid #b40000;
  background-color: #ffe2e2;
}
.box-alert p {
  font-size: 1.6rem;
}
.box-alert .box-alert-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

/* thumb */
.thumb-lg {
  width: 320px;
  height: 160px;
  overflow: hidden;
  position: relative;
  margin-right: 50px;
}
.thumb-sm {
  width: 150px;
  height: 140px;
  overflow: hidden;
  position: relative;
  margin-right: 30px;
  flex-basis: auto;
}

/* body */
.box-event-body {
  flex-basis: 90%;
}

/* section */
.section:not(:first-of-type) {
  margin-top: 100px;
}
.section > .section-inner {
  padding-left: 10px;
  margin-top: 10px;
}
.section  .section {
  margin-top: 30px;
}

/* label */
.label {
  display: inline-block;
  padding: 6px 10px;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
.label-primary {
  background-color: #f0f0f0;
  color: #141414;
}
.label-secondary {
  background-color: #fccf00;
  color: #141414;
}
.label-dark {
  background-color: #141414;
  color: #fff;
}
.label-h1title-event {
  display: inline-block;
  font-size: 1.8rem;
  padding: 8px 20px;
  margin-bottom: 10px;
}
.label-md {
  min-width: 135px;
}

/* top-newslist */
.top-newslist li {
  padding: 13px 0;
}
.top-newslist li:not(:first-of-type),
.eventlist li:not(:first-of-type) {
  border-top: 2px solid #f0f0f0;
}
.top-newslist li:first-of-type,
.eventlist li:first-of-type {
  padding-top: 0;
}
.top-newslist li:last-of-type,
.eventlist li:last-of-type {
  padding-bottom: 0;
}
.top-newslist p:first-of-type {
  margin-top: 5px;
}
.top-newslist a {
  color: #141414;
}

/* newslist */
.newslist > li {
  margin-top: 20px;
}
.newslist > li:first-of-type {
  margin-top: 0;
}
.box-news {
  background-color: #fff;
  padding: 24px 50px 20px 30px;
  position: relative;
  display: block;
  color: #141414;
  border-radius: 12px;
}
.newslist .label {
  min-width: 140px;
}
.box-news-headline {
  display: flex;
  align-items: center;
}
.date-news {
  font-size: 1.6rem;
  margin-left: 20px;
}
a.box-news:hover {
  text-decoration: none;
  color: #141414;
}
.box-news p {
  font-size: 1.9rem;
  font-weight: 500;
}
.box-news p:first-of-type {
  margin-top: 6px;
}
.box-news p:first-child {
  margin-top: 0;
  font-weight: normal;
}
.box-news::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.box-news-link::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  transform: translateY(2px);
  background-image: url(/facilities/assets/images/icon_link-blk.svg);
  width: 1em;
  height: 1em;
  background-size: 2.6em;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.6em;
  top: calc(50% - 0.5em);
  right: 26px;
}
.box-news-link-external::after {
  background-image: url(/facilities/assets/images/icon_link-external-blk.svg);
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-position: center;
  right: 19px;
}
.box-news-link-pdf::after {
  background-image: url(/facilities/assets/images/icon_link-pdf-blk.svg);
  width: 1em;
  height: 1em;
  background-size: 1.5em;
  background-position: center;
  right: 20px;
}

/* anchor-top */
.anchor-top {
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #141414;
  position: fixed;
  bottom: 34px;
  right: 28px;
  z-index: 900;
  transition: .4s;
}
.anchor-top.is-active {
  display: block;
}
.anchor-top:hover {
  border: none;
}
.anchor-top::after {
  content: '';
  display: inline-block;
  background-image: url(/facilities/assets/images/icon_link-w.svg);
  width: 1em;
  height: 1em;
  background-size: 2.3em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(50% - 0.5em);
  top: calc(50% - 0.5em);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* eventlist */
.eventlist li {
  padding: 18px 0;
  display: flex;
}
.eventlist .thumb {
  min-width: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.eventlist .body {
  margin: -8px 0 0 20px;
}
.eventlist img {
  object-fit: cover;
  height: 100%;
}
.eventlist .subtitle,
.eventlist .date {
  font-size: 1.4rem;
  margin: 0;
}
.eventlist .title {
  font-size: 1.8rem;
  margin-top: -3px;
}
.eventlist a {
  color: #141414;
}
.eventlist .label {
  min-width: 135px;
}

/* qa */
.box-qa {
  position: relative;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 12px;
}
.box-qa:first-of-type {
  margin-top: 0;
}
.box-qa::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 44px;
  background-size: 48px;
  background-repeat: no-repeat;
  position: absolute;
  top: 17px;
  left: calc(43% - 67px)
}
.box-qa:first-of-type::before {
  background-image: url(/facilities/assets/images/icon_circle_binoculars.svg);
}
.box-qa:nth-of-type(2)::before {
  background-image: url(/facilities/assets/images/icon_circle_facilities.svg);
}
.box-qa:nth-of-type(3)::before {
  background-image: url(/facilities/assets/images/icon_circle_calendar.svg);
}
.box-qa:nth-of-type(4)::before {
  background-image: url(/facilities/assets/images/icon_circle_file.svg);
}
.qa-title {
  padding: 23px 70px 23px 43%;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.qa-title::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - 12px);
  right: 30px;
  background-image: url(/facilities/assets/images/icon_plus.svg);
  width: 24px;
  height: 24px;
  background-size: 64px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .4s;
}
.qa-title::after {
  top: calc(50% - 10px);
  right: 30px;
}
.is-open.qa-title::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.qa-body {
  display: none;
  padding: 0 30px 0 30px;
}
.qa-body.is-open {
  display: block;
}
.qa-content {
  padding: 48px 50px 52px 93px;
  border-top: 2px solid #f0f0f0;
}
.qa-text {
  position: relative;
}
.qa-text::before {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-size: 56px;
  background-repeat: no-repeat;
  position: absolute;
  top: -11px;
  left: -67px;
}
.qa-text:not(:first-of-type) {
  margin-top: 20px;
}
.qa-text-q {
  font-weight: 500;
}
.qa-text-q::before {
  content: '';
  background-image: url(/facilities/assets/images/icon_qa-q.svg);
}
.qa-text-a {
  margin-top: 30px;
}
.qa-text-a::before {
  content: '';
  background-image: url(/facilities/assets/images/icon_qa-a.svg);
  top: -4px;
}

/* news detail */
.label-h1title {
  display: inline-block;
  padding: 6px 30px;
  font-size: 1.4rem;
  font-weight: normal;
}
.subtitle-h1title,
.date-h1title {
  font-size: 2.0rem;
  font-weight: 500;
  display: block;
}
.title-h1title {
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.date-h1title {
  margin-bottom: 33px;
  font-weight: 500;
}

/* wysiwyg */
.wysiwyg-content {
  font-size: 1.6rem;
}
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5 {
  margin: 15px 0;
}
.wysiwyg-content > *:first-child {
  margin-top: 0;
}
.wysiwyg-content h2 {
  font-size: 2.2rem;
}
.wysiwyg-content h3 {
  font-size: 2rem;
}
.wysiwyg-content h4 {
  font-size: 1.8rem;
}
.wysiwyg-content h5 {
  font-size: 1.6rem;
}
.wysiwyg-content a {
  display: inline-block;
  font-size: 1.8rem;
  margin: 4px 0;
}
.wysiwyg-content ul,
.wysiwyg-content ol {
  font-size: 1.8rem;
  margin: 12px 0;
  padding-left: 20px;
}
.wysiwyg-content ul {
  list-style-type: disc;
}
.wysiwyg-content table {
  margin: 52px 0;
  text-align: left;
  line-height: 1.5;
}
.wysiwyg-content .table-scroll {
  margin: 52px 0;
}
.wysiwyg-content .table-scroll table {
  margin: 0;
}
.wysiwyg-content table th,
.wysiwyg-content table td {
  border: 2px solid #f6f6f6;
  vertical-align: middle;
  padding: 5px 14px;
}
.wysiwyg-content table th {
  background-color: #f0f0f0;
}
.wysiwyg-calendar table {
  text-align: center;
  font-weight: 500;
  width: 100%;
}
.wysiwyg-calendar table th {
  background-color: #fff;
}

/* event */
.box-event .box-event-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: initial;
}
.subtitle-event,
.date-event {
  font-size: 1.6rem;
}
.subtitle-h1title-event {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
}
.title-h1title-event {
  font-size: 3.8rem;
  line-height: 1.5;
}
.date-h1title-event {
  font-size: 2rem;
  line-height: 1.35;
  margin: 10px 0 36px 0;
}

/* participant */
.participant {
  display: flex;
  align-items: center;
  margin: 30px 0 10px 0;
}
.box .participant:first-child {
  margin-top: 0;
}
.participant::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: 50px;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.participant-women::before {
  background-image: url(/facilities/assets/images/icon_women.svg);
}
.participant-man::before {
  background-image: url(/facilities/assets/images/icon_man.svg);
}
.participant-girl::before {
  background-image: url(/facilities/assets/images/icon_girl.svg);
}
.participant-boy::before {
  background-image: url(/facilities/assets/images/icon_boy.svg);
}
.participant-cat::before {
  background-image: url(/facilities/assets/images/icon_cat.svg);
}
.participant-train::before {
  background-image: url(/facilities/assets/images/icon_train.svg);
}
.participant-locker::before {
  background-image: url(/facilities/assets/images/icon_locker.svg);
}
.participant-wheelchair::before {
  background-image: url(/facilities/assets/images/icon_wheelchair.svg);
}
.participant-language::before {
  background-image: url(/facilities/assets/images/icon_language.svg);
}
.participant-dog::before {
  background-image: url(/facilities/assets/images/icon_dog.svg);
}
.participant-parking::before {
  background-image: url(/facilities/assets/images/icon_parking.svg);
}

/* access-map */
.access-map {
  background-color: #e5e5e5;
}
.access-map img {
  display: block;
  margin: auto;
}

/* facility-calendar-legend */
.facility-calendar-legend {
  display: flex;
  font-weight: 500;
}
.facility-calendar-legend li:not(:last-of-type) {
  margin-right: 40px;
}
.facility-calendar-legend li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  transform: translateY(2px);
}
.facility-calendar-legend-general::before {
  background-color: #78d3c0;
}
.facility-calendar-legend-group::before {
  background-color: #ffcccc;
}
.facility-calendar-legend-school::before {
  background-color: #fccf00;
}

/* width */
.w-0   { width: 0;    }
.w-10  { width: 10%;  }
.w-20  { width: 20%;  }
.w-30  { width: 30%;  }
.w-40  { width: 40%;  }
.w-50  { width: 50%;  }
.w-60  { width: 60%;  }
.w-70  { width: 70%;  }
.w-80  { width: 80%;  }
.w-90  { width: 90%;  }
.w-100 { width: 100%; }

/* color */
.color-primary {
  color: #141414;
}
.color-secondary {
  color: #fccf00;
}
.bg-primary {
  background-color: #10af9e;
}
.bg-secondary {
  background-color: #fccf00;
}
.bg-dark {
  background-color: #141414;
}
.bg-light {
  background-color: #fff;
}

/* disabled */
.btn-disabled:hover {
  cursor: not-allowed;
}

 
@media (min-width:1px) and (max-width: 750px) {
  body {
    height: 100%;
    overflow-x: hidden;
    position: relative;
    font-size: 1.4rem;
  }
  /* body.is-open {
    position: fixed;
    width: 100%;
    height: 100%;
  } */
  p {
    font-size: 1.4rem;
  }
  * + p {
    margin-top: 5px;
  }

  /* layout */
  .l-content {
    width: 100%;
    min-width: auto;
  }
  .content {
    padding: 30px 0 90px 0;
  }
  .l-container {
    width: 100%;
  }

  /* alert */
  .alertlist {
    text-align: left;
  }
  .alert-item {
    display: flex;
    line-height: 1.5;
    padding: 8px 0;
  }
  .label-alert {
    font-size: 1.2rem;
    padding: 1px 8px;
  }
  .alert-text {
    font-size: 1.2rem;
    margin-left: 10px;
  }
  .alert-item-inner {
    padding: 0 15px;
    margin: 0;
  }

  /* .breadcrumb */
  .breadcrumb {
    padding: 3px 11px;
  }

  /* grid */
  .l-grids-gap {
    margin: 10px -10px -5px -10px;
  }
  .box .l-grids-gap {
    margin-top: 0;
  }
  .box .l-grids-gap:first-child {
    margin-top: -10px;
  }
  .l-grids:not(.l-grids-sp) [class^=l-grid-],
  .l-grids-gap:not(.l-grids-sp) [class^=l-grid-] {
    width: 100%;
    margin: 10px;
  }
  .l-grids-gap.l-grids-sp {
    margin: -10px -5px;
  }
  .l-grids-gap.l-grids-sp [class^=l-grid-] {
    margin: 10px 5px;
  }
  .l-grids-gap.l-grids-sp .l-grid-1 {
    width: calc(8.33% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-2 {
    width: calc(16.66% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-3 {
    width: calc(25% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-4 {
    width: calc(33.33% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-5 {
    width: calc(41.66% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-6 {
    width: calc(50% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-7 {
    width: calc(58.33% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-8 {
    width: calc(66.66% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-9 {
    width: calc(75% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-10 {
    width: calc(83.33% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-11 {
    width: calc(91.66% - 10px);
  }
  .l-grids-gap.l-grids-sp .l-grid-12 {
    width: calc(100% - 10px);
  }
  .l-grids-btn .l-grid-6:first-of-type {
    text-align: center;
    margin: 5px;
  }
  .l-grids-btn .l-grid-6:last-of-type {
    text-align: center;
    margin: 5px;
  }
  .l-grids-btn .l-grid-6 {
    margin: 7px;
  }
  .l-grids-bnr {
    margin: 0;
  }
  .l-grids-bnr .l-grid-3 {
    width: calc(50% - 14px);
  }
  .l-grids-bnr .l-grid-3 img {
    border-radius: 6px;
  }
  .l-grids-bnr [class^=l-grid-] {
    margin: 4px 7px;
  }
  .l-container {
    padding: 0 8%;
  }

  /* title */
  .h1title {
    font-size: 2rem;
    padding: 22px;
  }
  .h2title {
    font-size: 2.4rem;
  }
  .h3title {
    font-size: 1.4rem;
  }
  .h4title {
    font-size: 1.4rem;
  }
  .h5title {
    font-size: 1.2rem;
  }
  .h6title {
    font-size: 1rem;
  }

  /* btn */
  .btn {
    min-width: 225px;
    font-size: 1.4rem;
    padding: 15px 35px;
  }
  .btn::before {
    right: 20px;
  }
  .btn-external::before {
    width: 20px;
    height: 20px;
    background-size: 20px;
    top: calc(50% - 10px);
    right: 10px;
  }

  /* link */
  .link,
  .link-external,
  .link-pdf {
    font-size: 1.2rem;
    display: inline-block;
  }
  .link::after {
    width: 1em;
    height: 1em;
    background-size: 2.5em;
  }
  .link-external::after {
    transform: translateY(1px);
  }
  .link-pdf::after {
    transform: translateY(2px);
  }

  /* box-anchor */
  .box-anchor {
    padding: 8px 35px 8px 16px;
    font-size: 1.4rem;
  }
  .box-anchor::before {
    width: 25px;
    height: 25px;
    background-size: 25px;
    transform: translateY(0px);
    margin-right: 5px;
  }
  .box-anchor::after {
    right: 13px;
  }
  .l-grids:not(.l-grids-sp) [class^=l-grid-].box-anchor {
    margin: 0;
  }
  .box-anchor:first-of-type {
    border-radius: 6px 6px 0 0;
  }
  .box-anchor:nth-of-type(2),
  .box-anchor:nth-of-type(3) {
    border-radius: 0;
  }
  .box-anchor:last-of-type {
    border-radius: 0 0 6px 6px;
  }

  /* list */
  .list-disc, .list-decimal, .list-notes {
    padding-left: 1.2rem;
    font-size: 1.2rem;
  }
  .list-notes > li::before {
    left: -1.2rem;
  }
  .box-attention-secondary .list-disc {
    padding-left: 2rem;
  }
  .box-attention-secondary .list-disc li::before {
    top: 9px;
  }
  .list-line li:not(:first-of-type) {
    margin-top: 12px;
    padding-top: 15px;
  }
  .list-secondary li:first-of-type {
    margin-top: 0px;
  }
  .list-secondary li {
    margin-top: 2px;
    line-height: 1.5;
  }

  /* box */
  .box,
  .box.l-grid-6 {
    padding: 14px;
  }
  .box {
    border-radius: 6px;
  }
  .box-event {
    display: block;
    border-radius: 6px;
    margin-top: 15px;
  }
  .box-event::after {
    border-top: 10px solid transparent;
    border-right: 10px solid #141414;
    border-bottom: 10px solid #141414;
    border-left: 10px solid transparent;
  }
  .box-attention-head {
    padding: 16px;
  }
  .box-attention-body {
    padding: 16px 20px;
  }
  .box-none {
    padding: 20px 40px 15px 20px;
    border-radius: 6px;
  }
  .box-alert p,
  .box-alert a {
    font-size: 1.4rem;
  }
  .box-alert .box-alert-title {
    font-size: 1.8rem;
    text-align: left;
  }

  /* thumb */
  .thumb-lg {
    margin: 0 0 4px 0;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .thumb-sm {
    width: 100%;
    height: auto;
    margin-right: 16px;
  }
  .box-event .box-event-thumb img {
    position: static;
    transform: none;
    height: auto;
    width: 100%;
  }
  .box-event-sm {
    display: flex;
  }
  .box-event-sm .subtitle-event,
  .box-event-sm .date-event {
    font-size: 1rem;
  }
  .box-event-sm .subtitle-event {
    margin-bottom: 6px;
  }
  .box-event-sm .title-event {
    font-size: 1.2rem;
  }
 
  /* body */
  .body-event {
    flex-basis: 250%;
  }

  /* section */
  .section:not(:first-of-type) {
    margin-top: 64px;
  }

  /* eventlist */
  .eventlist li {
    padding: 9px 0;
  }
  .eventlist .thumb {
    min-width: 75px;
    width: 75px;
    height: 75px;
  }
  .eventlist .subtitle {
    font-size: 1.2rem;
  }
  .eventlist .date {
    font-size: 1rem;
  }
  .eventlist .title {
    font-size: 1.4rem;
  }
  .eventlist .body {
    margin: -4px 0 0 15px;
  }
  .eventlist .label {
    min-width: 100px;
    margin-top: 9px;
  }
  .eventlist a {
    margin-top: 6px;
    font-size: 1.4rem;
  }

  /* event */
  .subtitle-event {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .title-event {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .date-event {
    font-size: 1rem;
  }

  /* label */
  .label {
    font-size: 1.2rem;
    padding: 4px 14px;
  }
  .label-h1title-event {
    font-size: 1.2rem;
    padding: 8px 14px;
    margin-bottom: 18px;
  }
  .label-md {
    min-width: 75px;
  }

  /* table */
  .table {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  .table th, .table td {
    padding: 8px 10px;
  }
  .table-scroll {
    width: 100%;
    overflow: auto;
  }
  .table-scroll table {
    width: 220%;
  }
  .table-scroll-100 table { width: 100%; }
  .table-scroll-110 table { width: 110%; }
  .table-scroll-120 table { width: 120%; }
  .table-scroll-130 table { width: 130%; }
  .table-scroll-140 table { width: 140%; }
  .table-scroll-150 table { width: 150%; }
  .table-scroll-160 table { width: 160%; }
  .table-scroll-170 table { width: 170%; }
  .table-scroll-180 table { width: 180%; }
  .table-scroll-190 table { width: 190%; }
  .table-scroll-200 table { width: 200%; }
  .table-scroll-210 table { width: 210%; }
  .table-scroll-220 table { width: 220%; }
  .table-scroll-230 table { width: 230%; }
  .table-scroll-240 table { width: 240%; }
  .table-scroll-250 table { width: 250%; }
  .table-scroll-260 table { width: 260%; }
  .table-scroll-270 table { width: 270%; }
  .table-scroll-280 table { width: 280%; }
  .table-scroll-290 table { width: 290%; }
  .table-scroll-300 table { width: 300%; }

  /* eventlist */
  .eventlist li {
    padding: 18px 0;
  }

  /* top-newslist */
  .top-newslist .date {
    font-size: 1rem;
  }
  .top-newslist p {
    font-size: 1.2rem;
  }
  .top-newslist li {
    padding: 8px 0;
  }

  /* .newslist */
  .newslist li {
    margin-top: 10px;
  }
  .box-news p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .newslist .label {
    min-width: 110px;
    padding: 4px;
  }
  .date-news {
    margin-left: 14px;
    font-size: 1.2rem;
  }
  .box-news {
    padding: 20px 40px 15px 20px;
    border-radius: 6px;
  }
  .box-news-link::after {
    right: 14px;
  }
  .box-news-link-external::after {
    right: 14px;
  }
  .box-news-link-pdf::after {
    right: 14px;
  }

  /* qa */
  .box-qa {
    font-size: 1.4rem;
  }
  .box-qa::before {
    width: 30px;
    height: 30px;
    background-size: 32px;
    top: 15px;
    left: 15px;
  }
  .qa-title {
    padding: 19px 56px;
  }
  .qa-title::after {
    width: 16px;
    height: 16px;
    background-size: 44px;
    top: calc(50% - 8px);
    right: 13px;
  }
  .qa-body {
    padding: 0 15px 0 15px;
  }
  .qa-content {
    padding: 28px 0px 22px 40px;
  }
  .qa-text::before {
    width: 34px;
    height: 34px;
    background-size: 34px;
    top: -8px;
    left: -42px;
  }
  .qa-text-a {
    margin-top: 21px;
  }
  .qa-text:not(:first-of-type) {
    margin: 0;
  }

  /* news-detail */
  .label-h1title {
    font-size: 1rem;
    padding: 4px 22px;
  }
  .title-h1title {
    line-height: 1.5;
  }
  .subtitle-h1title {
    font-size: 1.4rem;
  }
  .date-h1title {
    font-size: 1.4rem;
    margin-bottom: 27px;
  }

  /* text */
  .text-caption {
    font-size: 1.2rem;
  }
  .text-attention {
    font-size: 9.4vw;
  }

  /* wysiwyg */
  .wysiwyg-content {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .wysiwyg-content h2,
  .wysiwyg-content h3,
  .wysiwyg-content h4,
  .wysiwyg-content h5 {
    margin: 10px 0;
  }
  .wysiwyg-content a {
    font-size: 1.2rem;
  }
  .wysiwyg-content ul,
  .wysiwyg-content ol {
    font-size: 1.4rem;
    padding-left: 15px;
  }
  .wysiwyg-content .table-scroll {
    overflow: scroll;
  }
  .wysiwyg-content .table-scroll table {
    width: 220%;
  }
  .wysiwyg-content table {
    margin: 30px 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .wysiwyg-content .table-scroll {
    margin: 30px 0;
  }
  .wysiwyg-content .table-scroll table {
    margin: 0;
  }
  .wysiwyg-content table th,
  .wysiwyg-content table td {
    padding: 5px 3px;
  }

  /* section */
  .section .h2title {
    font-size: 2.4rem;
  }

  /* event */
  .subtitle-h1title-event {
    font-size: 1.4rem;
  }
  .title-h1title-event {
    font-size: 2.4rem;
  }
  .date-h1title-event {
    font-size: 1.4rem;
    margin: 10px 0 26px 0;
  }
  .participant::before {
    width: 35px;
    height: 35px;
    background-size: 35px;
    flex-shrink: 0;
  }

  /* participant */
  .participant {
    margin: 4px 0 0 0;
  }

  /* tab */
  .tab {
    min-width: calc(50% - 5px);
  }
  .tab_3ptn {
    min-width: calc(33% - 6px);
  }

  /* header */
  .l-header {
    min-width: 0;
  }
  .is-open .l-header {
    z-index: 999;
  }
  .header-content {
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .header-title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .is-open .header-nav {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .header-menu-trigger {
    position: relative;
    width: 60px;
    height: 56px;
  }
  .header-menu-trigger span {
    background-color: #141414;
    height: 2px;
    left: calc(50% - 4px);
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
  }
  .header-menu-trigger span:first-of-type {
    top: calc(50% - 7px);
  }
  .header-menu-trigger span:nth-of-type(2) {
    top: calc(50%);
  }
  .header-menu-trigger span:last-of-type {
    top: calc(50% + 7px);
  }
  .header-logo {
    width: 183px;
    margin: 10px auto 0px auto;
  }
  .header-content .header-btn .btn {
    margin: 0;
    padding: 10px 5px;
    border-radius: 0;
    font-size: .8rem;
    min-width: 60px;
    width: 60px;
  }
  .header-content .header-btn .btn-calendar::after {
    display: none;
  }
  .header-content .header-btn .btn-calendar::before {
    display: block;
    width: 22px;
    height: 20px;
    background-size: 42px 40px;
    margin: 0 auto 7px auto;
    background-image: url(/facilities/assets/images/icon_calendar.svg);
    background-position: center;
    border: none;
    position: static;
    transform: none;
  }
  .header-nav {
    /* display: none; */
    background-color: #fff;
    z-index: 999;
    transform: translateX(-101%);
    transition: all .4s;
    width: 58%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
  }
  .header-nav.is-open {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    transform: translateX(0);
  }
  .header-nav-inner {
    display: block;
    background-color: #fff;
    margin: 0 auto 0 0;
    padding: 30px 30px 120px;
    box-sizing: border-box;
  }
  .header-nav-btn .header-nav-btn-inner {
    min-width: 157px;
    width: auto;
    margin: 0;
    border-radius: 100px;
    padding: 11px 16px 15px;
    font-size: 1.4rem;
  }
  .header-nav-btn .header-nav-btn-inner::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 15px;
    background-image: url(/facilities/assets/images/icon_calendar.svg);
    background-position: center;
    background-size: 30px 30px;
    border: none;
    position: static;
    margin-left: 8px;
    transform: translateY(2px);
  }
  .header-nav-list {
    display: block;
    margin-top: 20px;
  }
  .header-nav-list li:not(:first-of-type) {
    margin-top: 9px;
  }
  .header-nav-list .is-current::after {
    display: none;
  }
  .header-nav-list a {
    color: #141414;
    text-align: left;
    padding: 0;
    font-weight: 500;
  }
  .header-nav-list .is-current a {
    color: #fccf00;
  }
  .header-overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: #141414;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    transition: opacity .4s;
  }
  .header-overlay.is-open {
    width: 100%;
    height: 100%;
    opacity: .2;
    position: fixed;
  }
  .header-languages {
    display: block;
    padding: 25px 0;
    margin-top: 25px;
    border-top: 1px solid #f6f6f6;
    font-size: 1.4rem;
  }
  .header-languages li:not(:first-of-type) {
    margin: 3px 0 0 0;
  }
  .header-languages a {
    font-size: 1.4rem;
  }
  .header-logo {
    margin-top: 0;
  }
  .header-logo > a {
    width: 165px;
  }
  .header-btn-close.pc-none {
    width: 20px;
    height: 20px;
    margin: 30px 0 15px 0;
    position: absolute;
    left: calc(50% - 10px);
  }
  .header-btn-close span {
    background-color: #141414;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: calc(50% - 10px);
  }
  .header-btn-close span:first-of-type {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-btn-close span:last-of-type {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .is-open .anchor-top {
    z-index: 0;
  }
  body.is-open {
    height: 100vh;
    overflow: hidden;
  }

  /* footer */
  .l-footer {
    min-width: 100%;
  }
  .footer-contents {
    padding: 35px 0 40px;
    min-width: 100%;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav .footer-nav li {
    margin-top: 9px;
  }
  .footer-nav li:not(:first-of-type) {
    margin: 7px 0 0 0;
  }
  .footer-sns {
    margin-top: 30px;
  }
  .footer-sns p {
    font-size: 1.4rem;
    margin-right: 5px;
  }
  .footer-sns a {
    margin: 0 4px;
  }
  .footer-notes {
    padding: 13px 8%;
    text-align: left;
  }
  .footer-notes a {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .footer-notes p {
    line-height: 1.3;
    display: block;
  }
  .footer-notes p:not(:first-of-type) {
    margin: 2px 0 0 0;
    font-size: .8rem;
  }
  .footer-notes .copyright {
    letter-spacing: 0;
  }
  .anchor-top {
    width: 45px;
    height: 45px;
  }
}
@media print{
  .l-header {
    position: static;
  }
}