@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1130px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2e2e2e;
}

body.noscroll {
  height: 100%;
  overflow: hidden;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.l-main {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 4.0625rem;
  }
}

.c-btn {
  display: inline-block;
  min-width: 22.5rem;
  border-radius: 3.125rem;
  border: 2px solid #5879A7;
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  color: #5879A7;
  padding: 0.6875rem 1.875rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-width: 19rem;
  }
}

.c-btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6875rem 1.5625rem;
  background: #5879A7;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 3.125rem 3.125rem 0;
  font-size: 1rem;
}

.c-btn i {
  font-size: 1.25rem;
}

.c-btn:hover {
  opacity: 1;
  background: #5879A7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn:hover {
    background: #fff;
    color: #5879A7;
  }
}

.c-btn--green {
  border: 2px solid #C6CC25;
  color: #C6CC25;
}

.c-btn--green span {
  background: #C6CC25;
}

.c-btn--green:hover {
  background: #C6CC25;
}
@media screen and (max-width: 767px) {
  .c-btn--green:hover {
    background: #fff;
    color: #C6CC25;
  }
}

@media screen and (max-width: 767px) {
  .c-hamburger {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    background: #ED7B2F;
  }
}

@media screen and (max-width: 767px) {
  .c-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 4px 0;
  }
}

@media screen and (max-width: 767px) {
  .c-hamburger.is-active span:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
}

.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .c-hamburger.is-active span:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
  }
}

.c-pagetop {
  position: fixed;
  width: 3.75rem;
  bottom: 5.9375rem;
  right: 2.1875rem;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    right: 0.625rem;
    bottom: 3.4375rem;
  }
}

.c-pagetop img {
  width: 100%;
}

.c-section-title {
  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;
  row-gap: 1.5625rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.25rem;
    row-gap: 0.4375rem;
  }
}

.c-section-title::before {
  content: attr(data-en);
  font-size: 1.125rem;
  font-family: "Barlow", sans-serif;
  line-height: 1.7222222222;
}

.c-section-title--orange::before {
  color: #ED7B2F;
}

.c-section-title--white {
  color: #fff;
}

.c-section-title--white::before {
  color: #fff;
}

.c-section-title--blue::before {
  color: #5879A7;
}

.c-section-title--green::before {
  color: #C6CC25;
}

.c-section-title--purpule::before {
  color: #9886BC;
}

.p-about__box {
  background: #F3F7FC;
  border-radius: 1.25rem;
  margin-top: -10.625rem;
  padding: 5.625rem 8.75rem 12.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    margin-top: -4.5625rem;
    padding: 2.5rem 1.25rem 3.75rem;
    border-radius: 0.625rem;
  }
}

.p-about__box::before {
  content: "";
  background: url(../images/about_illust_1.png) no-repeat center/contain;
  width: 15rem;
  height: 17.1875rem;
  position: absolute;
  top: -5rem;
  left: -2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__box::before {
    top: -1.625rem;
    left: -0.9375rem;
    width: 7.5rem;
    height: 8.5625rem;
  }
}

.p-about__box::after {
  content: "";
  background: url(../images/about_illust_2.png) no-repeat center/contain;
  width: 10.75rem;
  height: 19rem;
  position: absolute;
  bottom: -8.4375rem;
  right: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about__box::after {
    bottom: -6.25rem;
    right: 0.9375rem;
    width: 5.375rem;
    height: 9.5rem;
  }
}

.p-about__content {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    margin-top: 2.5rem;
  }
}

.p-about__content + .p-about__content {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__content + .p-about__content {
    margin-top: 3.125rem;
  }
}

.p-about__subTitle {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.7333333333;
  text-align: center;
  color: #5879A7;
}
@media screen and (max-width: 767px) {
  .p-about__subTitle {
    font-size: 1.125rem;
    line-height: 1.7222222222;
  }
}

.p-about__text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

.p-about__table {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about__table {
    margin-top: 35;
  }
}

.p-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #5879A7;
    padding-top: 1.25rem;
    padding-bottom: 0.9375rem;
  }
}

