@charset "UTF-8";
/*  一般  */
/***************************************************************
  本体
***************************************************************/
body {
  max-width: 2500px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP";
  color: #070707;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 30px;
}

/***************************************************************
  ヘッダー
***************************************************************/
/*--------------------------------------------------------------
  ハンバーガー
--------------------------------------------------------------*/
.c-header {
  display: table;
  width: 100%;
  padding: 10px 15%; /* カスタマイズしてください */
  box-sizing: border-box;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0;
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションの設定 */
  z-index: 2;
}

.c-header h1 {
  display: table-cell;
  width: 15%;
  vertical-align: middle;
  box-sizing: border-box;
}

.c-header__logo img {
  display: inline-block;
  width: 80px;
}

.c-header__list {
  display: flex;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 2500px) {
  .c-hamburger-menu__list {
    display: table-cell;
    width: 85%;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  display: none;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: none;
}

.c-hamburger-menu__button {
  display: none;
}

.c-hamburger-menu__button-mark {
  display: none;
}

/*--------------------------------------------------------------
  固定追走
--------------------------------------------------------------*/
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 1; /* 表示時は不透明に */
  transform: translateY(0); /* 表示時は元の位置に戻る */
  z-index: 2;
}

/*--------------------------------------------------------------
  アコーディオン
--------------------------------------------------------------*/
header ul {
  padding: 0;
  color: #fff;
}
header ul.active {
  overflow-y: auto;
}
header ul li {
  display: inline-block;
  width: 14.2%;
  box-sizing: border-box;
  color: #070707;
  font-size: 14px;
  list-style: none;
}
header ul li.active button::before {
  transform: rotate(-135deg);
  transition: 0.5s;
}
header ul li.active button::after {
  transform: rotate(135deg);
  transition: 0.5s;
}
header ul li button {
  position: relative;
  width: 100%;
  padding: 10px;
  background: inherit;
  border: none;
  font-size: 1em;
  text-align: left;
  cursor: pointer;
}
header ul li button::before, header ul li button::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 1.5px;
  height: 8px;
  background: #070707;
  transition: 0.5s;
}
header ul li button::before {
  transform: rotate(-45deg);
  right: 20px;
}
header ul li button::after {
  transform: rotate(45deg);
  right: 15px;
}
header ul li ul {
  position: absolute;
  width: 10%;
  height: 0;
  padding: 0;
  margin: 0;
  background-image: linear-gradient(to right, #2aa092, #2aa092 10px, #eb5615 10px, #eb5615);
  background-size: 20px 100%;
  border-top: solid #fff 1px;
  overflow: hidden;
  transition: 0.5s;
}
header ul li ul li {
  width: 100%;
  border-bottom: dotted #fff 1px;
  color: #fff;
}
header ul li ul li a {
  display: block;
  padding: 10px;
}

/***************************************************************
  フッター
***************************************************************/
footer {
  background-image: url(image.php?id=28);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
footer #decoration {
  width: 100%;
  height: 100px;
  background-image: url(image.php?id=6);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
footer #facility {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 20px 15% 10px 15%;
  box-sizing: border-box;
  letter-spacing: 0;
  line-height: 1;
}
footer #facility article {
  display: table-cell;
  vertical-align: top;
  padding: 10px;
  box-sizing: border-box;
  background: #039a3f;
  text-align: center;
}
footer #facility article:nth-of-type(2) {
  background: #063490;
}
footer #facility article:nth-of-type(3) {
  background: #c0c0c0;
}
footer #facility article p.name {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
}
footer #facility article p.name span {
  display: block;
  width: 80%;
  margin: 0 auto 5px auto;
  padding: 5px 10px;
  background: #fff;
  color: #039a3f;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
}
footer #facility article:nth-of-type(2) p.name span {
  color: #063490;
}
footer #facility article:nth-of-type(3) p.name span {
  color: #c0c0c0;
}
footer #facility article p.link {
  margin-top: 20px;
}
footer #facility article p.link a {
  display: inline-block;
}
footer #facility article p.link a i {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  background: #fff;
  border-radius: 20px;
  color: #039a3f;
  font-size: 20px;
  line-height: 40px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
