@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

.u-desktop {
  display: block;
}

img{height: auto;}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none !important;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

html {
  font-size: 16px;
  scroll-padding-top: 7.5rem;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
    scroll-padding-top: 6.25rem;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* PC版Chromeで拡縮画像ぼやけ対策 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* iPhoneSafariで画像ジャギ対策 */
img {
  image-rendering: auto;
}

/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

html.is-fixed {
  overflow: hidden;
}

main + .access {
  margin-top: 110px;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  main + .access {
    margin-top: 3.75rem;
  }
}

.access-detail {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.access-detail__contact {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.access-detail__city {
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .access-detail__city {
    padding-left: 0.5rem;
  }
}

.access-detail__facility {
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .access-detail__facility {
    display: block;
    padding-left: 0;
  }
}

.access-detail__fax {
  padding-left: 24px;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .access-detail__fax {
    padding-left: 0.5rem;
  }
}

.access__map iframe {
  width: 100%;
  height: 480px;
  height: 30rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    height: 16.25rem;
  }
}

.access__info {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: #2e334e;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access__info {
    padding: 2.5rem 0;
  }
}

.access__info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .access__info-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.access__info-facility {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .access__info-facility {
    font-size: 1.125rem;
  }
}

.access__sns {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.access__sns:hover {
  opacity: 0.7;
}

.access__sns img {
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.access__contact-button {
  margin-top: 16px;
  margin-top: 1rem;
}

.access__detail {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
}

.access__adress {
  line-height: 1.5;
}

.access__contact {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.common-page__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .common-page__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.125rem;
  }
}

.common-page__sidebar {
  max-width: 21.666666%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-page__sidebar {
    max-width: none;
  }
}

.common-page__content {
  max-width: 75%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-page__content {
    max-width: none;
  }
}

.common-page__section + .common-page__section {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .common-page__section + .common-page__section {
    margin-top: 2.5rem;
  }
}

.common-page__contents {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .common-page__contents {
    margin-top: 1.25rem;
  }
}

.contact-button {
  padding: 17px 50px;
  padding: 1.0625rem 3.125rem;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #1f4bcd;
  background-color: #1f4bcd;
  border-radius: 3.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-button:hover {
  color: #cd9e1f;
  background-color: #fff;
  opacity: 1;
}

.contact-button.contact-button--white {
  color: #2e334e;
  background-color: #fff;
  border: none;
}

.contact-button.contact-button--white:hover {
  opacity: 0.7;
}

.download__links {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .download__links {
    margin-top: 1.25rem;
  }
}

.facility-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 52px;
  row-gap: 3.25rem;
  -webkit-column-gap: 2.625rem;
     -moz-column-gap: 2.625rem;
          column-gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .facility-card-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.facility-card__title {
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  background-color: #267cc0;
  color: #fff;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 0.3125rem;
}

.facility-card__image {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .facility-card__image {
    margin-top: 0.625rem;
  }
}

.facility-card__image img {
  aspect-ratio: 580/360;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-card__spec {
  margin-top: 16px;
  margin-top: 1rem;
}

.facility-card__spec-list {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  gap: 2.1875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .facility-card__spec-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}

.facility-card__spec-list + .facility-card__spec-list {
  padding-top: 16px;
  padding-top: 1rem;
}

.facility-card__term {
  max-width: 69px;
  max-width: 4.3125rem;
  width: 100%;
  font-weight: 800;
  color: #267cc0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.facility-card__desc {
  font-weight: 500;
  color: #222;
}

.facility-link__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .facility-link__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.facility-link__item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.facility-link__item-img {
  position: relative;
  width: 100%;
}

.facility-link__item-img img {
  aspect-ratio: 640/340;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .facility-link__item-img img {
    aspect-ratio: 547/226;
  }
}

.facility-link__item-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.facility-link__item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .3);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.facility-link__item-img:hover::after {
  background-color: rgba(0, 0, 0, .1);
}

.facility-link__item-body {
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
}

.facility-link__item-title,
.facility-link__item-text {
  color: #fff;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}

.facility-link__item-title {
  font-size: clamp(20px, 2.08333vw, 40px);
  font-size: clamp(1.25rem, 2.08333vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

.facility-link__item-text {
  margin-top: clamp(12px, 1.5625vw, 30px);
  margin-top: clamp(0.75rem, 1.5625vw, 1.875rem);
  padding-left: 52px;
  padding-left: 3.25rem;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .facility-link__item-text {
    padding-left: 1.5625rem;
  }
}

.facility-link__item-text::before {
  position: absolute;
  content: "";
  background-image: url("../images/link-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 35%;
  left: 20px;
  left: 1.25rem;
  width: 18px;
  width: 1.125rem;
  height: 8px;
  height: 0.5rem;
}
@media screen and (max-width: 767px) {
  .facility-link__item-text::before {
    left: 0.3125rem;
    width: 0.875rem;
  }
}

.facility-overview__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  gap: 2.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .facility-overview__images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.facility-overview__images img {
  aspect-ratio: 580/360;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-overview__images.facility-overview__images--single {
  grid-template-columns: 1fr;
}

.facility-overview__images.facility-overview__images--single img {
  aspect-ratio: 1200/480;
}

.facility-overview__spec {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .facility-overview__spec {
    margin-top: 1.25rem;
  }
}

.facility-overview__spec-list {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  gap: 1.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3888888;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .facility-overview__spec-list {
    padding-bottom: 1rem;
    gap: 1.125rem;
    font-size: 1rem;
  }
}

.facility-overview__spec-list + .facility-overview__spec-list {
  padding-top: 16px;
  padding-top: 1rem;
}

.facility-overview__spec-term {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  font-weight: 800;
  color: #267cc0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .facility-overview__spec-term {
    max-width: 6.25rem;
  }
}

.facility-overview__spec-desc {
  font-weight: 500;
  color: #222;
}

.facility__overview {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .facility__overview {
    margin-top: 1rem;
  }
}

.facility__download-link {
  margin-top: 44px;
  margin-top: 2.75rem;
  margin-inline: auto;
  max-width: 690px;
  max-width: 43.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .facility__download-link {
    margin-top: 1.25rem;
  }
}

.facility__block + .facility__block {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.facility__card-list {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .facility__card-list {
    margin-top: 1.5rem;
  }
}

/*
.fees-layout {
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .fees-layout {
    margin-top: 3.5rem;
  }
}
*/

.fees-layout {
	margin-top: 62.5px;
	margin-top: 3.90625rem; /* 7.8125rem の半分 */
}

@media screen and (max-width: 767px) {
	.fees-layout {
	margin-top: 1.75rem; /* 3.5rem の半分 */
	}
}

.file-link {
  margin: 0 auto;
  padding: 14px 22px;
  padding: 0.875rem 1.375rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  gap: 1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background-color: #ffeae8;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .file-link {
    gap: 0.5rem;
    padding: 0.875rem 1.125rem;
    font-size: 0.8125rem;
  }
}

.file-link::before {
  content: "";
  position: absolute;
  left: 18px;
  left: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: 3px solid #e2574c;
  border-right: 3px solid #e2574c;
}
@media screen and (max-width: 767px) {
  .file-link::before {
    width: 0.5rem;
    height: 0.5rem;
    left: 0.75rem;
  }
}

.file-link:hover {
  opacity: 0.6;
}

.file-link__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .file-link__text {
    padding-left: 0.875rem;
  }
}

.file-link__icon {
  width: 28px;
  width: 1.75rem;
}
@media screen and (max-width: 767px) {
  .file-link__icon {
    width: 1.25rem;
  }
}

.file-link__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.file-link.file-link--excel {
  background-color: #e9f4ea;
}

.file-link.file-link--word {
  background-color: #e9eef5;
}

.file-link.file-link--white {
  font-size: 15px;
  font-size: 0.9375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .file-link.file-link--white {
    gap: 0.5rem;
    padding: 0.875rem 1.125rem;
    font-size: 0.8125rem;
  }
}

.file-link__icon.file-link__icon--white {
  width: 20px;
  width: 1.25rem;
}

.file-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.file-links.file-links--page {
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .file-links.file-links--page {
    gap: 0.625rem;
  }
}

.file-links__item {
  height: 100%;
}

.file-links__item--disc {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .file-links__item--disc {
    padding-bottom: 0.625rem;
  }
}

.file-links__disc {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .file-links__disc {
    margin-top: 0.625rem;
  }
}

.footer__organization {
  padding: 34px 0;
  padding: 2.125rem 0;
  background-color: #fff;
  max-width: 380px;
  max-width: 23.75rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__organization {
    padding: 1.25rem 0;
    max-width: 16.25rem;
  }
}

.footer__copyright {
  display: block;
  padding: 12px 0;
  padding: 0.75rem 0;
  background-color: #1e2f92;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  text-align: center;
}

.fv {
  position: relative;
  width: 100%;
}

.fv__img {
  aspect-ratio: 1920/750;
  width: 100%;
}

.fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fv__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: -1;
}

.header {
  height: 100px;
  height: 6.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 3.75rem;
  }
}

.header__inner {
  padding: 0 30px 0 48px;
  padding: 0 1.875rem 0 3rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 0 0 0.9375rem;
  }
}

.header__title {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__title a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1389px) {
  .header__title a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .header__title a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__title-logo {
  max-width: 204px;
  max-width: 12.75rem;
  width: auto;
  max-height: 60px;
  max-height: 3.75rem;
  height: auto;
}
@media (max-width: 1389px) {
  .header__title-logo {
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .header__title-logo {
    margin-top: 0;
    max-width: 6.25rem;
  }
}

.header__title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1e2f92;
}
@media (max-width: 1389px) {
  .header__title-text {
    padding-left: 0;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .header__title-text {
    font-size: 0.875rem;
  }
}

.header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 13px;
  padding: 0 0.8125rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #333;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav-item a:hover {
  opacity: 0.7;
}

.header__nav-contact {
  padding-left: 43px;
  padding-left: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  height: initial;
}

.header__nav-sns {
  padding-left: 20px;
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__nav-sns a {
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    position: relative;
    display: block;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 3.75rem;
    height: inherit;
    background-color: #266fd2;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.header__hamburger::after {
  position: absolute;
  content: "メニュー";
  width: 100%;
  bottom: 8px;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .header__hamburger.is-open::after {
    content: "閉じる";
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger span {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    background-color: #fff;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger span:nth-of-type(1) {
    top: -0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger span:nth-of-type(2) {
    top: -0.375rem;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger span:nth-of-type(3) {
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger.is-open::after {
    content: "閉じる";
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger.is-open span:nth-of-type(1) {
    top: -0.375rem;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger.is-open span:nth-of-type(3) {
    top: -0.625rem;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}

.header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__drawer {
    display: block;
    padding: 6.25rem 0;
    position: absolute;
    z-index: 900;
    top: 3.75rem;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #266fd2;
    border-top: 1px solid rgba(255, 255, 255, .4);
    overflow-y: scroll;
    scrollbar-width: none;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer.is-open {
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-list {
    margin: 0 auto;
    max-width: 18.75rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-item a {
    position: relative;
    padding: 1.0625rem 0;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-item a::after {
    content: "→";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-contact {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-link {
    margin-top: 2.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .header__drawer-sns img {
    width: 2.25rem;
    height: 2.25rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.inner {
  max-width: 1260px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 600px;
    width: 100%;
    padding-right: 25px;
    padding-left: 25px;
  }
}
/*
.page-hero {
  position: relative;
  width: 100%;
  min-height: 250px;
  min-height: 15.625rem;
  padding-top: 93px;
  padding-top: 5.8125rem;
  background-image: url("../images/page-top_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .page-hero {
    min-height: 10rem;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
*/

.page-hero {
	position: relative;
	width: 100%;
	min-height: 125px;        /* 250px の半分 */
	min-height: 7.8125rem;    /* 15.625rem の半分 */
	padding-top: 46.5px;      /* 93px の半分（小数OK） */
	padding-top: 2.90625rem;  /* 5.8125rem の半分 */
	padding-bottom: 46.5px;      /* ←追加：上と同じ */
	padding-bottom: 2.90625rem;  /* ←追加：上と同じ */
	background-image: url("../images/page-top_img.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
		.page-hero {
		min-height: 5rem; /* 10rem の半分 */
		padding-top: 0;
		padding-bottom: 0; /* 上下同じにするなら 0/0 で揃える */
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}



.page-hero__inner {
  padding-left: clamp(120px, 15.364583vw, 295px);
  padding-left: clamp(7.5rem, 15.364583vw, 18.4375rem);
}
@media screen and (max-width: 767px) {
  .page-hero__inner {
    padding-left: 3rem;
  }
}

.page-hero__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1e2f92;
	line-height: 1;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-hero__title {
    font-size: 1.5rem;
  }
}

.page-hero__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .page-hero__breadcrumb-list {
    gap: 0.125rem;
  }
}

.page-hero__breadcrumb-item {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .page-hero__breadcrumb-item {
    font-size: 0.875rem;
  }
}

.page-hero__breadcrumb-item + .page-hero__breadcrumb-item::before {
  content: "/";
  margin: 0 10px;
  margin: 0 0.625rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .page-hero__breadcrumb-item + .page-hero__breadcrumb-item::before {
    margin: 0 0.25rem;
  }
}

.page-nav {
  background-color: #f5f5f5;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-nav {
    background-color: transparent;
    background-color: initial;
    border-radius: 0;
    border-radius: initial;
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

.page-nav__list {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-nav__list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (max-width: 767px) {
  .page-nav__item {
    height: 100%;
  }
}

.page-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  gap: 0.9375rem;
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  border-radius: 0.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
  }
}

.page-nav__link:hover {
  opacity: 0.7;
}

.page-nav__link::before {
  content: "";
  display: inline-block;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #266fd2;
}

.page-section-title {
  position: relative;
  padding: 26px 0;
  padding: 1.625rem 0;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  color: #1e2f92;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-section-title {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    margin-bottom: 1.25rem;
  }
}

.page-section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1e2f92;
}

.page-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1e2f92;
}

.reserve-block-button {
  padding: 26px 180px;
  padding: 1.625rem 11.25rem;
  display: inline-block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background-color: #266fd2;
  border-radius: 0.625rem;
  border: 2px solid #266fd2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .reserve-block-button {
    padding: 0.875rem 3.5rem;
    font-size: 1rem;
  }
}

.reserve-block-button:hover {
  color: #266fd2;
  background-color: #fff;
  border: 2px solid #266fd2;
  opacity: 1;
}

/* SP下部固定予約ボタン */
.reserve-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .reserve-button {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #266fd2;
    z-index: 80;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .js-reserve-button.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .js-reserve-button.is-bottom {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.reserve-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  width: 100%;
  padding: 20px 0;
  padding: 1.25rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
}

.reserve-button__icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

.reserve-button__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.reserve-button__text {
  letter-spacing: 0.08em;
}

.reserve-top-button {
  position: absolute;
  top: 33%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.reserve-top-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 15px;
  row-gap: 0.9375rem;
  background-color: #266fd2;
  color: #fff;
  width: 70px;
  width: 4.375rem;
  height: 300px;
  height: 18.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 0.625rem 0 0 0.625rem;
  border: solid 2px #266fd2;
  border-right: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.reserve-top-button a:hover {
  background-color: #fff;
  color: #266fd2;
  opacity: 1;
}

.reserve-top-button__icon img {
  display: block;
  width: clamp(20px, 1.7708vw, 34px);
  width: clamp(1.25rem, 1.7708vw, 2.125rem);
  height: auto;
}

.reserve-top-button:hover .reserve-top-button__icon img {
  content: url("../images/icon_calendar02.png");
}

.reserve-top-button__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.reserve-top-button.reserve-top-button--page {
  top: 150%;
}
@media (max-width: 1440px) {
  .reserve-top-button.reserve-top-button--page {
    top: 85%;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .section-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}

.section-title.section-title--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title__icon {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .section-title__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.section-title__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-title__text {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  color: #1e2f92;
  line-height: 0.1em;
}
@media screen and (max-width: 767px) {
  .section-title__text {
    font-size: 1.125rem;
  }
}

.top-access__detail {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .top-access__detail {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}

.top-download__inner {
  margin: auto;
  padding: 0 30px;
  padding: 0 1.875rem;
  max-width: 750px;
  max-width: 46.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-download__inner {
    padding: 0 1.5625rem;
    max-width: 37.5rem;
  }
}

.top-info__inner {
  margin: auto;
  padding: 0 30px;
  padding: 0 1.875rem;
  max-width: 1520px;
  max-width: 95rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-info__inner {
    padding: 0 1.5625rem;
    max-width: 37.5rem;
  }
}

.top-info__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-info__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.top-info__news {
  margin: 0 auto;
  max-width: 47.260273%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-info__news {
    max-width: none;
  }
}

.top-info__guide {
  margin: 0 auto;
  max-width: 47.260273%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-info__guide {
    max-width: none;
  }
}

.top-info__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-info__list {
    margin-top: 1rem;
  }
}

.top-reserve {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .top-reserve {
    padding-top: 2.5rem;
  }
}

.top-reserve__inner {
  margin: auto;
  padding: 0 30px;
  padding: 0 1.875rem;
  max-width: 1620px;
  max-width: 101.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-reserve__inner {
    padding: 0 1.5625rem;
    max-width: 37.5rem;
  }
}

.top-reserve__button {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-reserve__button {
    margin-top: 1rem;
  }
}

.top-reserve__lists {
  margin-top: 37px;
  margin-top: 2.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
  gap: 0.625rem 1.875rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top-reserve__lists {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.usage-guide__file {
  margin-top: 16px;
  margin-top: 1rem;
}

.usage-guide__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

/*
.download-layout {
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .download-layout {
    margin-top: 3.5rem;
  }
}
*/

.download-layout {
	margin-top: 62.5px;
	margin-top: 3.90625rem; /* 7.8125rem の半分 */
}

@media screen and (max-width: 767px) {
	.download-layout {
	margin-top: 1.75rem; /* 3.5rem の半分 */
	}
}

/*
.facility-layout {
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .facility-layout {
    margin-top: 3.5rem;
  }
}
*/

.facility-layout {
	margin-top: 62.5px;
	margin-top: 3.90625rem; /* 7.8125rem の半分 */
}

@media screen and (max-width: 767px) {
	.facility-layout {
	margin-top: 1.75rem; /* 3.5rem の半分 */
	}
}

/*
.guide-layout {
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .guide-layout {
    margin-top: 3.5rem;
  }
}
*/

.guide-layout {
	margin-top: 62.5px;
	margin-top: 3.90625rem; /* 7.8125rem の半分 */
}

@media screen and (max-width: 767px) {
	.guide-layout {
	margin-top: 1.75rem; /* 3.5rem の半分 */
	}
}

.header-layout {
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header-layout {
    position: fixed;
  }
}

.top-access-layout {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .top-access-layout {
    margin-top: 2.5rem;
  }
}

.top-download-layout {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .top-download-layout {
    margin-top: 2.5rem;
  }
}

.top-info-layout {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .top-info-layout {
    margin-top: 2.5rem;
  }
}

.top-reserve-layout {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-reserve-layout {
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=styles.css.map */


/* 追記 */
.header_tel{display: flex; flex-direction: column; justify-content: center; font-family: fantasy; font-size: 1.5rem; padding: 0 15px;}
.header_tel span{display: block; font-size: 0.7rem; text-align: right; font-family: 'Noto Sans JP';}
.fv_txt{position: absolute; left: 5%; bottom: 5%; color: #fff; font-weight: 600; text-shadow: 2px 3px 1px rgba(0, 0, 0, 0.7);}
.fv_txt01{display: block; font-size: 3.25rem;}
.fv_txt02{display: block; font-size: 1.875rem;}
.top-reserve_flex{display: flex; gap: 30px; max-width: 1200px; margin: 0 auto;}
.top-reserve_flex_item{width: calc((100% - 30px)/2);}
.top-reserve_flex .top-reserve__lists{display: block;}
.top-reserve_flex .top-reserve__button{width: 100%; text-align: center;}
.top-reserve_flex .top-reserve__button a{padding: 1.625rem 0; display: block;}

.fees-img{max-width: 700px;}
.fees-img img{width: 100%; height: auto;}

.guide_h3{margin: 20px 0; font-size: 1rem; position: relative; padding-left: 15px;}
.guide_h3::before{content: ""; position: absolute; padding: 4px; background-color: #1e2f92; left: 0; top: 50%; transform: translateY(-50%);}

.riyo-nagare_img{width: 100%; height: auto; max-width: 700px;}
.guide-flow-img img{width: 100%; height: auto;}



@media screen and (max-width: 767px) {
.noneSP{display: none;}
.fv_txt01{font-size: 1.4rem;}
.fv_txt02{font-size: 0.875rem;}
.top-reserve_flex{flex-direction: column;}
.top-reserve_flex_item{width: 100%;}

.guide-flow-img_pc{display: none;}
.guide-flow-img{max-width: 700px;}

}

@media screen and (min-width: 768px) {
.nonePC{display: none;}
.guide-flow-img_sp{display: none;}
.guide-flow-img{max-width: 1000px;}

}


.topSecNews{}
.topSecNews01{ overflow:hidden; border-bottom:1px solid #ccc; padding:10px; margin-bottom:10px; }
.topSecNews01Date{ float: left; font-size: 11px; letter-spacing: 1px; width: 80px; margin-right: 10px; padding-top: 8px; }
.topSecNews01Catassoc,
.topSecNews01Catschool,
.topSecNews01Catboyscouts,
.topSecNews01Catsportscenter,
.topSecNews01Catleader,
.topSecNews01Catfestival,
.topSecNews01Catikagaku,
.topSecNews01Catrink,
.topSecNews01Catsurvey,
.topSecNews01Catdownload,
.topSecNews01Catwakuwaku,
.topSecNews01Catsportsclub,
.topSecNews01Catsiryou{ float: left; width: 110px;	text-align:center; font-size:11px; letter-spacing: 1px; margin-right: 20px;}
.topSecNews01Catassoc a{ display: block; padding:8px 0 5px 0; color: #fff; background:#C7000B; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catschool a{ display: block; padding:8px 0 5px 0; color: #fff; background:#E8AC51; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catboyscouts a{ display: block; padding:8px 0 5px 0; color: #fff; background:#00873C; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catsportscenter a{ display: block; padding:8px 0 5px 0; color: #fff; background:#005AA0; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catrink a{	display: block;	padding: 8px 0 5px 0; color: #fff; background-color: #48c3ff; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catleader a{ display: block; padding:8px 0 5px 0; color: #fff; background:#800073; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catfestival a{ display: block; padding:8px 0 5px 0; color: #fff; background:#DFD000; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catikagaku a{ display: block; padding:8px 0 5px 0; color: #fff; background:#ff614a; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catwakuwaku a{ display: block; padding:8px 0 5px 0; color: #fff; background:#E1AF00; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catsportsclub a{ display: block; padding:8px 0 5px 0; color: #fff; background:#70BB2D; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }

.topSecNews01Catsurvey a,
.topSecNews01Catdownload a,
.topSecNews01Catsiryou a{ display: block; padding:8px 0 5px 0; color: #fff; background:#f6c; text-decoration: none; -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; }
.topSecNews01Catassoc a:hover,
.topSecNews01Catschool a:hover,
.topSecNews01Catboyscouts a:hover,
.topSecNews01Catsportscenter a:hover,
.topSecNews01Catleader a:hover,
.topSecNews01Catfestival a:hover,
.topSecNews01Catikagaku a:hover,
.topSecNews01Catrink a:hover,
.topSecNews01Catsurvey a:hover,
.topSecNews01Catdownload a:hover,
.topSecNews01Catsiryou a:hover,
.topSecNews01Catwakuwaku a:hover{ opacity:0.6; filter: alpha(opacity=60); -ms-filter: "alpha( opacity=60 )"; }
.topSecNews01Tit{ float: left; padding-top: 5px; width: 640px; line-height: 1.6; }