.p-about__tarm {
  width: 11.25rem;
  border-top: 1px solid #5879A7;
  color: #5879A7;
  font-size: 1rem;
  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;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-about__tarm {
    width: 100%;
    border: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}

.p-about__desc {
  width: 38.75rem;
  border-top: 1px solid #E0E0E0;
  padding: 1.25rem 1.875rem 1.25rem 2.8125rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about__desc {
    border: none;
    width: 100%;
    font-size: 0.875rem;
    padding: 0;
  }
}

.p-about__wrap:last-child .p-about__tarm {
  border-bottom: 1px solid #5879A7;
}
@media screen and (max-width: 767px) {
  .p-about__wrap:last-child .p-about__tarm {
    border: none;
  }
}

.p-about__wrap:last-child .p-about__desc {
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (max-width: 767px) {
  .p-about__wrap:last-child .p-about__desc {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .p-about__wrap:last-child {
    border-bottom: 1px solid #5879A7;
  }
}

.p-about__right {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: right;
  color: #5879A7;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__right {
    font-size: 0.8125rem;
    margin-top: 0.9375rem;
  }
}

.p-about__lisks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about__lisks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
  }
}

.p-about__linkTitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  color: #5879A7;
}
@media screen and (max-width: 767px) {
  .p-about__linkTitle {
    font-size: 1rem;
  }
}

.p-about__btn {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-activities {
  padding-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-activities {
    padding-top: 2.0625rem;
  }
}

.p-activities__lists {
  margin-top: 5.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.625rem 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-activities__lists {
    margin-top: 2.9375rem;
    grid-template-columns: auto;
    row-gap: 2.6875rem;
  }
}

.p-activities__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-activities__list {
    text-align: center;
  }
}

.p-activities__listsTitle {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7307692308;
  color: #C6CC25;
}
@media screen and (max-width: 767px) {
  .p-activities__listsTitle {
    font-size: 1rem;
  }
}

.p-activities__text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-activities__text {
    font-size: 0.875rem;
  }
}

.p-activities__img {
  padding-top: 0.9375rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-activities__img {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-activities__img img {
  width: 100%;
  aspect-ratio: 320/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}

.p-activities__bottom {
  padding-top: 12.25rem;
  padding-bottom: 18.75rem;
  margin-top: -5.75rem;
  background: #C6CC25;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-activities__bottom {
    padding-top: 10.1875rem;
    padding-bottom: 10.25rem;
  }
}

.p-activities__bottom::after {
  content: "";
  background: url(../images/activities_illust.png) no-repeat center/contain;
  width: 72.625rem;
  max-width: 100%;
  height: 15.4375rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-activities__bottom::after {
    width: 100%;
    background: url(../images/activities_illust.png) no-repeat center/cover;
    height: 7.6875rem;
  }
}

.p-activities__box {
  background: #fff;
  border-radius: 0.9375rem;
  padding: 2.8125rem 6.25rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-activities__box {
    padding: 1.875rem 0.75rem;
  }
}

.p-activities__boxTitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-activities__boxTitle {
    font-size: 1.125rem;
  }
}