footer #facility article:nth-of-type(2) p.link a i {
  color: #063490;
}
footer #facility article:nth-of-type(3) p.link a i {
  color: #c0c0c0;
}
footer #facility article p.plan {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 20px;
}
footer #facility article p.plan span {
  display: inline-block;
  font-size: 25px;
}
footer #navigation {
  padding: 20px 15% 20px 15%;
}
footer #navigation p {
  text-align: center;
}
footer #navigation p a img {
  display: inline-block;
  width: 100%;
  max-width: 100px;
}
footer #navigation ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  list-style: none;
}
footer #navigation ul li {
  display: table-cell;
  vertical-align: bottom;
  box-sizing: border-box;
  text-align: center;
}
footer #navigation ul li a {
  position: relative;
  display: inline-block;
  color: #070707;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer #navigation ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px; /* 下線の太さ */
  background: #1a475f; /* 下線の色 */
  transition: width 0.3s ease;
}
footer #navigation ul li a:hover {
  color: #1a475f;
}
footer #navigation ul li a:hover::after {
  width: 100%;
}
footer #navigation ul li a i {
  font-size: 30px;
}
footer #navigation ul li a.no-hover {
  color: #1a475f; /* ホバー時も元の色のまま */
}
footer #navigation ul li a.no-hover::after {
  content: none; /* 下線も無効化 */
}
footer small {
  display: block;
  border-top: solid #070707 1px;
  color: #070707;
  text-align: center;
}
footer #pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 50px;
  border-top: solid 1px;
  padding: 0 0 0 50px;
  color: #00606e;
  text-decoration: none;
  transform: rotate(90deg);
}
footer #pagetop::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  display: block;
  width: 15px;
  border-top: solid 1px;
  color: #FF7F50;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*  トップページ  */
#home {
  /***************************************************************
    メインビジュアル
  ***************************************************************/
  /***************************************************************
    施設概要
  ***************************************************************/
  /***************************************************************
    Be-Wellプログラム
  ***************************************************************/
  /***************************************************************
    お知らせ
  ***************************************************************/
}
#home #visual .wrap {
  position: relative;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
#home #visual .swiper-slide-active .slide-img,
#home #visual .swiper-slide-duplicate-active .slide-img,
#home #visual .swiper-slide-prev .slide-img {
  animation: zoom 10s linear 0s 1 normal both;
}
#home #visual .slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
  line-height: 50px;
  text-shadow: 2px 2px 8px #070707;
  z-index: 1; /* スライダーよりも上に表示 */
  pointer-events: none; /* クリック操作を無効化 */
  white-space: nowrap;
  visibility: hidden; /* 初期状態では非表示にする */
}
#home #visual .slide-text span {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 500s ease forwards; /* アニメーション設定 */
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); /* 下からフェードイン */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置 */
  }
}
#home #visual .slide-img img {
  width: 100vw;
  height: calc(100vh - 71px);
  -o-object-fit: cover;
     object-fit: cover;
}
#home #visual .scroll_down {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
  z-index: 1;
}
#home #visual .scroll_down p {
  letter-spacing: 0.1vw;
}
#home #visual .scroll_down a {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}
#home #visual .scroll_down .mouse {
  position: relative;
  width: 35px;
  height: 55px;
  display: block;
  margin: 0 auto 10px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 23px;
}
#home #visual .scroll_down .mouse > * {
  position: absolute;
  top: 29%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}
@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}
#home #visual .recruitlink {
  position: absolute;
  bottom: 50px;
  left: 50px;
  display: block;
  text-align: center;
  z-index: 1;
}
#home #visual .recruitlink .block {
  width: 150px;
  height: 150px;
  margin: auto;
  background-image: url(image.php?id=27);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
#home #visual .recruitlink .block .circleText {
  padding: 5px;
  overflow: visible;
  animation: rotation 18s linear infinite;
}
#home #visual .recruitlink .block .circleText__circle {
  fill: none;
}
#home #visual .recruitlink .block .circleText__text {
  fill: #070707;
  font-size: 12px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#home #facility {
  padding: 400px 0 100px 0;
  box-sizing: border-box;
  background-image: url(image.php?id=7);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}
#home #facility .wrap {
  width: 70%;
  margin: 0 auto;
  padding: 100px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  overflow: visible;
}
#home #facility .wrap h2 {
  position: relative;
}
#home #facility .wrap h2 img {
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  display: inline-block;
  width: 300px;
  animation: fuwafuwa 2s ease-in-out infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
