@charset "UTF-8";
/*----------------------------------------------------------------------
Reset Style
----------------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

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

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*----------------------------------------------------------------------
Default Style
----------------------------------------------------------------------*/
/* Global */
html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: aliased;
  font-size: 62.5%;
  /*10px*/
}

body {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
}

strong {
  font-weight: bold;
}

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

div#wrap {
  width: 100%;
  margin: 0 auto;
}

/* ベースリンクカラー
----------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
}

/* ヘッダー
----------------------------------------------------*/
header {
  position: absolute;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 10000;
  top: 0;
  left: 0;
  /*グローバルナビ*/
}
header .logo-box {
  width: 116px;
  margin: 10px 15px;
}
header .nav-box {
  /* アイコンがクリックされたら真ん中の線を透明にする */
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  /* アイコンがクリックされたらメニューを表示 */
}
header .nav-box .drawer-hidden {
  display: none;
}
header .nav-box .drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
  color: #FFF;
}
header .nav-box .drawer-open::after {
  content: "MENU";
  position: absolute;
  bottom: 6px;
  font-size: 1.3rem;
}
header .nav-box .drawer-open span {
  content: '';
  display: block;
  height: 2px;
  width: 35px;
  transition: 0.5s;
  position: absolute;
  top: 20px;
}
header .nav-box .drawer-open span::before,
header .nav-box .drawer-open span::after {
  content: '';
  display: block;
  height: 2px;
  width: 35px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}
header .nav-box .drawer-open span::before {
  bottom: 4px;
}
header .nav-box .drawer-open span::after {
  top: 4px;
}
header .nav-box #drawer-input:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}
header .nav-box #drawer-input:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
header .nav-box #drawer-input:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
header .nav-box .global-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  right: -100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #4d4d4d;
  transition: .5s;
  overflow: auto;
}
header .nav-box .global-nav ul {
  list-style: none;
  padding-left: 0;
}
header .nav-box .global-nav ul li {
  border-bottom: 1px solid #FFF;
}
header .nav-box .global-nav ul li a {
  padding: 20px 30px;
  display: block;
  text-decoration: none;
  color: #FFF;
}
header .nav-box #drawer-input:checked ~ .global-nav {
  right: 0px;
  /* メニューを画面に入れる */
}
header .nav-box .header-nav {
  display: none;
}

.drawer-open.change-color {
  background: #4d4d4d;
  transition: 0.3s;
}

/*バーガーメニュー開いた時背景固定*/
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

/* フッター
----------------------------------------------------*/
footer {
  color: #FFF;
  background-color: #4d4d4d;
  position: relative;
}
footer .ftr-inr {
  padding: 40px 30px;
}
footer .ftr-inr .ftr-logo-info {
  margin-bottom: 50px;
}
footer .ftr-inr .ftr-logo-info .ftr-logo {
  width: 140px;
  margin-bottom: 1em;
}
footer .ftr-inr .ftr-logo-info .ftr-info {
  margin-bottom: 0.5em;
}
footer .ftr-inr .ftr-logo-info .ftr-link-box {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}
footer .ftr-inr .ftr-logo-info .ftr-link-box > div a {
  color: #FFF;
  text-decoration: underline;
}
footer .ftr-inr .ftr-logo-info .ftr-link-box > div a:active, footer .ftr-inr .ftr-logo-info .ftr-link-box > div a:hover {
  text-decoration: none;
}
footer .ftr-inr .ftr-logo-info .ftr-link-box .ftr-link-insta {
  width: 30px;
  margin-left: 20px;
}
footer .ftr-inr .ftr-logo-info .ftr-link {
  font-size: 1.5rem;
}
footer .ftr-inr .ftr-logo-info .ftr-link a {
  color: #FFF;
  text-decoration: underline;
}
footer .ftr-inr .ftr-logo-info .ftr-link a:active, footer .ftr-inr .ftr-logo-info .ftr-link a:hover {
  text-decoration: none;
}
footer .ftr-inr .ftr-nav {
  margin-bottom: 40px;
}
footer .ftr-inr .ftr-nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  line-height: 1.5;
}
footer .ftr-inr .ftr-nav ul li {
  width: 47%;
  margin-bottom: 1em;
}
footer .ftr-inr .ftr-nav ul li a {
  color: #FFF;
  text-decoration: none;
  display: block;
}
footer .ftr-inr .ftr-nav ul li a:active, footer .ftr-inr .ftr-nav ul li a:hover {
  text-decoration: underline;
}
footer .ftr-copy {
  font-size: 1.2rem;
  line-height: 1.5;
}
footer .gototop {
  position: absolute;
  top: 40px;
  right: 30px;
  font-size: 1.4rem;
  text-align: center;
  color: #FFF;
}
footer .gototop a {
  display: block;
  background: #4d4d4d;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
  border: 1px solid #FFF;
  margin: 0 auto;
}
footer .gototop a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 10px;
  height: 3px;
  border-radius: 50vh;
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  background-color: #FFF;
}
footer .gototop a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 45%;
  width: 3px;
  height: 10px;
  border-radius: 50vh;
  transform: translateY(-50%) translateX(50%) rotate(-45deg);
  background-color: #FFF;
}

/* ボタン
----------------------------------------------------*/
.btn {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
.btn > a {
  display: block;
  position: relative;
  background: #FFF;
  border-radius: 50vh;
  color: #000 !important;
  text-decoration: none;
  border: 1px solid #000;
  padding: 12px;
  text-decoration: none !important;
}
.btn > a:hover, .btn > a:active {
  background: #000;
  color: #FFF !important;
}
.btn > a:hover::before, .btn > a:hover::after, .btn > a:active::before, .btn > a:active::after {
  background-color: #FFF;
}
.btn > a::before, .btn > a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 52%;
  right: 24px;
  width: 12px;
  height: 3px;
  background-color: #000;
  border-radius: 50vh;
}
.btn > a::before {
  transform: translateY(-50%) rotate(-35deg);
  top: 52%;
}
.btn > a::after {
  transform: translateY(-50%) rotate(35deg);
  bottom: 52%;
}

.btn-black {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
.btn-black a {
  display: block;
  position: relative;
  background: #000;
  border-radius: 50vh;
  color: #FFF;
  text-decoration: none;
  border: 1px solid #000;
  padding: 12px;
}
.btn-black a:hover {
  background: #FFF;
  color: #000;
}
.btn-black a:hover::before, .btn-black a:hover::after {
  background-color: #000;
}
.btn-black a::before, .btn-black a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 52%;
  right: 24px;
  width: 12px;
  height: 3px;
  background-color: #FFF;
  border-radius: 50vh;
}
.btn-black a::before {
  transform: translateY(-50%) rotate(-35deg);
  top: 52%;
}
.btn-black a::after {
  transform: translateY(-50%) rotate(35deg);
  bottom: 52%;
}

/* 共通
----------------------------------------------------*/
.inr {
  padding: 30px;
}

/*背景色*/
.bgc-lyg {
  background-color: #f6f3ee;
}

/*隙間*/
.mb1 {
  margin-bottom: 1em;
}

/*----------------------------------------------------------------------
トップページ
----------------------------------------------------------------------*/
.top-ttl {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
.top-ttl .top-ttl-en {
  font-size: 4.1rem;
  letter-spacing: 0.05em;
  display: block;
}
.top-ttl .top-ttl-ja {
  font-size: 1.8rem;
  display: block;
}

/* hero-area
----------------------------------------------------*/
.hero-area .hero-inr {
  position: relative;
}
.hero-area .hero-inr h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 375px;
  z-index: 2;
}
.hero-area .hero-inr .main-visual div {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero-area .hero-inr .main-visual div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s ease;
}

/* about-area
----------------------------------------------------*/
.about-area .about-nav,
.about-area .about-slider-pctb {
  display: none;
}
.about-area .about-slider-sp {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}
.about-area .about-slider-sp .slick-slide {
  margin: 0 10px;
}
.about-area .about-slider-sp .slick-slide img {
  border-radius: 20px;
}
.about-area .about-slider-sp .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
}
.about-area .about-slider-sp .prev-arrow {
  left: 0px;
}
.about-area .about-slider-sp .prev-arrow::before, .about-area .about-slider-sp .prev-arrow::after {
  display: block;
  content: "";
  position: absolute;
  left: 12px;
  width: 12px;
  height: 3px;
  background-color: #000;
  border-radius: 50vh;
}
.about-area .about-slider-sp .prev-arrow::before {
  transform: translateY(-50%) rotate(35deg);
  top: 55%;
}
.about-area .about-slider-sp .prev-arrow::after {
  transform: translateY(-50%) rotate(-35deg);
  bottom: 55%;
}
.about-area .about-slider-sp .next-arrow {
  right: 0px;
}
.about-area .about-slider-sp .next-arrow::before, .about-area .about-slider-sp .next-arrow::after {
  display: block;
  content: "";
  position: absolute;
  right: 12px;
  width: 12px;
  height: 3px;
  background-color: #000;
  border-radius: 50vh;
}
.about-area .about-slider-sp .next-arrow::before {
  transform: translateY(-50%) rotate(-35deg);
  top: 55%;
}
.about-area .about-slider-sp .next-arrow::after {
  transform: translateY(-50%) rotate(35deg);
  bottom: 55%;
}
.about-area .about-txt {
  width: calc(100% - 60px);
  margin: 0 auto;
}
.about-area .about-txt p {
  font-weight: 700;
  font-size: 2.1rem;
}