.p-activities__wrapper {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-activities__wrapper {
    grid-template-columns: auto;
    row-gap: 1.25rem;
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-activities__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-bulletin {
  padding-top: 5rem;
  padding-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-bulletin {
    padding-top: 3.75rem;
    padding-bottom: 6rem;
  }
}

.p-bulletin__lists {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-bulletin__lists {
    grid-template-columns: auto;
    row-gap: 0.625rem;
    margin-top: 1.5625rem;
    max-width: 21.5625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-bulletin__lists::after {
  content: "";
  background: url(../images/bulletin_illust.png) no-repeat center/contain;
  width: 15rem;
  height: 10.3125rem;
  position: absolute;
  right: 0;
  top: -10.3125rem;
}
@media screen and (max-width: 767px) {
  .p-bulletin__lists::after {
    width: 7.5rem;
    height: 5.125rem;
    right: -0.9375rem;
    top: -5.125rem;
  }
}

.p-bulletin__list {
  background: #FFF0E6;
  border-radius: 0.9375rem;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-bulletin__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    padding: 1.25rem 0.75rem 1.4375rem 0.9375rem;
    border-radius: 0.625rem;
  }
}

.p-bulletin__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-bulletin__img {
    width: 5.3125rem;
  }
}

.p-bulletin__img img {
  border-radius: 0.9375rem;
  width: 100%;
  aspect-ratio: 260/367;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-bulletin__img img {
    aspect-ratio: 85/120;
    border-radius: 0.625rem;
  }
}

.p-bulletin__img + .p-bulletin__body {
  margin-top: 0.9375rem;
}

.p-bulletin__listTitle {
  font-size: 1.125rem;
  line-height: 1.7222222222;
  font-weight: 700;
  text-align: center;
}

.p-bulletin__btn {
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-bulletin__btn {
    margin-top: 0.75rem;
  }
}

.p-bulletin__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  background: #fff;
  color: #ED7B2F;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #ED7B2F;
  min-width: 13.75rem;
  padding: 0.6875rem 0.625rem;
  height: auto;
  height: initial;
  text-align: center;
  border-radius: 1.875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-bulletin__btn a::before {
  content: "";
  background: url(../images/icon_download-border.svg) no-repeat center/contain;
  width: 1.5rem;
  height: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-bulletin__btn a:hover {
  opacity: 1;
  color: #fff;
  background: #ED7B2F;
}

.p-bulletin__btn a:hover::before {
  background: url(../images/icon_download.svg) no-repeat center/contain;
}

.p-contact {
  padding-top: 5.9375rem;
  padding-bottom: 2.5rem;
  background: #ED7B2F;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 2.1875rem;
    padding-bottom: 0.9375rem;
  }
}

.p-contact__inner {
  max-width: 53.125rem;
}

.p-contact__text {
  font-size: 1rem;
  color: #fff;
  line-height: 2;
  text-align: center;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-contact__box {
  margin-top: 1.5rem;
  background: #fff;
  border-radius: 0.9375rem;
  padding-top: 2.8125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact__box {
    padding-top: 1.375rem;
  }
}

.p-contact__boxInner {
  max-width: 38.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__boxInner {
    max-width: 19.375rem;
  }
}

.p-contact__boxTitle {
  font-size: 1.625rem;
  font-weight: 700;
  padding-bottom: 1.5625rem;
  text-align: center;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (max-width: 767px) {
  .p-contact__boxTitle {
    font-size: 1rem;
    padding-bottom: 0.9375rem;
  }
}

.p-contact__address {
  font-size: 1rem;
  text-align: center;
  line-height: 2;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__address {
    font-size: 0.875rem;
    margin-top: 1.5625rem;
  }
}

.p-contact__item {
  max-width: 19.875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__item {
    max-width: 19.375rem;
    margin-top: 0.9375rem;
  }
}

.p-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact__tarm {
  font-size: 1.125rem;
  font-family: "Barlow", sans-serif;
  line-height: 1.5555555556;
  width: 5.625rem;
}

.p-contact__desc {
  font-size: 1.125rem;
  font-family: "Barlow", sans-serif;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .p-contact__desc {
    font-size: 1rem;
  }
}

.p-contact__desc--tel {
  color: #ED7B2F;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__desc--tel {
    font-size: 1.75rem;
  }
}

.p-contact__desc--tel a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact__desc--tel a {
    pointer-events: auto;
  }
}

.p-contact__desc--fax {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__desc--fax {
    font-size: 1.75rem;
  }
}

.p-contact__map {
  margin-top: 2.8125rem;
}

.p-contact__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 800/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-contact__map iframe {
    aspect-ratio: 345/300;
  }
}

.p-contact__copy {
  margin-top: 2.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__copy {
    margin-top: 0.8125rem;
  }
}

.p-contact__copy small {
  font-size: 0.625rem;
  color: #fff;
}

.p-facility {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background: rgba(152, 134, 188, .1);
}
@media screen and (max-width: 767px) {
  .p-facility {
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}

.p-facility__inner {
  position: relative;
}

.p-facility__inner::after {
  content: "";
  background: url(../images/facility_illust.png) no-repeat center/contain;
  width: 9.375rem;
  height: 15.8125rem;
  position: absolute;
  left: 2rem;
  bottom: -19rem;
}
@media screen and (max-width: 767px) {
  .p-facility__inner::after {
    bottom: -9.6875rem;
    left: 1.375rem;
    width: 4.6875rem;
    height: 7.875rem;
  }
}

.p-facility__lists {
  margin-top: 5.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-facility__lists {
    grid-template-columns: auto;
    row-gap: 1.125rem;
    margin-top: 2.5rem;
  }
}

.p-facility__list a {
  display: block;
  border-radius: 0.9375rem;
  background: #fff;
  padding: 0.9375rem 1.25rem 1.25rem;
}

.p-facility__listTitle {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}

.p-facility__listTitle span {
  font-size: 0.875rem;
}

.p-facility__wrap {
  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;
  margin-top: 0.3125rem;
}

.p-facility__text {
  font-size: 1rem;
}

.p-facility__btn {
  min-width: 6.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9886BC;
  border: 2px solid #9886BC;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.375rem 0.9375rem;
  border-radius: 3.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-facility__btn::after {
  content: "";
  background: url(../images/icon_link.svg) no-repeat center/contain;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-facility__list a:hover {
  opacity: 1;
}
.p-facility__list a:hover .p-facility__btn {
  color: #fff;
  background: #9886BC;
}
@media screen and (max-width: 767px) {
  .p-facility__list a:hover .p-facility__btn {
    color: #9886BC;
    background: #fff;
  }
}
.p-facility__list a:hover .p-facility__btn::after {
  background: url(../images/icon_link-white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-facility__list a:hover .p-facility__btn::after {
    background: url(../images/icon_link.svg) no-repeat center/contain;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  z-index: 90;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.0625rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  max-width: 78.125rem;
  position: relative;
  z-index: 20;
}

.p-header__logo {
  height: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 9;
}

.p-header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo img {
  max-width: 21.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: 11.5625rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    z-index: 20;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    position: fixed;
    top: -120%;
    left: 0;
    z-index: 10;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.p-information {
  background: #ED7B2F;
  padding-top: 5.9375rem;
  padding-bottom: 19.875rem;
}
@media screen and (max-width: 767px) {
  .p-information {
    padding-top: 2.25rem;
    padding-bottom: 7.875rem;
  }
}

.p-information__inner {
  position: relative;
  max-width: 59.625rem;
}

.p-information__inner::before {
  content: "";
  background: url(../images/information_illust_1.png) no-repeat center/contain;
  width: 7.9375rem;
  height: 11rem;
  position: absolute;
  top: -8.75rem;
  left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-information__inner::before {
    width: 3.9375rem;
    height: 5.5rem;
    top: -6.375rem;
    left: 1rem;
  }
}

.p-information__inner::after {
  content: "";
  background: url(../images/information_illust_2.png) no-repeat center/contain;
  width: 5.8125rem;
  height: 11.125rem;
  position: absolute;
  top: -4.375rem;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-information__inner::after {
    width: 2.875rem;
    height: 5.5625rem;
    top: -3.9375rem;
    right: 0.3125rem;
  }
}

.p-information__box {
  margin-top: 6.25rem;
  height: 24.5rem;
  padding: 0 2.625rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-information__box {
    height: 23.125rem;
    margin-right: -0.875rem;
    padding: 0 0.9375rem 0 0;
    margin-top: 1.5625rem;
  }
}

.p-information__box::-webkit-scrollbar {
  width: 0.375rem;
}

.p-information__box::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 3.125rem;
}

.p-information__lists {
  border-top: 1px solid #fff;
}

.p-information__list {
  border-bottom: 1px solid #fff;
  padding: 1.875rem 1.875rem 1.875rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.5625rem;
     -moz-column-gap: 3.5625rem;
          column-gap: 3.5625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-information__list {
    padding: 1.25rem 0.9375rem 0.9375rem 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.5rem;
  }
}

.p-information__list time {
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  line-height: 2.2857142857;
}

.p-information__body {
  width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .p-information__body {
    width: 100%;
  }
}

.p-information__listTitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}
.p-information__listTitle a{
  text-decoration: underline;
}
.p-information__listTitle a:hover{
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-information__listTitle {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.p-information__text {
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 1.25rem;
}

.p-membership {
  padding-top: 8.875rem;
}
@media screen and (max-width: 767px) {
  .p-membership {
    padding-top: 2.125rem;
  }
}

.p-membership__inner {
  position: relative;
}

.p-membership__inner::before {
  content: "";
  background: url(../images/information_illust_1.png) no-repeat center/contain;
  width: 7.9375rem;
  height: 11rem;
  position: absolute;
  top: -6.25rem;
  right: 11.625rem;
}
@media screen and (max-width: 767px) {
  .p-membership__inner::before {
    width: 3.9375rem;
    height: 5.5rem;
    right: 1.25rem;
    top: -2.125rem;
  }
}

.p-membership__inner::after {
  content: "";
  background: url(../images/information_illust_2.png) no-repeat center/contain;
  width: 5.75rem;
  height: 11.0625rem;
  position: absolute;
  bottom: -6.5625rem;
  left: 6.25rem;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
@media screen and (max-width: 767px) {
  .p-membership__inner::after {
    width: 2.875rem;
    height: 5.5rem;
    left: 1.125rem;
    bottom: -3.125rem;
  }
}

.p-membership__head {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-membership__head {
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 31.25rem;
  }
}

.p-membership__text {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-membership__text {
    text-align: left;
  }
}

.p-membership__text a {
  font-weight: 700;
}

.p-membership__lists {
  max-width: 38.375rem;
  margin-top: 3.25rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 1.25rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-membership__lists {
    margin-top: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-membership__list {
  width: 15.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-membership__list {
    width: 15.1875rem;
    -webkit-column-gap: 0.3125rem;
       -moz-column-gap: 0.3125rem;
            column-gap: 0.3125rem;
  }
}

.p-membership__list::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #ED7B2F;
  display: inline-block;
}

.p-membership__bottom {
  background: #FFF0E6;
  padding-top: 4.375rem;
  padding-bottom: 13.125rem;
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .p-membership__bottom {
    padding-top: 2rem;
    padding-bottom: 6.5625rem;
    margin-top: 5.25rem;
  }
}

.p-membership__bottomInner {
  position: relative;
}

.p-membership__bottomInner::after {
  content: "";
  background: url(../images/membership_illust.png) no-repeat center/contain;
  width: 12.6875rem;
  height: 13.375rem;
  position: absolute;
  right: 0;
  bottom: -15.3125rem;
}
@media screen and (max-width: 767px) {
  .p-membership__bottomInner::after {
    width: 6.3125rem;
    height: 6.625rem;
    bottom: -8.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-membership__bottomHead .p-membership__text {
    text-align: center;
  }
}

.p-membership__members {
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-membership__members {
    margin-top: 2.8125rem;
    grid-template-columns: auto;
    row-gap: 0.625rem;
  }
}

.p-membership__member img {
  width: 100%;
}

.p-mv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 1.5rem;
  }
}

.p-mv::after {
  content: "";
  width: 100%;
  height: 66.015625vw;
  background: url(../images/mv_bg.jpg) no-repeat center/cover;
  display: block;
  position: absolute;
  top: 19.53125vw;
  z-index: -1;
}

.p-mv__inner {
  max-width: 78.125rem;
}

.p-mv__img {
  position: relative;
}

.p-mv__img figcaption {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 4;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-mv__img figcaption {
    width: 100%;
    text-align: center;
    line-height: 2.4;
    position: absolute;
    top: -1.5rem;
  }
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1200/660;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__img::after {
  content: "";
  background: url(../images/mv_illust.png) no-repeat center/contain;
  width: 29.125rem;
  height: 13.5625rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__img::after {
    width: 14.8125rem;
    height: 7.0625rem;
  }
}

.p-mv__title {
  width: 57.5rem;
  margin: 3.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    width: 20.3125rem;
    margin-top: 4rem;
  }
}

.p-nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-nav {
    opacity: 0;
    height: 100vh;
    min-height: 31.25rem;
    width: 100%;
    background: #ED7B2F;
    padding-top: 0.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-bottom: 3.125rem;
    overflow-y: auto;
  }
}

.p-nav.is-active {
  opacity: 1;
  top: 4.0625rem;
}

.p-nav__list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
}

.p-nav__item {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-nav__item {
    width: 100%;
    height: auto;
    height: initial;
    border-bottom: 1px solid #fff;
  }
}

.p-nav__item a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-nav__item a {
    color: #fff;
    padding: 1.25rem 0;
    display: block;
  }
}

.p-nav__item a::after {
  content: "";
  position: absolute;
  bottom: 2.0625rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #ED7B2F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  border-radius: 2px;
}

.p-nav__item a:hover {
  opacity: 1;
}

.p-nav__item a:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (max-width: 767px) {
  .p-nav__item a:hover::after {
    display: none;
  }
}

.p-nav__item--contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-nav__item--contact {
    margin-top: 1.875rem;
    margin-left: 0;
    border-bottom: none;
  }
}

.p-nav__item--contact a {
  color: #fff;
  background: #ED7B2F;
  border: 2px solid #ED7B2F;
  min-width: 10rem;
  padding: 0.8125rem 0.625rem;
  height: auto;
  height: initial;
  text-align: center;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-nav__item--contact a {
    min-width: 21.875rem;
    background: #fff;
    color: #ED7B2F;
  }
}

.p-nav__item--contact a::after {
  display: none;
}

.p-nav__item--contact a:hover {
  opacity: 1;
  background: #fff;
  color: #ED7B2F;
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
.p-information_item {
  display: flex;
}
.p-information_item > dt {
  margin-right: 1em;
}
.p-information_item > dd {
  flex: 1;
}
/*# sourceMappingURL=styles.css.map */