#home #facility .wrap .list {
  box-sizing: border-box;
  font-size: 0;
  letter-spacing: 10px;
  text-align: center;
}
#home #facility .wrap .list article {
  position: relative;
  display: inline-block;
  width: 30%;
  padding: 50px 0 0 0;
  box-sizing: border-box;
  background: #fff7cd;
  border-radius: 20px;
  box-shadow: 2px 2px 2px #808080;
}
#home #facility .wrap .list article p.number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #fc5758;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 50px;
  box-shadow: 2px 2px 2px #808080;
}
#home #facility .wrap .list article p.name {
  margin-bottom: 20px;
  color: #0495b0;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 4px;
}
#home #facility .wrap .list article p.capacity {
  width: 100px;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
  color: #0495b0;
  font-size: 14px;
  letter-spacing: 2px;
}
#home #facility .wrap .list article p.age {
  width: 100px;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
  color: #0495b0;
  font-size: 14px;
  letter-spacing: 2px;
}
#home #facility .wrap .list article p.picture {
  margin-top: 20px;
  padding: 0 20%;
}
#home #facility .wrap .list article p.picture img {
  display: inline-block;
  width: 100%;
}
#home #facility .wrap .lead {
  margin-top: 50px;
  text-align: center;
}
#home #facility .wrap .lead p {
  display: inline-block;
}
#home #facility .wrap .lead p a {
  display: inline-block;
  padding: 20px 50px;
  border: solid #1a475f 2px;
  border-radius: 50px;
  color: #1a475f;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}
#home #facility .wrap .lead p a i {
  margin-left: 20px;
}
#home #program {
  padding: 50px 0 200px 0;
  box-sizing: border-box;
  background: linear-gradient(to left, transparent 0%, #fff 30%, #fff 100%), url(image.php?id=11);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  font-size: 0;
  letter-spacing: 0;
}
#home #program .wrap {
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}
#home #program .wrap .picuture {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  box-sizing: border-box;
}
#home #program .wrap .picuture p {
  padding: 0 10%;
}
#home #program .wrap .picuture p img {
  display: inline-block;
  width: 100%;
}
#home #program .wrap .explain {
  display: inline-block;
  width: 60%;
  vertical-align: middle;
  padding: 100px 50px;
  box-sizing: border-box;
}
#home #program .wrap .explain h2 {
  color: #0495b0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 8px;
}
#home #program .wrap .explain p.text {
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 2px;
}
#home #program .wrap .explain p.lead {
  margin-top: 50px;
}
#home #program .wrap .explain p.lead a {
  display: inline-block;
  padding: 20px 50px;
  border: solid #1a475f 2px;
  border-radius: 50px;
  color: #1a475f;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}
#home #program .wrap .explain p.lead a i {
  margin-left: 20px;
}
#home #news {
  position: relative;
  background: #fff7cd;
}
#home #news .wrap {
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: visible;
}
#home #news .wrap .triangle {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 400px solid transparent;
  border-left: 400px solid transparent;
  border-bottom: 200px solid #fff7cd;
  border-top: 0;
  white-space: nowrap;
}
#home #news .wrap .triangle article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  margin-top: 70px;
  text-align: center;
}
#home #news .wrap .triangle img {
  display: inline-block;
  height: 70px;
}
#home #news .wrap .triangle h2 {
  margin-top: 20px;
  color: #0495b0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 8px;
}
#home #news .wrap .explain {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}
#home #news .wrap .explain::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -5%;
  width: 200px; /* 円の直径 */
  height: 200px; /* 円の直径 */
  background: url(image.php?id=14) no-repeat; /* 1つ目の画像 */
  background-size: 200px 200px; /* 各画像のサイズ */
  border-radius: 50%; /* 円形 */
  transform: translate(-50%, -50%);
}
#home #news .wrap .explain::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -30%;
  width: 200px; /* 円の直径 */
  height: 200px; /* 円の直径 */
  background: url(image.php?id=15) no-repeat; /* 1つ目の画像 */
  background-size: 200px 200px; /* 各画像のサイズ */
  border-radius: 50%; /* 円形 */
  transform: translate(-50%, -50%);
}
#home #news .wrap .explain dl {
  padding: 50px 100px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  font-size: 0;
  letter-spacing: 0;
}
#home #news .wrap .explain dl dt {
  display: inline-block;
  width: 40%;
  vertical-align: top;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
}
#home #news .wrap .explain dl dt span {
  display: inline-block;
  margin-left: 20px;
  padding: 0 10px;
  background: #0495b0;
  border-radius: 5px;
  color: #fff;
}
#home #news .wrap .explain dl dd {
  display: inline-block;
  width: 60%;
  vertical-align: top;
  box-sizing: border-box;
}
#home #news .wrap .explain dl dd a {
  width: 100%;
  display: inline-block;
  color: #1a475f;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