/* t-content
----------------------------------------------------*/
.t-content {
  /*観る*/
  /*学ぶ*/
  /*繋ぐ*/
}
.t-content .t-content-img {
  margin-bottom: 30px;
}
.t-content .t-content-txt h2 {
  position: relative;
  float: left;
  line-height: 1.1;
}
.t-content .t-content-txt h2 .t-content-ttl-ja {
  font-size: 6.0rem;
  writing-mode: vertical-rl;
}
.t-content .t-content-txt h2 .t-content-ttl-en {
  display: block;
  position: absolute;
  bottom: -2em;
  font-size: 3.1rem;
  letter-spacing: 0.1em;
}
.t-content .t-content-txt h2 .en-conect {
  bottom: -1em;
}
.t-content .t-content-txt p {
  margin-left: 88px;
  margin-bottom: 4em;
  font-size: 1.7rem;
}
.t-content .t-content-txt .btn-black {
  margin-left: auto;
  width: calc(100% - 88px);
}
.t-content .appre-img-box {
  display: flex;
  justify-content: space-between;
}
.t-content .appre-img-box > div {
  width: 31%;
}
.t-content .appre-img-box > div > a {
  display: block;
}
.t-content .appre-img-box > div > a:active, .t-content .appre-img-box > div > a:hover {
  opacity: 0.75;
}
.t-content .appre-img-box > div:nth-of-type(2) {
  margin-top: 54px;
}
.t-content .appre-img-box > div .appre-img {
  height: 275px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.t-content .appre-img-box > div .appre-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-content .appre-img-box > div p {
  line-height: 1.5;
}
.t-content .culture-img-box {
  margin-bottom: 0;
}
.t-content .culture-img-box .culture-img01 {
  margin-bottom: 15px;
}
.t-content .culture-img-box .culture-img02 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
.t-content .culture-img-box .culture-img02 > div {
  width: 48%;
}
.t-content .culture-img-box .culture-img {
  margin-bottom: 8px;
}
.t-content .culture-img-box .culture-img img {
  border-radius: 20px;
}
.t-content .culture-img-box p {
  line-height: 1.5;
}
.t-content .culture-bgi01 {
  background-image: url("../img/culture_bgi01.svg");
  background-repeat: no-repeat;
  background-position: bottom 0 left 0;
  background-size: 64px auto;
}
.t-content .culture-bgi02 {
  background-image: url("../img/culture_bgi02.svg");
  background-repeat: no-repeat;
  background-position: bottom 0 right 0;
  background-size: 60px auto;
}
.t-content .culture-bgi03 {
  background-image: url("../img/culture_bgi03.svg");
  background-repeat: no-repeat;
  background-position: bottom 0 left 30%;
  background-size: 60px auto;
}
.t-content .conect-img-box .conect-img01 {
  margin-bottom: 30px;
}
.t-content .conect-img-box .conect-img01 > a {
  display: block;
}
.t-content .conect-img-box .conect-img01 > a:active, .t-content .conect-img-box .conect-img01 > a:hover {
  opacity: 0.75;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box {
  margin-bottom: 8px;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) {
  display: flex;
  margin-bottom: 8px;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div {
  width: 31%;
  margin-right: 2.5%;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}
.t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-content .conect-img-box .conect-img02 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(1) {
  width: 31%;
  order: 2;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  margin-top: -50px;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(1) img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(2) {
  width: 57%;
  order: 1;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > a {
  display: block;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > a:active, .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > a:hover {
  opacity: 0.75;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > a > div {
  margin-bottom: 8px;
}
.t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > a > div img {
  border-radius: 20px;
}

/* insta-area
----------------------------------------------------*/
.insta-area {
  background-image: url("../img/insta_bgi.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.insta-area h3 {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 0.75em;
  text-shadow: 0 0 2px white, 0 0 4px rgba(255, 255, 255, 0.8), 0 0 6px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.4);
}
.insta-area .insta-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.insta-area .insta-box > div {
  width: 47%;
}
.insta-area .insta-box > div:nth-of-type(n+3) {
  margin-top: 20px;
}
.insta-area .insta-box > div a {
  display: block;
}
.insta-area .insta-box > div a img {
  border-radius: 14px;
}

/* news-area
----------------------------------------------------*/
.news-area .news-box {
  margin-bottom: 30px;
}
.news-area .news-box .news-detail {
  margin-bottom: 15px;
}
.news-area .news-box .news-detail:nth-last-of-type(1) {
  margin-bottom: 0;
}
.news-area .news-box .news-detail a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.news-area .news-box .news-detail a:active, .news-area .news-box .news-detail a:hover {
  opacity: 0.75;
}
.news-area .news-box .news-detail a .news-img {
  width: 47%;
  aspect-ratio: 74 / 55;
  overflow: hidden;
  border-radius: 11px;
  position: relative;
}
.news-area .news-box .news-detail a .news-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-area .news-box .news-detail a .news-date-ttl {
  width: 47%;
}
.news-area .news-box .news-detail a .news-date-ttl .news-date {
  font-weight: 700;
  display: block;
  font-size: 1.7rem;
}
.news-area .news-box .news-detail a .news-date-ttl .news-ttl {
  display: block;
}
.news-area .news-box .news-none {
  text-align: center;
}

/* access-area
----------------------------------------------------*/
.access-area .access-inr {
  padding-top: 30px;
}
.access-area .access-box .access-map {
  aspect-ratio: 15 / 16;
}
.access-area .access-box .access-info {
  padding: 30px;
  font-size: 1.8rem;
}
.access-area .access-box .access-info dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5em;
  letter-spacing: 0;
}
.access-area .access-box .access-info dl dt {
  width: 4em;
  margin-bottom: 1.5em;
}
.access-area .access-box .access-info dl dd {
  width: calc(100% - 4em);
  margin-bottom: 1.5em;
}

/* related-facility
----------------------------------------------------*/
.related-facility > div .facility-inr {
  padding: 30px;
}
.related-facility > div .facility-inr a {
  color: #FFF;
  display: block;
}
.related-facility > div .facility-inr h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.related-facility > div .facility-inr h3 span {
  font-size: 3.2rem;
  line-height: 1.2;
}
.related-facility > div .facility-inr p {
  font-size: 1.8rem;
}
.related-facility .facility-orochi {
  background-image: url("../img/facility_orochi.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40% 50%;
}
.related-facility .facility-orochi:active, .related-facility .facility-orochi:hover {
  opacity: 0.75;
}
.related-facility .facility-mikuni {
  background-image: url("../img/facility_mikuni.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 20% 50%;
}
.related-facility .facility-mikuni:active, .related-facility .facility-mikuni:hover {
  opacity: 0.75;
}

/*----------------------------------------------------------------------
階層
----------------------------------------------------------------------*/
/* page-hero-area
----------------------------------------------------*/
.page-hero-area .page-hero-inr {
  position: relative;
}
.page-hero-area .page-hero-inr .page-ttl {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateY(-60%) translateX(-50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #FFF;
  font-size: 3.4rem;
  font-weight: 700;
}
.page-hero-area .page-hero-inr .page-hero-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40vh;
}
.page-hero-area .page-hero-inr .page-hero-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 階層1
----------------------------------------------------*/
.page-content .page-box a {
  color: #808080;
  text-decoration: underline;
}
.page-content .page-box a:active, .page-content .page-box a:hover {
  text-decoration: none;
}
.page-content .page-subbox {
  margin-bottom: 3em;
}
.page-content .page-subbox h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #000;
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  line-height: 1.5;
}
.page-content .page-subbox ul {
  padding-left: 2em;
  margin-bottom: 1em;
  list-style: disc;
}

/*階層用ボタン*/
.pege-btn-box .pege-btn {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.pege-btn-box .pege-btn a {
  display: block;
  position: relative;
  background: #FFF;
  border-radius: 50vh;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 12px;
}
.pege-btn-box .pege-btn a:active {
  background: #000;
  color: #FFF;
}
.pege-btn-box .pege-btn a:active::before, .pege-btn-box .pege-btn a:active::after {
  background-color: #FFF;
}
.pege-btn-box .pege-btn a::before, .pege-btn-box .pege-btn a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 52%;
  right: 24px;
  width: 12px;
  height: 3px;
  background-color: #000;
  border-radius: 50vh;
}
.pege-btn-box .pege-btn a::before {
  transform: translateY(-50%) rotate(-35deg);
  top: 52%;
}
.pege-btn-box .pege-btn a::after {
  transform: translateY(-50%) rotate(35deg);
  bottom: 52%;
}

/* 階層2
----------------------------------------------------*/
.column-inr .column-main .column-ttl h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-inr .column-main .column-ttl h1::before, .column-inr .column-main .column-ttl h1::after {
  content: "";
  background-color: #000;
  width: 24px;
  height: 3px;
  border-radius: 50vh;
}
.column-inr .column-main .column-ttl h1::before {
  margin-right: 16px;
}
.column-inr .column-main .column-ttl h1::after {
  margin-left: 16px;
}
.column-inr .column-main .content-box {
  margin-bottom: 3em;
}
.column-inr .column-main .content-box:nth-last-of-type(1) {
  margin-bottom: 0;
}
.column-inr .column-main .content-box .content-subbox {
  margin-bottom: 1.5em;
}
.column-inr .column-main .content-box h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #000;
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  line-height: 1.5;
}
.column-inr .column-main .content-box h2 span {
  font-size: 1.6rem;
}
.column-inr .column-main .content-box h3 {
  font-size: 2.0rem;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}
.column-inr .column-main .content-box h3 span {
  font-size: 1.6rem;
}
.column-inr .column-main .content-box h3::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 90%;
  background-color: #000;
  transform: translateY(-50%);
}
.column-inr .column-main .content-box h4 {
  font-size: 1.8rem;
  line-height: 1.5;
}
.column-inr .column-main .content-box p {
  margin-bottom: 1em;
}
.column-inr .column-main .content-box p + ul,
.column-inr .column-main .content-box p + ol {
  margin-top: -1em;
}
.column-inr .column-main .content-box ul, .column-inr .column-main .content-box ol {
  padding-left: 2em;
  margin-bottom: 1em;
}
.column-inr .column-main .content-box ul {
  list-style: disc;
}
.column-inr .column-main .content-box ol {
  list-style: decimal;
}
.column-inr .column-main .content-box a {
  color: #808080;
  text-decoration: underline;
}
.column-inr .column-main .content-box a:active, .column-inr .column-main .content-box a:hover {
  text-decoration: none;
}
.column-inr .column-main .content-box a[href$=".pdf"] {
  background-image: url("../img/icon_pdf.svg");
  background-position: right center;
  background-size: 17px 20px;
  background-repeat: no-repeat;
  padding-right: 22px;
}
.column-inr .column-main .content-box .note {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  margin-bottom: 0 !important;
  font-size: 1.6rem;
}
.column-inr .column-main .content-box .txt-hl {
  background: linear-gradient(transparent 65%, #F5D361 65%);
}
.column-inr .column-main .content-box table {
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #CCC;
}
.column-inr .column-main .content-box table thead th {
  background-color: #4D4D4D;
  color: #FFF;
  text-align: center;
}
.column-inr .column-main .content-box table tbody tr:nth-of-type(even) {
  background-color: #F2F2F2;
}
.column-inr .column-main .content-box table tbody th, .column-inr .column-main .content-box table tbody td {
  border-top: 1px solid #CCC;
}
.column-inr .column-main .content-box table th, .column-inr .column-main .content-box table td {
  padding: 10px;
}
.column-inr .column-main .page-eyecatch {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 8 / 5;
}
.column-inr .column-main .page-eyecatch img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.column-inr .column-main .page-imgtxt-box .page-imgtxt-img {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.column-inr .column-main .page-img-col2 > div,
.column-inr .column-main .page-img-col3 > div {
  margin-bottom: 1.5em;
}
.column-inr .column-main .page-img-col2 > div img,
.column-inr .column-main .page-img-col3 > div img {
  border-radius: 20px;
}
.column-inr .column-main .page-img-col2 > div p,
.column-inr .column-main .page-img-col3 > div p {
  text-align: center;
  margin-top: 0.5em;
}
.column-inr .column-main .page-img-col {
  margin-bottom: 2em;
}
.column-inr .column-sub {
  margin-top: 3em;
}
.column-inr .column-sub .page-nav li {
  font-weight: 700;
}
.column-inr .column-sub .page-nav li + li {
  margin-top: 2px;
}
.column-inr .column-sub .page-nav li:nth-last-of-type(1) a {
  border-radius: 0 0 20px 20px;
}
.column-inr .column-sub .page-nav li a {
  display: block;
  position: relative;
  padding: 20px 20px 20px 42px;
  background-color: #F6F3EE;
}
.column-inr .column-sub .page-nav li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: translateY(-50%) rotate(45deg);
}
.column-inr .column-sub .page-nav li a:active, .column-inr .column-sub .page-nav li a:hover {
  background-color: #E2D9C9;
}
.column-inr .column-sub .page-nav .page-nav-top {
  font-size: 1.8rem;
}
.column-inr .column-sub .page-nav .page-nav-top a {
  border-radius: 20px 20px 0 0;
  background-color: #4D4D4D !important;
  color: #FFF !important;
  padding: 20px;
}
.column-inr .column-sub .page-nav .page-nav-top a::after {
  display: none;
}
.column-inr .column-sub .page-nav .page-nav-top a:active, .column-inr .column-sub .page-nav .page-nav-top a:hover {
  background-color: #000 !important;
}

/* 財団概要
----------------------------------------------------*/
/*ご挨拶*/
.greeting-txt-img .greeting-img img {
  border-radius: 20px;
  margin-bottom: 10px;
}
.greeting-txt-img .greeting-img p {
  text-align: center;
}

/* 施設案内
----------------------------------------------------*/
.facility-card-box .facility-card {
  margin-bottom: 30px;
  background-color: #F6F3EE;
  border-radius: 20px;
  display: flex;
}
.facility-card-box .facility-card a {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
}
.facility-card-box .facility-card a .facility-card-img {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.facility-card-box .facility-card a .facility-card-img h2 {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.2);
}
.facility-card-box .facility-card a .facility-card-txt {
  padding: 16px 20px 0;
  font-size: 1.8rem;
  margin-bottom: 0.75em;
}
.facility-card-box .facility-card a .facility-card-more {
  margin-top: auto;
  padding: 0px 36px 0px 20px;
  text-align: right;
  position: relative;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.facility-card-box .facility-card a .facility-card-more:active {
  background: #000;
  color: #FFF;
}
.facility-card-box .facility-card a .facility-card-more:active::before, .facility-card-box .facility-card a .facility-card-more:active::after {
  background-color: #FFF;
}
.facility-card-box .facility-card a .facility-card-more::before, .facility-card-box .facility-card a .facility-card-more::after {
  display: block;
  content: "";
  position: absolute;
  right: 20px;
  width: 12px;
  height: 3px;
  border-radius: 50vh;
}
.facility-card-box .facility-card a .facility-card-more::before {
  transform: translateY(-59%) rotate(-35deg);
  top: 59%;
  background-color: #000;
}
.facility-card-box .facility-card a .facility-card-more::after {
  transform: translateY(-50%) rotate(35deg);
  bottom: 50%;
  background-color: #000;
}

/*洗心の路*/
.senshinnomichi-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.senshinnomichi-img > div {
  width: 47%;
  margin-bottom: 1em;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}
.senshinnomichi-img > div img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*営業時間・入場料金*/
.pricelist-table thead th {
  width: 26%;
}
.pricelist-table thead th:nth-of-type(1) {
  width: 22%;
}
.pricelist-table tbody th, .pricelist-table tbody td {
  text-align: center;
}

.pricelist-box > div {
  margin-bottom: 30px;
}

.pricelist-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #CCC;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.pricelist-dl dt {
  width: 40%;
  border-top: 1px solid #CCC;
  padding: 10px;
}
.pricelist-dl dt:nth-of-type(odd) {
  background-color: #F2F2F2;
}
.pricelist-dl dd {
  width: 60%;
  text-align: right;
  border-top: 1px solid #CCC;
  padding: 10px;
}
.pricelist-dl dd:nth-of-type(odd) {
  background-color: #F2F2F2;
}

.open-close-box > div {
  margin-bottom: 30px;
}

.calendar-box > div {
  margin-bottom: 30px;
  line-height: 1.5;
}
.calendar-box .calender-table {
  white-space: nowrap;
}
.calendar-box .calender-table td {
  text-align: center;
  padding: 8px !important;
}
.calendar-box .calender-table td:nth-of-type(1) {
  text-align: right;
}
.calendar-box .calender-table td span {
  font-size: 1.2rem;
}
.calendar-box .calender-table .sun {
  color: #ED1C24;
}

/* アクセス情報
----------------------------------------------------*/
.page-access-box {
  margin-bottom: 2em;
}
.page-access-box .access-route {
  list-style: disc;
  padding-left: 2em;
}
.page-access-box .access-route li {
  margin-bottom: 1em;
}
.page-access-box .access-map {
  aspect-ratio: 15 / 16;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2em;
}

/* お問い合わせ
----------------------------------------------------*/
.contact-form-box {
  margin: 0 auto;
}
.contact-form-box .contact-form {
  margin-bottom: 30px;
}
.contact-form-box .contact-form label .contact-form-item {
  margin-bottom: 10px;
}
.contact-form-box .contact-form label .contact-form-item .rec {
  background-color: #4D4D4D;
  color: #FFF;
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.4rem;
  margin-right: 8px;
  line-height: 1.5;
  border-radius: 50vh;
}
.contact-form-box .contact-form label .contact-form-item .any {
  background-color: #FFF;
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.4rem;
  margin-right: 8px;
  line-height: 1.5;
  border-radius: 50vh;
  border: 1px solid #000;
}
.contact-form-box .contact-form label .contact-form-field .contact-txt {
  background-color: #FFF;
  padding: 10px 16px;
  width: 100%;
  border: 1px solid #CCC;
  border-radius: 15px;
}
.contact-form-box .contact-form-radio {
  margin-bottom: 30px;
}
.contact-form-box .contact-form-radio .contact-form-item {
  margin-bottom: 10px;
}
.contact-form-box .contact-form-radio .contact-form-item .rec {
  background-color: #4D4D4D;
  color: #FFF;
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.4rem;
  margin-right: 8px;
  line-height: 1.5;
  border-radius: 50vh;
}
.contact-form-box .contact-form-radio .contact-form-item .any {
  background-color: #FFF;
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.4rem;
  margin-right: 8px;
  line-height: 1.5;
  border-radius: 50vh;
  border: 1px solid #000;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio .wpcf7-list-item {
  margin-left: 0 !important;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span {
  display: block;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span > label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  margin-bottom: 0.75em;
  padding: .5em .7em;
  border: 1px solid #CCC;
  border-radius: 15px;
  background-color: #FFF;
  cursor: pointer;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span > label:has(:checked) {
  background-color: #F2F2F2;
  border: 1px solid #000;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span > label::before {
  border-radius: 50%;
  content: '';
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span > label::before {
  width: 16px;
  height: 16px;
  border: 4px solid #CCC;
}
.contact-form-box .contact-form-radio .contact-form-field .contact-radio > span > label:has(:checked)::before {
  width: 16px;
  height: 16px;
  border: 4px solid #000;
}

.contact-form-btn-box .contact-btn {
  display: block;
  background-color: #000;
  color: #FFF;
  border-radius: 50vh;
  height: 48px;
  line-height: 48px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border: 1px solid #000;
}
.contact-form-btn-box .contact-btn:active, .contact-form-btn-box .contact-btn:hover {
  background-color: #FFF;
  color: #000;
}

/* 観る・学ぶ・繋ぐ
----------------------------------------------------*/
.read-box {
  margin-bottom: 3em;
}
.read-box h2 {
  font-size: 2.7rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.read-box h2 span {
  display: inline-block;
}
.read-box p {
  font-size: 1.8rem;
}

.concept-box:nth-of-type(n+2) {
  margin-top: 2em;
}
.concept-box h3 {
  font-size: 2.0rem;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}
.concept-box h3::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 90%;
  background-color: #000;
  transform: translateY(-50%);
}
.concept-box .concept .concept-img {
  margin-bottom: 1em;
}
.concept-box .concept .concept-img img {
  border-radius: 20px;
}

.concept-tag-box {
  background-color: #f6f3ee;
  padding: 20px;
  margin-top: 3em;
}
.concept-tag-box h3 {
  font-size: 2.0rem;
  text-align: center;
  line-height: 1.5;
}
.concept-tag-box .concept-tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
}
.concept-tag-box .concept-tag > div {
  display: inline-block;
  margin: 5px 8px;
}
.concept-tag-box .concept-tag > div a {
  display: block;
  padding: 8px 16px;
  background-color: #FFF;
  border-radius: 8px;
  color: #808080;
  text-decoration: underline;
}
.concept-tag-box .concept-tag > div a:active, .concept-tag-box .concept-tag > div a:hover {
  text-decoration: none;
}

/*学ぶ*/
.concept-card-box {
  margin-top: 3em;
}

/*繋ぐ*/
.conect-box .conect-img {
  margin-bottom: 1em;
}
.conect-box .conect-img img {
  border-radius: 20px;
}
.conect-box .conect-txt p {
  margin-bottom: 1em;
}

/* 404
----------------------------------------------------*/
.notfound {
  font-size: 2.4rem;
  margin-bottom: 1em;
}

.notfound-txt a {
  color: #808080;
  text-decoration: underline;
}
.notfound-txt a:active, .notfound-txt a:hover {
  text-decoration: none;
}

/* 投稿
----------------------------------------------------*/
/*投稿タイトル*/
.post-ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

/*記事下ボタン*/
.post-btm-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
  font-size: 1.4rem;
}
.post-btm-btn > div {
  text-align: center;
  line-height: 1.2;
}
.post-btm-btn > div > a {
  background: #FFF;
  color: #000;
  display: block;
  padding: 15px 17px;
  border-radius: 50vh;
  position: relative;
  border: 1px solid #000;
}
.post-btm-btn > div > a:hover {
  text-decoration: none;
  background: #000;
  color: #FFF;
}
.post-btm-btn .post-btm-btn-prev {
  width: 47%;
  order: 1;
}
.post-btm-btn .post-btm-btn-prev a {
  padding: 15px 17px 15px 30px;
}
.post-btm-btn .post-btm-btn-prev a:hover::before {
  border-top: solid 2px #FFF;
  border-left: solid 2px #FFF;
}
.post-btm-btn .post-btm-btn-prev a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 0;
  border-top: solid 2px #000;
  border-left: solid 2px #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.post-btm-btn .post-btm-btn-next {
  width: 47%;
  order: 2;
}
.post-btm-btn .post-btm-btn-next a {
  padding: 15px 30px 15px 17px;
}
.post-btm-btn .post-btm-btn-next a:hover::after {
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
.post-btm-btn .post-btm-btn-next a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 0;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.post-btm-btn .post-btm-btn-news {
  order: 3;
  width: 100%;
  margin-top: 15px;
}

/*お知らせリスト*/
.postlist-box {
  margin-bottom: 30px;
}
.postlist-box .postlist-detail {
  margin-bottom: 15px;
}
.postlist-box .postlist-detail:nth-last-of-type(1) {
  margin-bottom: 0;
}
.postlist-box .postlist-detail a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.postlist-box .postlist-detail a .postlist-img {
  width: 47%;
  aspect-ratio: 74 / 55;
  overflow: hidden;
  border-radius: 11px;
  position: relative;
}
.postlist-box .postlist-detail a .postlist-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.postlist-box .postlist-detail a .postlist-date-ttl {
  width: 47%;
}
.postlist-box .postlist-detail a .postlist-date-ttl .postlist-date {
  font-weight: 700;
  display: block;
  font-size: 1.7rem;
}
.postlist-box .postlist-detail a .postlist-date-ttl .postlist-ttl {
  display: block;
}
.postlist-box .postlist-none {
  text-align: center;
}

/* ページャー*/
.pagination {
  display: flex;
  align-items: center;
  margin: 50px auto;
  position: relative;
  width: 100%;
  line-height: 1.2;
  font-size: 1.3rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 8px;
  font-weight: 700;
}
.pagination .current {
  background: #000;
  color: #FFF;
  padding: 8px 12px;
  margin: 4px;
  border: 1px solid #000;
  border-radius: 50vh;
}
.pagination .dots {
  padding: 8px 12px;
}
.pagination > a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px 12px;
  border: 1px solid #000;
  background-color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  color: #000;
  border-radius: 50vh;
}
.pagination > a:hover {
  color: #FFF;
  border-color: #000;
  background: #000;
}

.post-sub > div {
  margin-bottom: 30px;
  background-color: #F6F3EE;
  padding: 20px;
}
.post-sub > div h3 {
  font-size: 2.0rem;
}

/*----------------------------------------------------------------------
タブレット
----------------------------------------------------------------------*/
@media (min-width: 560px) {
  /* ヘッダー
  ----------------------------------------------------*/
  header {
    position: absolute;
    height: 100px;
    top: 0;
    left: 0;
  }
  header .logo-box {
    width: 130px;
  }

  /* フッター
  ----------------------------------------------------*/
  footer .ftr-inr {
    padding: 40px;
  }
  footer .ftr-inr .ftr-logo-info .ftr-link-box,
  footer .ftr-inr .ftr-logo-info .ftr-link {
    font-size: 1.4rem;
  }
  footer .ftr-inr .ftr-nav {
    margin-bottom: 40px;
  }
  footer .ftr-inr .ftr-nav ul {
    line-height: 1.5;
    justify-content: flex-start;
  }
  footer .ftr-inr .ftr-nav ul li {
    width: 25%;
    margin-bottom: 1em;
  }

  /* ボタン
  ----------------------------------------------------*/
  .btn {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 共通
  ----------------------------------------------------*/
  .inr {
    padding: 40px;
  }

  /*----------------------------------------------------------------------
  トップページ
  ----------------------------------------------------------------------*/
  /* hero-area
  ----------------------------------------------------*/
  .hero-area .hero-inr h1 {
    max-width: 500px;
    width: 50%;
  }
  .hero-area .hero-inr .main-visual div {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 80vh;
  }
  .hero-area .hero-inr .main-visual div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease;
  }

  /* about-area
  ----------------------------------------------------*/
  .about-area .about-nav {
    display: block;
    background: #FFF;
    padding: 20px 15px;
    border-radius: 24px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    width: 84%;
    line-height: 1.5;
  }
  .about-area .about-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .about-area .about-nav ul li {
    width: 33%;
    text-align: center;
  }
  .about-area .about-nav ul li:nth-of-type(n+4) {
    margin-top: 1em;
  }
  .about-area .about-nav ul li a {
    display: block;
    position: relative;
  }
  .about-area .about-nav ul li a span {
    font-size: 1.4rem;
  }
  .about-area .about-nav ul li a:hover::after {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 50vh;
    background: #000;
    position: absolute;
    bottom: -8px;
  }
  .about-area .about-slider-pctb {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    display: block;
  }
  .about-area .about-slider-pctb .slick-slide {
    margin: 0 20px;
  }
  .about-area .about-slider-pctb .slick-slide a:active, .about-area .about-slider-pctb .slick-slide a:hover {
    opacity: 0.75;
  }
  .about-area .about-slider-pctb .slick-slide img {
    border-radius: 20px;
  }
  .about-area .about-slider-pctb .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
  }
  .about-area .about-slider-pctb .prev-arrow {
    left: 7.5%;
  }
  .about-area .about-slider-pctb .prev-arrow::before, .about-area .about-slider-pctb .prev-arrow::after {
    display: block;
    content: "";
    position: absolute;
    left: 12px;
    width: 12px;
    height: 3px;
    background-color: #000;
    border-radius: 50vh;
  }
  .about-area .about-slider-pctb .prev-arrow::before {
    transform: translateY(-50%) rotate(35deg);
    top: 55%;
  }
  .about-area .about-slider-pctb .prev-arrow::after {
    transform: translateY(-50%) rotate(-35deg);
    bottom: 55%;
  }
  .about-area .about-slider-pctb .next-arrow {
    right: 7.5%;
  }
  .about-area .about-slider-pctb .next-arrow::before, .about-area .about-slider-pctb .next-arrow::after {
    display: block;
    content: "";
    position: absolute;
    right: 12px;
    width: 12px;
    height: 3px;
    background-color: #000;
    border-radius: 50vh;
  }
  .about-area .about-slider-pctb .next-arrow::before {
    transform: translateY(-50%) rotate(-35deg);
    top: 55%;
  }
  .about-area .about-slider-pctb .next-arrow::after {
    transform: translateY(-50%) rotate(35deg);
    bottom: 55%;
  }
  .about-area .about-slider-sp {
    display: none;
  }
  .about-area .about-txt {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  /* t-content
  ----------------------------------------------------*/
  .t-content {
    /*観る*/
    /*学ぶ*/
    /*繋ぐ*/
  }
  .t-content .t-content-inr {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .t-content .t-content-img {
    margin-bottom: 0px;
    order: 2;
    width: 55%;
  }
  .t-content .t-content-txt {
    order: 1;
    width: 40%;
  }
  .t-content .t-content-txt h2 .t-content-ttl-ja {
    font-size: 7.2rem;
  }
  .t-content .t-content-txt h2 .t-content-ttl-en {
    font-size: 3.6rem;
  }
  .t-content .t-content-txt h2 .en-conect {
    bottom: -2em;
  }
  .t-content .t-content-txt p {
    margin-left: 96px;
    margin-bottom: 5em;
  }
  .t-content .t-content-txt .btn-black {
    width: calc(100% - 64px);
    margin-top: 50px;
  }
  .t-content .appre-img-box {
    display: flex;
    justify-content: space-between;
  }
  .t-content .appre-img-box > div {
    width: 31%;
  }
  .t-content .appre-img-box > div:nth-of-type(2) {
    margin-top: 54px;
  }
  .t-content .appre-img-box > div .appre-img {
    height: 275px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 8px;
  }
  .t-content .appre-img-box > div .appre-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .culture-img-box .culture-img01 {
    margin-bottom: 15px;
  }
  .t-content .culture-img-box .culture-img02 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
  }
  .t-content .culture-img-box .culture-img02 > div {
    width: 48%;
  }
  .t-content .culture-img-box .culture-img {
    margin-bottom: 8px;
  }
  .t-content .culture-img-box .culture-img img {
    border-radius: 20px;
  }
  .t-content .culture-img-box p {
    line-height: 1.5;
  }
  .t-content .culture-bgi01 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .t-content .conect-img-box .conect-img01 {
    margin-bottom: 30px;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box {
    margin-bottom: 8px;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) {
    display: flex;
    margin-bottom: 8px;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div {
    width: 31%;
    margin-right: 2.5%;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .conect-img-box .conect-img02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(1) {
    width: 31%;
    order: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    margin-top: -50px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(1) img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) {
    width: 57%;
    order: 1;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div {
    margin-bottom: 8px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div img {
    border-radius: 20px;
  }

  /* insta-area
  ----------------------------------------------------*/
  .insta-area .insta-box {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .insta-area .insta-box > div {
    width: 30%;
  }
  .insta-area .insta-box > div:nth-of-type(n+2) {
    margin-top: 0px;
  }
  .insta-area .insta-box > div:nth-of-type(n+4) {
    margin-top: 24px;
  }
  .insta-area .insta-box > div a img {
    border-radius: 20px;
  }

  /* news-area
  ----------------------------------------------------*/
  .news-area .news-box {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    margin-left: -2.5%;
    margin-right: -2.5%;
  }
  .news-area .news-box .news-detail {
    margin-bottom: 0px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    width: 30%;
  }
  .news-area .news-box .news-detail a {
    display: block;
  }
  .news-area .news-box .news-detail a .news-img {
    width: 100%;
    aspect-ratio: 27 / 20;
    border-radius: 20px;
  }
  .news-area .news-box .news-detail a .news-date-ttl {
    width: 100%;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-date {
    font-size: 1.8rem;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-ttl {
    display: block;
  }

  /* access-area
  ----------------------------------------------------*/
  .access-area .access-inr {
    padding: 40px;
  }
  .access-area .access-box {
    display: flex;
    justify-content: space-between;
  }
  .access-area .access-box .access-map {
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
  }
  .access-area .access-box .access-info {
    padding: 0px;
    width: 45%;
  }

  /* related-facility
  ----------------------------------------------------*/
  .related-facility {
    display: flex;
    justify-content: space-between;
  }
  .related-facility > div {
    width: 50%;
  }
  .related-facility > div .facility-inr {
    padding: 40px;
  }

  /*----------------------------------------------------------------------
  階層
  ----------------------------------------------------------------------*/
  /* page-hero-area
  ----------------------------------------------------*/
  .page-hero-area .page-hero-inr .page-ttl {
    font-size: 4.0rem;
  }
  .page-hero-area .page-hero-inr .page-hero-img {
    height: 28vh;
  }

  /* 階層1
  ----------------------------------------------------*/
  .page-content {
    font-size: 1.8rem;
  }
  .page-content .page-subbox h2 {
    font-size: 2.6rem;
  }

  /*階層用ボタン*/
  .pege-btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pege-btn-box .pege-btn {
    width: 46%;
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  .pege-btn-box .pege-btn a {
    padding: 16px;
  }
  .pege-btn-box .pege-btn a:hover {
    background: #000;
    color: #FFF;
  }
  .pege-btn-box .pege-btn a:hover::before, .pege-btn-box .pege-btn a:hover::after {
    background-color: #FFF;
  }

  /* 階層2
  ----------------------------------------------------*/
  .column-inr {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .column-inr .column-main .column-ttl h1 {
    font-size: 3.2rem;
  }
  .column-inr .column-main .content-box {
    margin-bottom: 3em;
    font-size: 1.8rem;
  }
  .column-inr .column-main .content-box:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .column-inr .column-main .content-box .sp-only {
    display: none;
  }
  .column-inr .column-main .content-box .content-subbox {
    margin-bottom: 1.5em;
  }
  .column-inr .column-main .content-box h2 {
    font-size: 2.6rem;
  }
  .column-inr .column-main .content-box h2 span {
    font-size: 2.0rem;
  }
  .column-inr .column-main .content-box h3 {
    font-size: 2.2rem;
  }
  .column-inr .column-main .page-eyecatch {
    margin-bottom: 40px;
    aspect-ratio: 16 / 9;
  }
  .column-inr .column-main .page-imgtxt-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2em;
  }
  .column-inr .column-main .page-imgtxt-box .page-imgtxt-img {
    margin-bottom: 0px;
    margin-top: 0.5em;
    width: 40%;
    order: 2;
  }
  .column-inr .column-main .page-imgtxt-box .page-imgtxt-txt {
    width: 55%;
    order: 1;
  }
  .column-inr .column-main .page-img-col2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column-inr .column-main .page-img-col2 > div {
    width: 46%;
    margin-bottom: 0;
  }
  .column-inr .column-main .page-img-col2 > div:nth-of-type(n+3) {
    margin-top: 2em;
  }
  .column-inr .column-main .page-img-col3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column-inr .column-main .page-img-col3 > div {
    width: 30%;
    margin-bottom: 0;
  }
  .column-inr .column-main .page-img-col3 > div:nth-of-type(n+4) {
    margin-top: 2em;
  }
  .column-inr .column-sub .page-nav {
    font-size: 1.8rem;
  }
  .column-inr .column-sub .page-nav .page-nav-top {
    font-size: 2.2rem;
  }

  /* 財団概要
  ----------------------------------------------------*/
  /*ご挨拶*/
  .greeting-txt-img {
    display: flex;
    justify-content: space-between;
  }
  .greeting-txt-img .greeting-txt {
    width: 65%;
  }
  .greeting-txt-img .greeting-img {
    width: 30%;
    margin-top: 0.5em;
  }
  .greeting-txt-img .greeting-img img {
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .greeting-txt-img .greeting-img p {
    text-align: center;
  }

  /* 施設案内
  ----------------------------------------------------*/
  .facility-card-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .facility-card-box .facility-card {
    width: 47%;
    margin-bottom: 40px;
  }

  /*洗心の路*/
  .senshinnomichi-img {
    margin-top: 40px;
  }
  .senshinnomichi-img > div {
    width: 23%;
  }

  /*営業時間・入場料金*/
  .pricelist-dl {
    width: 46%;
  }

  .calendar-box {
    display: flex;
    justify-content: space-between;
  }
  .calendar-box > div {
    margin-bottom: 0px;
    width: 47%;
  }

  /* アクセス情報
  ----------------------------------------------------*/
  .page-access-box .access-map {
    aspect-ratio: 8 / 5;
  }

  /* お問い合わせ
  ----------------------------------------------------*/
  .contact-form-box .contact-form {
    margin-bottom: 40px;
  }
  .contact-form-box .contact-form-radio {
    margin-bottom: 40px;
  }
  .contact-form-box .contact-form-radio .contact-form-field .contact-radio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-form-box .contact-form-radio .contact-form-field .contact-radio > span {
    width: 48%;
  }

  .contact-form-btn-box .contact-btn {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 観る・学ぶ・繋ぐ
  ----------------------------------------------------*/
  .read-box {
    margin-bottom: 4em;
  }
  .read-box h2 {
    font-size: 3.2rem;
  }
  .read-box h2 br {
    display: none;
  }
  .read-box p {
    font-size: 2.0rem;
  }

  .concept-box:nth-of-type(n+2) {
    margin-top: 3em;
  }
  .concept-box h3 {
    font-size: 2.2rem;
  }
  .concept-box .concept {
    display: flex;
    justify-content: space-between;
  }
  .concept-box .concept .concept-img {
    width: 30%;
    margin-bottom: 0;
    order: 2;
  }
  .concept-box .concept .concept-txt {
    width: 65%;
    order: 1;
  }

  .concept-tag-box {
    margin-top: 4em;
  }
  .concept-tag-box h3 {
    font-size: 2.2rem;
  }

  /*学ぶ*/
  .concept-card-box {
    margin-top: 4em;
  }

  /*繋ぐ*/
  .conect-box {
    display: flex;
    justify-content: space-between;
  }
  .conect-box .conect-img {
    width: 35%;
    margin-bottom: 0;
    order: 2;
  }
  .conect-box .conect-txt {
    width: 60%;
    order: 1;
  }
  .conect-box .concept-btn {
    max-width: 100%;
    margin-bottom: 1em;
  }
  .conect-box .concept-btn br {
    display: none;
  }

  /* 404
  ----------------------------------------------------*/
  .notfound {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 50px;
  }
  .notfound br {
    display: none;
  }

  .notfound-txt {
    text-align: center;
    margin-bottom: 50px;
  }

  /* 投稿
  ----------------------------------------------------*/
  /*投稿タイトル*/
  .post-ttl {
    font-size: 3.2rem;
  }

  /*記事下ボタン*/
  .post-btm-btn {
    font-size: 1.6rem;
  }
  .post-btm-btn .post-btm-btn-prev {
    width: 25%;
    order: 1;
  }
  .post-btm-btn .post-btm-btn-next {
    width: 25%;
    order: 3;
  }
  .post-btm-btn .post-btm-btn-news {
    order: 2;
    width: 45%;
    margin-top: 0;
  }

  /*投稿リスト*/
  .postlist-box {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
  }
  .postlist-box .postlist-detail {
    margin-bottom: 40px;
    margin-right: 5%;
    width: 30%;
  }
  .postlist-box .postlist-detail:nth-of-type(3n) {
    margin-right: 0;
  }
  .postlist-box .postlist-detail a {
    display: block;
  }
  .postlist-box .postlist-detail a .postlist-img {
    width: 100%;
    aspect-ratio: 27 / 20;
    border-radius: 20px;
  }
  .postlist-box .postlist-detail a .postlist-date-ttl {
    width: 100%;
  }
  .postlist-box .postlist-detail a .postlist-date-ttl .postlist-date {
    font-size: 1.8rem;
  }
  .postlist-box .postlist-detail a .postlist-date-ttl .postlist-ttl {
    display: block;
  }

  /* ページャー*/
  .pagination {
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------------------------
デスクトップ
----------------------------------------------------------------------*/
@media (min-width: 961px) {
  /* ヘッダー
  ----------------------------------------------------*/
  header {
    max-width: 1280px;
    left: 50%;
    transform: translateX(-50%);
    /*グローバルナビ*/
  }
  header .nav-box .drawer-hidden {
    display: none;
  }
  header .nav-box .drawer-open {
    display: none;
  }
  header .nav-box .global-nav {
    width: calc(100% - 180px);
    height: 100px;
    position: absolute;
    top: 0px;
    right: 0;
    background: none;
    transition: 0;
    padding: 20px;
  }
  header .nav-box .global-nav ul {
    display: flex;
    justify-content: flex-end;
    font-size: 1.8rem;
  }
  header .nav-box .global-nav ul li {
    border-bottom: none;
  }
  header .nav-box .global-nav ul li + li {
    margin-left: 2em;
  }
  header .nav-box .global-nav ul li a {
    padding: 0px;
    position: relative;
  }
  header .nav-box .global-nav ul li a:hover::after {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 50vh;
    background: #FFF;
    position: absolute;
    bottom: -8px;
  }

  /* フッター
  ----------------------------------------------------*/
  footer .ftr-inr {
    max-width: 1280px;
    width: 100%;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  footer .ftr-inr .ftr-logo-info {
    width: 30%;
  }
  footer .ftr-inr .ftr-nav {
    margin-bottom: 40px;
    width: 68%;
    border-left: 1px solid #FFF;
  }
  footer .ftr-inr .ftr-nav ul {
    line-height: 1.5;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0.5em 0 0.5em 2em;
  }
  footer .ftr-inr .ftr-nav ul li {
    width: 25%;
    margin-bottom: 0.75em;
    margin-top: 0.75em;
  }
  footer .ftr-inr .ftr-copy {
    width: 100%;
  }
  footer .gototop {
    position: fixed;
    top: 80%;
    right: 30px;
    font-size: 1.4rem;
    text-align: center;
    color: #FFF;
  }
  footer .gototop a {
    display: block;
    background: #4d4d4d;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    position: relative;
    border: 1px solid #FFF;
    margin: 0 auto;
  }
  footer .gototop a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 10px;
    height: 3px;
    border-radius: 50vh;
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    background-color: #FFF;
  }
  footer .gototop a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 45%;
    width: 3px;
    height: 10px;
    border-radius: 50vh;
    transform: translateY(-50%) translateX(50%) rotate(-45deg);
    background-color: #FFF;
  }

  /* 共通
  ----------------------------------------------------*/
  .inr {
    padding: 60px 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }

  /*----------------------------------------------------------------------
  トップページ
  ----------------------------------------------------------------------*/
  /* hero-area
  ----------------------------------------------------*/
  .hero-area .hero-inr h1 {
    max-width: 520px;
    width: 40%;
  }
  .hero-area .hero-inr .main-visual div {
    height: 90vh;
  }

  /* about-area
  ----------------------------------------------------*/
  .about-area .about-nav {
    padding: 30px 40px;
    margin: -40px auto 0;
    max-width: 1080px;
    width: 96%;
  }
  .about-area .about-nav ul {
    font-size: 1.8rem;
    justify-content: space-between;
  }
  .about-area .about-nav ul li {
    width: auto;
  }
  .about-area .about-nav ul li:nth-of-type(n+4) {
    margin-top: 0;
  }
  .about-area .about-nav ul li a span {
    font-size: 1.5rem;
  }
  .about-area .about-slider-pctb {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .about-area .about-slider-pctb .slick-slide {
    margin: 0 30px;
  }
  .about-area .about-slider-pctb .slide-arrow {
    width: 40px;
    height: 40px;
  }
  .about-area .about-slider-pctb .prev-arrow {
    left: 23.8%;
  }
  .about-area .about-slider-pctb .prev-arrow::before {
    top: 53%;
  }
  .about-area .about-slider-pctb .prev-arrow::after {
    bottom: 53%;
  }
  .about-area .about-slider-pctb .next-arrow {
    right: 23.8%;
  }
  .about-area .about-slider-pctb .next-arrow::before {
    top: 53%;
  }
  .about-area .about-slider-pctb .next-arrow::after {
    bottom: 53%;
  }
  .about-area .about-txt {
    width: 950px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .about-area .about-txt p {
    font-size: 2.4rem;
  }

  /* t-content
  ----------------------------------------------------*/
  .t-content {
    /*観る*/
    /*学ぶ*/
    /*繋ぐ*/
  }
  .t-content .t-content-img {
    width: 70%;
  }
  .t-content .t-content-txt {
    order: 1;
    width: 26%;
  }
  .t-content .t-content-txt h2 .t-content-ttl-ja {
    font-size: 6.0rem;
    margin-bottom: 15px;
  }
  .t-content .t-content-txt h2 .t-content-ttl-en {
    font-size: 3.1rem;
  }
  .t-content .t-content-txt h2 .en-conect {
    bottom: -1em;
  }
  .t-content .t-content-txt p {
    margin-left: 88px;
    margin-bottom: 5em;
    font-size: 1.8rem;
  }
  .t-content .t-content-txt .btn-black {
    width: calc(100% - 64px);
    margin-top: 50px;
  }
  .t-content .appre-img-box > div {
    width: 31%;
  }
  .t-content .appre-img-box > div:nth-of-type(2) {
    margin-top: 90px;
  }
  .t-content .appre-img-box > div .appre-img {
    height: 450px;
    margin-bottom: 10px;
  }
  .t-content .appre-img-box > div p {
    font-size: 1.8rem;
  }
  .t-content .culture-img-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .t-content .culture-img-box .culture-img01 {
    margin-bottom: 0px;
    width: 45%;
  }
  .t-content .culture-img-box .culture-img01 .culture-img {
    aspect-ratio: 1 / 1;
    position: relative;
  }
  .t-content .culture-img-box .culture-img01 .culture-img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .culture-img-box .culture-img02 {
    width: 50%;
    flex-wrap: wrap;
  }
  .t-content .culture-img-box .culture-img02 > div {
    width: 56%;
  }
  .t-content .culture-img-box .culture-img02 > div:nth-of-type(2) {
    margin: 0 0 0 auto;
  }
  .t-content .culture-img-box .culture-img {
    margin-bottom: 10px;
  }
  .t-content .culture-img-box p {
    font-size: 1.8rem;
  }
  .t-content .culture-img-box p br {
    display: none;
  }
  .t-content .culture-bgi01 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: bottom 0 left 15%;
    background-size: 80px auto;
  }
  .t-content .culture-bgi02 {
    background-position: bottom 15% left 15%;
    background-size: 75px auto;
  }
  .t-content .culture-bgi03 {
    background-position: top 0 left 20%;
    background-size: 75px auto;
    padding-top: 100px;
  }
  .t-content .conect-img-box {
    display: flex;
    justify-content: space-between;
  }
  .t-content .conect-img-box p {
    font-size: 1.8rem;
  }
  .t-content .conect-img-box .conect-img01 {
    margin-bottom: 0px;
    width: 56%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) {
    display: flex;
    margin-bottom: 0px;
    order: 2;
    width: 100%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div:nth-of-type(1) {
    aspect-ratio: 1 / 1;
    width: 31%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div:nth-of-type(2) {
    aspect-ratio: 4 / 3;
    width: 41%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    order: 1;
    width: 100%;
    aspect-ratio: 100 / 71;
    margin-bottom: 20px;
  }
  .t-content .conect-img-box .conect-img02 {
    display: block;
    width: 41%;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(1) {
    width: 70%;
    aspect-ratio: 56 / 39;
    margin-top: 0px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) {
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 20px 0 0 auto;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div {
    margin-bottom: 10px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div img {
    border-radius: 20px;
  }

  /* insta-area
  ----------------------------------------------------*/
  .insta-area .insta-box {
    max-width: 100%;
    margin: 0 auto 40px;
    flex-wrap: nowrap;
  }
  .insta-area .insta-box > div {
    width: 15%;
  }
  .insta-area .insta-box > div:nth-of-type(n+4) {
    margin-top: 0;
  }

  /* news-area
  ----------------------------------------------------*/
  .news-area .news-box {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  .news-area .news-box .news-detail a {
    display: block;
  }
  .news-area .news-box .news-detail a .news-img {
    width: 100%;
    aspect-ratio: 27 / 20;
    border-radius: 20px;
  }
  .news-area .news-box .news-detail a .news-date-ttl {
    width: 100%;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-date {
    font-size: 1.8rem;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-ttl {
    display: block;
  }

  /* access-area
  ----------------------------------------------------*/
  .access-area .access-inr {
    padding: 40px 0;
  }
  .access-area .access-box {
    max-width: 950px;
    margin: 0 auto;
  }
  .access-area .access-box .access-map {
    width: 62%;
    aspect-ratio: 4 / 3;
  }
  .access-area .access-box .access-info {
    width: 33%;
  }

  /* related-facility
  ----------------------------------------------------*/
  .related-facility > div {
    width: 50%;
  }
  .related-facility > div .facility-inr {
    padding: 40px;
    max-width: 640px;
  }
  .related-facility .facility-orochi .facility-inr {
    margin: 0 0 0 auto;
  }

  /*----------------------------------------------------------------------
  階層
  ----------------------------------------------------------------------*/
  /* page-hero-area
  ----------------------------------------------------*/
  .page-hero-area .page-hero-inr .page-ttl {
    font-size: 4.8rem;
  }
  .page-hero-area .page-hero-inr .page-hero-img {
    height: 36vh;
  }

  /* 階層1
  ----------------------------------------------------*/
  .page-box-inr {
    width: 840px;
    margin: 0 auto;
  }

  /*階層用ボタン*/
  .pege-btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pege-btn-box .pege-btn {
    width: 30%;
    font-size: 2.2rem;
    margin-bottom: 50px;
    margin-right: 5%;
  }
  .pege-btn-box .pege-btn:nth-of-type(3n) {
    margin-right: 0;
  }
  .pege-btn-box .pege-btn a {
    padding: 20px;
  }
  .pege-btn-box .pege-btn a:hover {
    background: #000;
    color: #FFF;
  }
  .pege-btn-box .pege-btn a:hover::before, .pege-btn-box .pege-btn a:hover::after {
    background-color: #FFF;
  }

  /* 階層2
  ----------------------------------------------------*/
  .column-inr {
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
  }
  .column-inr .column-main {
    width: 65.625%;
  }
  .column-inr .column-main .column-ttl h1 {
    font-size: 4.0rem;
  }
  .column-inr .column-main .column-ttl h1::before, .column-inr .column-main .column-ttl h1::after {
    width: 48px;
    height: 4px;
  }
  .column-inr .column-main .content-box h2 {
    font-size: 3.2rem;
  }
  .column-inr .column-main .content-box h2 span {
    font-size: 2.4rem;
  }
  .column-inr .column-main .content-box h3 {
    font-size: 2.6rem;
  }
  .column-inr .column-sub {
    width: 25%;
    margin-top: 0;
  }
  .column-inr .column-sub .page-nav {
    position: sticky;
    top: 80px;
  }

  /* 施設案内
  ----------------------------------------------------*/
  .facility-card-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .facility-card-box .facility-card {
    width: 30%;
    margin-bottom: 50px;
    transition: all .2s ease;
  }
  .facility-card-box .facility-card:hover {
    transform: scale(1.02);
  }

  /*洗心の路*/
  .senshinnomichi-img {
    margin-top: 50px;
  }
  .senshinnomichi-img > div {
    width: 22.5%;
    margin-bottom: 24px;
  }

  /*営業時間・入場料金*/
  .pricelist-box {
    display: flex;
    justify-content: space-between;
  }
  .pricelist-box > div {
    width: 46%;
  }

  .open-close-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .open-close-box > div {
    margin-bottom: 0px;
    width: 46%;
  }
  .open-close-box > div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 1em;
  }

  .calendar-box > div {
    width: 46%;
  }
  .calendar-box .calender-table td {
    padding: 10px !important;
  }
  .calendar-box .calender-table td span {
    font-size: 1.3rem;
  }

  /* アクセス情報
  ----------------------------------------------------*/
  .page-access-box {
    display: flex;
    justify-content: space-between;
  }
  .page-access-box .access-route {
    width: 52%;
    order: 2;
  }
  .page-access-box .access-map {
    width: 44%;
    order: 1;
  }

  /* 観る・学ぶ・繋ぐ
  ----------------------------------------------------*/
  .read-box {
    margin-bottom: 5em;
  }
  .read-box h2 {
    font-size: 4.0rem;
  }
  .read-box h2 br {
    display: none;
  }
  .read-box p {
    font-size: 2.0rem;
  }

  .concept-box:nth-of-type(n+2) {
    margin-top: 4em;
  }
  .concept-box h3 {
    font-size: 2.6rem;
  }
  .concept-box .concept {
    display: flex;
    justify-content: space-between;
  }
  .concept-box .concept .concept-img {
    width: 35%;
    margin-bottom: 0;
    order: 2;
  }
  .concept-box .concept .concept-txt {
    width: 60%;
    order: 1;
  }

  .concept-tag-box {
    margin-top: 5em;
  }
  .concept-tag-box h3 {
    font-size: 2.6rem;
  }

  .concept-card-box {
    margin-top: 5em;
  }
  .concept-card-box .facility-card {
    width: 23%;
  }

  /*繋ぐ*/
  .conect-box .concept-btn {
    max-width: 360px;
  }

  /* 投稿
  ----------------------------------------------------*/
  /*投稿タイトル*/
  .post-date {
    font-size: 1.8rem;
  }

  .post-ttl {
    font-size: 4.0rem;
  }

  /*記事下ボタン*/
  .post-btm-btn {
    font-size: 1.6rem;
  }
  .post-btm-btn .post-btm-btn-prev {
    width: 25%;
    order: 1;
  }
  .post-btm-btn .post-btm-btn-next {
    width: 25%;
    order: 3;
  }
  .post-btm-btn .post-btm-btn-news {
    order: 2;
    width: 45%;
    margin-top: 0;
  }

  .post-sub {
    width: 25%;
  }
  .post-sub > div {
    margin-bottom: 50px;
    padding: 20px 30px;
  }
  .post-sub > div h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
  .post-sub > div a:hover {
    text-decoration: underline;
  }
}
/*----------------------------------------------------------------------
印刷
----------------------------------------------------------------------*/
@media print {
  @page {
    margin: 10mm;
    size: 210mm 297mm;
    /* A4縦サイズの場合 */
  }
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時でも背景色や背景画像を表示 */
    width: 1280px;
    /* 印刷時の全ページ幅を統一（px数値はお好みで） */
    margin: 0 auto;
    zoom: 0.8;
    /* なるべく多くのブラウザで切れないようにするため */
  }

  /* ヘッダー
  ----------------------------------------------------*/
  header {
    /*グローバルナビ*/
  }
  header .nav-box .drawer-hidden {
    display: none;
  }
  header .nav-box .drawer-open {
    display: none;
  }
  header .nav-box .global-nav {
    width: calc(100% - 180px);
    height: 100px;
    position: absolute;
    top: 0px;
    right: 0;
    background: none;
    transition: 0;
    padding: 20px;
  }
  header .nav-box .global-nav ul {
    display: flex;
    justify-content: flex-end;
    font-size: 1.8rem;
  }
  header .nav-box .global-nav ul li {
    border-bottom: none;
  }
  header .nav-box .global-nav ul li + li {
    margin-left: 2em;
  }
  header .nav-box .global-nav ul li a {
    padding: 0px;
    position: relative;
  }
  header .nav-box .global-nav ul li a:hover::after {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 50vh;
    background: #FFF;
    position: absolute;
    bottom: -8px;
  }

  /* フッター
  ----------------------------------------------------*/
  footer .ftr-inr {
    max-width: 1280px;
    width: 100%;
    padding: 50px 30px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  footer .ftr-inr .ftr-logo-info {
    width: 30%;
  }
  footer .ftr-inr .ftr-nav {
    margin-bottom: 40px;
    width: 68%;
    border-left: 1px solid #FFF;
  }
  footer .ftr-inr .ftr-nav ul {
    line-height: 1.5;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 2em;
    padding-right: 0;
  }
  footer .ftr-inr .ftr-nav ul li {
    width: 25%;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  footer .ftr-inr .ftr-copy {
    width: 100%;
  }
  footer .gototop {
    display: none;
  }

  /* 共通
  ----------------------------------------------------*/
  .inr {
    padding: 60px 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }

  /*----------------------------------------------------------------------
  トップページ
  ----------------------------------------------------------------------*/
  /* hero-area
  ----------------------------------------------------*/
  .hero-area .hero-inr h1 {
    max-width: 520px;
    width: 40%;
  }
  .hero-area .hero-inr .main-visual div {
    height: 50vh;
  }

  /* about-area
  ----------------------------------------------------*/
  .about-area .about-nav {
    padding: 30px 40px;
    margin: -40px auto 0;
    max-width: 1080px;
    width: 96%;
  }
  .about-area .about-nav ul {
    font-size: 1.8rem;
  }
  .about-area .about-nav ul li {
    width: auto;
  }
  .about-area .about-nav ul li:nth-of-type(n+4) {
    margin-top: 0;
  }
  .about-area .about-nav ul li a span {
    font-size: 1.5rem;
  }
  .about-area .about-slider-sp {
    display: none;
  }
  .about-area .about-slider-pctb {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1280px;
  }
  .about-area .about-slider-pctb .slick-slide {
    margin: 0 30px;
    width: 640px !important;
  }
  .about-area .about-slider-pctb .slide-arrow {
    width: 40px;
    height: 40px;
  }
  .about-area .about-slider-pctb .prev-arrow {
    left: 23.8%;
  }
  .about-area .about-slider-pctb .prev-arrow::before {
    top: 53%;
  }
  .about-area .about-slider-pctb .prev-arrow::after {
    bottom: 53%;
  }
  .about-area .about-slider-pctb .next-arrow {
    right: 23.8%;
  }
  .about-area .about-slider-pctb .next-arrow::before {
    top: 53%;
  }
  .about-area .about-slider-pctb .next-arrow::after {
    bottom: 53%;
  }
  .about-area .about-txt {
    width: 950px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .about-area .about-txt p {
    font-size: 2.4rem;
  }

  /* t-content
  ----------------------------------------------------*/
  .t-content {
    padding-left: 30px;
    padding-right: 30px;
    /*観る*/
    /*学ぶ*/
    /*繋ぐ*/
  }
  .t-content .t-content-img {
    width: 68%;
  }
  .t-content .t-content-txt {
    order: 1;
    width: 28%;
  }
  .t-content .t-content-txt h2 .t-content-ttl-ja {
    font-size: 6.0rem;
    margin-bottom: 15px;
  }
  .t-content .t-content-txt h2 .t-content-ttl-en {
    font-size: 3.1rem;
    bottom: -1em;
  }
  .t-content .t-content-txt p {
    margin-left: 88px;
    margin-bottom: 5em;
    font-size: 1.8rem;
  }
  .t-content .t-content-txt .btn-black {
    width: calc(100% - 64px);
    margin-top: 50px;
  }
  .t-content .appre-img-box > div {
    width: 31%;
  }
  .t-content .appre-img-box > div:nth-of-type(2) {
    margin-top: 90px;
  }
  .t-content .appre-img-box > div .appre-img {
    height: 450px;
    margin-bottom: 10px;
  }
  .t-content .appre-img-box > div p {
    font-size: 1.8rem;
  }
  .t-content .culture-img-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .t-content .culture-img-box .culture-img01 {
    margin-bottom: 0px;
    width: 45%;
  }
  .t-content .culture-img-box .culture-img01 .culture-img {
    aspect-ratio: 1 / 1;
    position: relative;
  }
  .t-content .culture-img-box .culture-img01 .culture-img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-content .culture-img-box .culture-img02 {
    width: 50%;
    flex-wrap: wrap;
  }
  .t-content .culture-img-box .culture-img02 > div {
    width: 56%;
  }
  .t-content .culture-img-box .culture-img02 > div:nth-of-type(2) {
    margin: 0 0 0 auto;
  }
  .t-content .culture-img-box .culture-img {
    margin-bottom: 10px;
  }
  .t-content .culture-img-box p {
    font-size: 1.8rem;
  }
  .t-content .culture-img-box p br {
    display: none;
  }
  .t-content .culture-bgi01 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: bottom 0 left 15%;
    background-size: 80px auto;
  }
  .t-content .culture-bgi02 {
    background-position: bottom 15% left 15%;
    background-size: 75px auto;
  }
  .t-content .culture-bgi03 {
    background-position: top 0 left 20%;
    background-size: 75px auto;
    padding-top: 100px;
  }
  .t-content .conect-img-box {
    display: flex;
    justify-content: space-between;
  }
  .t-content .conect-img-box p {
    font-size: 1.8rem;
  }
  .t-content .conect-img-box .conect-img01 {
    margin-bottom: 0px;
    width: 56%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) {
    display: flex;
    margin-bottom: 0px;
    order: 2;
    width: 100%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div:nth-of-type(1) {
    aspect-ratio: 1 / 1;
    width: 31%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(1) > div:nth-of-type(2) {
    aspect-ratio: 4 / 3;
    width: 41%;
  }
  .t-content .conect-img-box .conect-img01 .conect-img01-box > div:nth-of-type(2) {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    order: 1;
    width: 100%;
    aspect-ratio: 100 / 71;
    margin-bottom: 20px;
  }
  .t-content .conect-img-box .conect-img02 {
    display: block;
    width: 41%;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(1) {
    width: 70%;
    aspect-ratio: 56 / 39;
    margin-top: 0px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) {
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 20px 0 0 auto;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div {
    margin-bottom: 10px;
  }
  .t-content .conect-img-box .conect-img02 > div:nth-of-type(2) > div img {
    border-radius: 20px;
  }

  /* insta-area
  ----------------------------------------------------*/
  .insta-area .insta-box {
    max-width: 90%;
    margin: 0 auto 40px;
    flex-wrap: nowrap;
  }
  .insta-area .insta-box > div {
    width: 15%;
  }
  .insta-area .insta-box > div:nth-of-type(n+4) {
    margin-top: 0;
  }

  /* news-area
  ----------------------------------------------------*/
  .news-area .news-box {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  .news-area .news-box .news-detail a {
    display: block;
  }
  .news-area .news-box .news-detail a .news-img {
    width: 100%;
    aspect-ratio: 27 / 20;
    border-radius: 20px;
  }
  .news-area .news-box .news-detail a .news-date-ttl {
    width: 100%;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-date {
    font-size: 1.8rem;
  }
  .news-area .news-box .news-detail a .news-date-ttl .news-ttl {
    display: block;
  }

  /* access-area
  ----------------------------------------------------*/
  .access-area .access-inr {
    padding: 40px 0;
  }
  .access-area .access-box {
    max-width: 950px;
    margin: 0 auto;
  }
  .access-area .access-box .access-map {
    width: 62%;
    aspect-ratio: 4 / 3;
  }
  .access-area .access-box .access-info {
    width: 33%;
  }

  /* related-facility
  ----------------------------------------------------*/
  .related-facility > div {
    width: 50%;
  }
  .related-facility > div .facility-inr {
    padding: 40px;
    max-width: 640px;
  }
  .related-facility .facility-orochi .facility-inr {
    margin: 0 0 0 auto;
  }

  /*----------------------------------------------------------------------
  階層
  ----------------------------------------------------------------------*/
  /* page-hero-area
  ----------------------------------------------------*/
  .page-hero-area .page-hero-inr .page-ttl {
    font-size: 4.8rem;
  }
  .page-hero-area .page-hero-inr .page-hero-img {
    height: 30vh;
  }

  /* 階層1
  ----------------------------------------------------*/
  .page-box-inr {
    width: 840px;
    margin: 0 auto;
  }

  /*階層用ボタン*/
  .pege-btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .pege-btn-box .pege-btn {
    width: 30%;
    font-size: 2.2rem;
    margin-bottom: 40px;
    margin-right: 5%;
  }
  .pege-btn-box .pege-btn:nth-of-type(3n) {
    margin-right: 0;
  }
  .pege-btn-box .pege-btn a {
    padding: 20px;
  }
  .pege-btn-box .pege-btn a:hover {
    background: #000;
    color: #FFF;
  }
  .pege-btn-box .pege-btn a:hover::before, .pege-btn-box .pege-btn a:hover::after {
    background-color: #FFF;
  }

  /* 階層2
  ----------------------------------------------------*/
  .column-inr {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
  }
  .column-inr .column-main {
    width: 840px;
  }
  .column-inr .column-main .column-ttl h1 {
    font-size: 4.0rem;
  }
  .column-inr .column-main .column-ttl h1::before, .column-inr .column-main .column-ttl h1::after {
    width: 48px;
    height: 4px;
  }
  .column-inr .column-main .content-box h2 {
    font-size: 3.2rem;
  }
  .column-inr .column-main .content-box h3 {
    font-size: 2.6rem;
  }
  .column-inr .column-sub {
    width: 320px;
    margin-top: 0;
  }

  /* 施設案内
  ----------------------------------------------------*/
  .facility-card-box {
    padding-left: 30px;
    padding-right: 30px;
  }
  .facility-card-box .facility-card {
    width: 30%;
    margin-bottom: 50px;
  }

  /*洗心の路*/
  .senshinnomichi-img {
    margin-top: 50px;
  }
  .senshinnomichi-img > div {
    width: 22.5%;
    margin-bottom: 24px;
  }

  /*営業時間・入場料金*/
  .open-close-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .open-close-box > div {
    margin-bottom: 0px;
    width: 46%;
  }
  .open-close-box > div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 1em;
  }

  .calendar-box > div {
    width: 46%;
  }
  .calendar-box .calender-table td {
    padding: 10px !important;
  }
  .calendar-box .calender-table td span {
    font-size: 1.3rem;
  }

  /* アクセス情報
  ----------------------------------------------------*/
  .page-access-box {
    display: flex;
    justify-content: space-between;
  }
  .page-access-box .access-route {
    width: 54%;
    order: 2;
  }
  .page-access-box .access-map {
    width: 40%;
    order: 1;
  }

  /* 観る・学ぶ・繋ぐ
  ----------------------------------------------------*/
  .read-box {
    margin-bottom: 5em;
  }
  .read-box h2 {
    font-size: 4.0rem;
  }
  .read-box h2 br {
    display: none;
  }
  .read-box p {
    font-size: 2.0rem;
  }

  .concept-box:nth-of-type(n+2) {
    margin-top: 4em;
  }
  .concept-box h3 {
    font-size: 2.6rem;
  }
  .concept-box .concept {
    display: flex;
    justify-content: space-between;
  }
  .concept-box .concept .concept-img {
    width: 35%;
    margin-bottom: 0;
    order: 2;
  }
  .concept-box .concept .concept-txt {
    width: 60%;
    order: 1;
  }

  .concept-tag-box {
    margin-top: 5em;
  }
  .concept-tag-box h3 {
    font-size: 2.6rem;
  }

  /*繋ぐ*/
  .conect-box .concept-btn {
    max-width: 360px;
  }

  /* 投稿
  ----------------------------------------------------*/
  /*投稿タイトル*/
  .post-date {
    font-size: 1.8rem;
  }

  .post-ttl {
    font-size: 4.0rem;
  }

  /*記事下ボタン*/
  .post-btm-btn {
    font-size: 1.6rem;
  }
  .post-btm-btn .post-btm-btn-prev {
    width: 25%;
    order: 1;
  }
  .post-btm-btn .post-btm-btn-next {
    width: 25%;
    order: 3;
  }
  .post-btm-btn .post-btm-btn-news {
    order: 2;
    width: 45%;
    margin-top: 0;
  }

  .post-sub {
    width: 25%;
  }
  .post-sub > div {
    margin-bottom: 50px;
    padding: 20px 30px;
  }
  .post-sub > div h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
}