#home #news .wrap .lead {
  margin-top: 50px;
  padding-bottom: 100px;
  text-align: center;
}
#home #news .wrap .lead p {
  display: inline-block;
}
#home #news .wrap .lead p a {
  display: inline-block;
  padding: 20px 50px;
  border: solid #1a475f 2px;
  border-radius: 50px;
  color: #1a475f;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}
#home #news .wrap .lead p a i {
  margin-left: 20px;
}

/*  下層ページ  */
#lower {
  /***************************************************************
    ぱんくずリスト
  ***************************************************************/
  /***************************************************************
    見出し
  ***************************************************************/
  /***************************************************************
    私たちについて
  ***************************************************************/
  /***************************************************************
    サービス
  ***************************************************************/
  /***************************************************************
    施設案内
  ***************************************************************/
  /***************************************************************
    ご利用案内
  ***************************************************************/
  /***************************************************************
    採用情報
  ***************************************************************/
  /***************************************************************
    サイトマップ
  ***************************************************************/
  /***************************************************************
    プライバシーポリシー
  ***************************************************************/
  /***************************************************************
    利用規約
  ***************************************************************/
  /***************************************************************
    お知らせ
  ***************************************************************/
}
#lower #breadcrumb {
  padding: 100px 0;
  box-sizing: border-box;
  background: linear-gradient(to left, transparent 0%, #fff 50%, #fff 100%), url(image.php?id=16);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
#lower #breadcrumb h2 {
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
  color: #0495b0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 8px;
}
#lower #breadcrumb h2 span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}
#lower #breadcrumb ol {
  width: 70%;
  margin: 20px auto 0 auto;
  box-sizing: border-box;
  list-style-type: none;
}
#lower #breadcrumb ol li {
  display: inline-block;
}
#lower #breadcrumb ol li:nth-of-type(n+2)::before {
  content: "　>　";
}
#lower #breadcrumb ol li a {
  color: #1a475f;
  text-decoration: underline;
}
#lower .loop-wrap {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; /* 範囲外のテキストを非表示 */
  width: 100%; /* 必要な幅に設定 */
  height: 200px;
  white-space: nowrap; /* テキストが折り返されないようにする */
}
#lower .loop-wrap:nth-of-type(n+2) {
  margin-top: 100px;
}
#lower .loop-wrap ul {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex; /* 横並び配置 */
  width: 100%;
  margin: 0;
  padding: 0;
  animation: loop-slide 20s linear infinite; /* 無限ループ */
  list-style: none;
}
#lower .loop-wrap ul li {
  display: inline-block;
  width: 100%;
  color: #f5f5f5;
  font-size: 200px;
  font-weight: bold;
  letter-spacing: 40px;
  line-height: 1;
}
@keyframes loop-slide {
  from {
    transform: translateX(100%); /* 画面外の右端から開始 */
  }
  to {
    transform: translateX(-100%); /* 画面外の左端まで移動 */
  }
}
#lower .loop-wrap h3 {
  padding: 100px;
  border-left: solid #070707 1px;
  font-size: 30px;
  letter-spacing: 6px;
  z-index: 1;
}
#lower h4 {
  position: relative;
  margin-top: 50px;
  font-size: 30px;
  letter-spacing: 6px;
  line-height: 100px;
  text-indent: 36px;
}
#lower h4::after {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, rgb(154, 213, 219) 0%, rgb(161, 219, 154) 100%); /*グラデーションの設定*/
  border-radius: 48% 52% 65% 35%/47% 37% 63% 53%; /*流体シェイプの設定*/
  z-index: -1;
}
#lower #about {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #about .philosophy {
  margin-top: 50px;
}
#lower #about .philosophy p:nth-of-type(n+2) {
  margin-top: 10px;
}
#lower #about .feature {
  margin-top: 50px;
}
#lower #about .feature ol {
  width: 95%;
  margin: 20px 0 0 auto;
  box-sizing: border-box;
  list-style-type: decimal-leading-zero;
}
#lower #about .feature p:nth-of-type(n+2) {
  margin-top: 20px;
}
#lower #service {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #service .program {
  margin-top: 50px;
}
#lower #service .program .person {
  box-sizing: border-box;
  font-size: 0;
  letter-spacing: 0;
}
#lower #service .program .person article {
  position: relative;
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
}
#lower #service .program .person article p.img {
  width: 100%;
  height: 300px;
}
#lower #service .program .person article p.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%) brightness(80%);
  transition: 0.5s linear;
}
#lower #service .program .person article p.img img:hover {
  -webkit-filter: grayscale(0%) brightness(80%);
}
#lower #service .program .person article p.name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}
#lower #service .program .image {
  margin-top: 50px;
}
#lower #service .program .image p img {
  display: inline-block;
  width: 100%;
}
#lower #service .program .text {
  margin-top: 50px;
}
#lower #service .program .feature {
  margin-top: 50px;
}
#lower #service .program .feature ol {
  width: 95%;
  margin: 20px 0 0 auto;
  box-sizing: border-box;
  list-style-type: decimal-leading-zero;
}
#lower #service .program .feature p:nth-of-type(n+2) {
  margin-top: 20px;
}
#lower #service .gymnastics {
  margin-top: 50px;
}
#lower #service .gymnastics .image {
  margin-top: 50px;
}
#lower #service .gymnastics .image p img {
  display: inline-block;
  width: 100%;
}
#lower #service .gymnastics .text {
  margin-top: 50px;
}
#lower #service .gymnastics .feature {
  margin-top: 50px;
}
#lower #service .gymnastics .feature ol {
  width: 95%;
  margin: 20px 0 0 auto;
  box-sizing: border-box;
  list-style-type: decimal-leading-zero;
}
#lower #service .activity {
  margin-top: 50px;
}
#lower #service .activity .text {
  margin-top: 50px;
}
#lower #service .activity .schedule {
  margin-top: 50px;
  box-sizing: border-box;
  font-size: 0;
  letter-spacing: 0;
}
#lower #service .activity .schedule p {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
#lower #service .activity .schedule p img {
  display: inline-block;
  width: 100%;
}
#lower #facility {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #facility .table {
  box-sizing: border-box;
  margin-top: 50px;
  font-size: 0;
  letter-spacing: 0;
}
#lower #facility .table .cell {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
#lower #facility .table .cell:nth-of-type(1) {
  padding-right: 50px;
}
#lower #facility .table .cell:nth-of-type(2) {
  padding-left: 50px;
}
#lower #facility .table .cell table {
  width: 100%;
  box-sizing: border-box;
}
#lower #facility .table .cell table thead {
  width: 100%;
  box-sizing: border-box;
}
#lower #facility .table .cell table thead tr {
  width: 100%;
  box-sizing: border-box;
}
#lower #facility .table .cell table thead tr th {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  color: #0495b0;
  font-size: 20px;
  letter-spacing: 4px;
  white-space: nowrap;
}
#lower #facility .table .cell table thead tr th img {
  position: absolute;
  top: 0;
  right: -100px;
  display: inline-block;
  width: 100px;
}
#lower #facility .table .cell table tbody {
  width: 100%;
  box-sizing: border-box;
}
#lower #facility .table .cell table tbody tr {
  width: 100%;
  box-sizing: border-box;
}
#lower #facility .table .cell table tbody tr th {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  border: solid #070707 1px;
  font-size: 14px;
  letter-spacing: 2px;
}
#lower #facility .table .cell table tbody tr td {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
  border: solid #070707 1px;
  font-size: 14px;
  letter-spacing: 2px;
}
#lower #facility .map {
  margin-top: 50px;
}
#lower #facility .map iframe {
  width: 100%;
  height: 500px;
}
#lower #facility .exteriorp {
  margin-top: 50px;
}
#lower #facility .exteriorp p {
  width: 100%;
  height: 500px;
}
#lower #facility .exteriorp p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lower #facility .staff article {
  margin-top: 50px;
  box-sizing: border-box;
  font-size: 0;
  letter-spacing: 0;
}
#lower #facility .staff article .image {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  padding: 0 5%;
  box-sizing: border-box;
}
#lower #facility .staff article .image img {
  display: inline-block;
  width: 100%;
  border-radius: 50%;
}
#lower #facility .staff article .text {
  display: inline-block;
  width: 60%;
  vertical-align: middle;
  padding: 0 0 0 10%;
  box-sizing: border-box;
}
#lower #facility .staff article .text p.name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}
#lower #facility .staff article .text p.qualification {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
}
#lower #facility .staff article .text p.message {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
}
#lower #guide {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #guide .content {
  margin-top: 50px;
}
#lower #guide .content .qa-6 {
  margin-bottom: 5px;
  border-bottom: 2px solid #d6dde3;
}
#lower #guide .content .qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  cursor: pointer;
}
#lower #guide .content .qa-6 summary::before {
  position: absolute;
  left: 1em;
  color: #75bbff;
  content: "Q";
}
#lower #guide .content .qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}
#lower #guide .content .qa-6[open] summary::after {
  transform: rotate(225deg);
}
#lower #guide .content .qa-6[open] p {
  transform: none;
  opacity: 1;
}
#lower #guide .content .qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  transition: transform 0.5s, opacity 0.5s;
}
#lower #guide .content .qa-6 p::before {
  position: absolute;
  left: 1em;
  color: #ff8d8d;
  content: "A";
}
#lower #recruit {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #sitemap {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #sitemap .content ul {
  margin-top: 100px;
  box-sizing: border-box;
  font-size: 0;
  letter-spacing: 0;
}
#lower #sitemap .content ul li {
  display: inline-block;
  width: 25%;
  box-sizing: border-box;
}
#lower #sitemap .content ul li a {
  color: #1a475f;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: underline;
}
#lower #privacy {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #privacy .list {
  margin-top: 30px;
}
#lower #privacy .list dt {
  counter-increment: num;
}
#lower #privacy .list dt:not(:first-child) {
  margin-top: 10px;
}
#lower #privacy .list dt::before {
  content: counter(num) ".";
}
#lower #privacy .list dd {
  margin: 5px 0 0 1.5em;
}
#lower #terms {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #terms .list {
  margin-top: 30px;
}
#lower #terms .list dt:not(:first-child) {
  margin-top: 30px;
}
#lower #terms .list dd {
  counter-reset: num 0;
  margin: 5px 0 0 1.5em;
}
#lower #terms .list dd p:not(:first-child) {
  margin-top: 10px;
}
#lower #terms .list ol li {
  counter-increment: num;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
#lower #terms .list ol li:not(:first-child) {
  margin-top: 5px;
}
#lower #terms .list ol li::before {
  content: counter(num) ".";
  margin-right: 0.5em;
}
#lower #news {
  width: 70%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
#lower #news .news article p.midashi {
  font-size: 20px;
  letter-spacing: 4px;
}
#lower #news .news article p.date {
  margin-top: 20px;
}
#lower #news .news article p.theme {
  display: inline-block;
  margin-top: 20px;
  padding: 0 10px;
  background: #0495b0;
  border-radius: 5px;
  color: #fff;
}
#lower #news .news article .text {
  margin-top: 20px;
}
#lower #news .news article .text p:nth-of-type(n+2) {
  margin-top: 10px;
}
#lower #news .news article .text img {
  display: inline-block;
  width: 100%;
}
#lower #news #pagination {
  margin-top: 100px;
}
#lower #news #pagination ul {
  box-sizing: border-box;
  font-size: 0;
  list-style: none;
}
#lower #news #pagination ul li {
  display: inline-block;
  width: 5%;
  box-sizing: border-box;
  letter-spacing: 0;
  text-align: center;
}
#lower #news #pagination ul li a {
  padding: 10px;
  border: solid #070707 1px;
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
}/*# sourceMappingURL=pc.css.map */

#lower p.lead {
  margin-top: 50px;
text-align:center;
}
#lower p.lead a {
  display: inline-block;
  margin: 0 10px;
  padding: 20px 50px;
  border: solid #1a475f 2px;
  border-radius: 50px;
  color: #1a475f;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}
#lower p.lead a i {
  margin-left: 20px;
}

.sp-only {
display: none;
}