@charset "UTF-8";
/*font*/
/**/
/**/
/*color*/
/*$c-base: #***;
$c-main: #***;
$c-accent: #***;
$c-primary: #***;
$c-secondary: #***;*/
/*******/
/*******/
/*breakpoints*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 54.6875%;
  }
}

body {
  background-color: #fff;
  color: #222;
  font-size: 1.6rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/*ハンバーガークリックでページトップに戻るのを防止*/
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #222;
}

img {
  vertical-align: bottom;
  width: 100%;
}

li {
  list-style-type: none;
}

/*********ここまでfoundation*********/
.wp-block-button .wp-block-button__link,
.wp-block-button .wp-element-button {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-element-button:hover {
  background-color: #fff;
  color: #a05cb0;
}

.l-header {
  background-color: #fff;
  position: fixed;
  height: 7.6rem;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5rem;
  }
}
.l-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1840px;
  margin: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    margin: 0 5%;
  }
}
.l-header__logo {
  width: 30%;
  max-width: 28.6rem;
}
@media screen and (max-width: 1279px) {
  .l-header__logo {
    max-width: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 60%;
    min-width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    height: auto;
    position: fixed;
    top: 0;
    top: 5rem;
    right: -100%;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
    width: 80%;
    max-width: none;
    height: calc(100dvh - 5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.l-header__nav-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  vertical-align: middle;
}
@media screen and (max-width: 1279px) {
  .l-header__nav-list {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    height: auto;
    display: block;
    background-color: #fff;
    border-radius: 0;
    height: auto;
    min-height: 100dvh;
  }
}
.l-header__nav-item {
  font-weight: bold;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    height: auto;
    border-bottom: 1px solid #e6e6e6;
  }
}
.l-header__nav-item > a {
  display: inline-block;
  height: 100%;
  font-size: 1.5rem;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media screen and (max-width: 1279px) {
  .l-header__nav-item > a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item > a {
    height: auto;
    display: block;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    padding: 1em;
    font-size: 1.8rem;
    position: relative;
  }
}
.l-header__nav-item > a:hover {
  color: #a05cb0;
}
.l-header__nav-item.is-current > a {
  color: #a05cb0;
}
.l-header__nav-item--local {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--local {
    display: block;
  }
}
.l-header__nav-item--tel {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--tel {
    border: none;
    padding-bottom: 1em;
    text-align: center;
  }
}
.l-header__nav-item--tel a {
  font-size: 2.4rem;
  color: #5b4945;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 0;
}
@media screen and (max-width: 1279px) {
  .l-header__nav-item--tel a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--tel a {
    font-size: 3rem;
  }
}
.l-header__nav-item--tel a::before {
  aspect-ratio: 1/1;
  background-image: url(../img/layout/tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 15px;
  margin-right: 6.5px;
}
.l-header__nav-item--tel p {
  font-size: 1rem;
  color: #6c6c6c;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--tel p {
    padding-left: 3rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--contact {
    padding: 1rem 0;
    border: none;
  }
}
.l-header__nav-item--contact a {
  background-color: #a05cb0;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  padding: 0.5em 1.7em;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .l-header__nav-item--contact a {
    padding: 0.5em;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--contact a {
    font-size: 2rem;
    max-width: 35rem;
    margin: 0 auto;
    padding: 1.5em 1em;
  }
}
.l-header {
  /*===ハンバーガーメニュー===*/
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
    position: relative;
    width: 3.2rem;
    height: 3.2rem;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span {
    position: absolute;
    display: block;
    left: 0;
    height: 2px;
    z-index: 3;
    background-color: #a05cb0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(1) {
    top: 20%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(3) {
    bottom: 20%;
  }
}
.l-header__mask {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background-color: #333;
  width: 0;
  height: 0;
  bottom: 0;
  left: 0;
  position: fixed;
}

.open .l-header__nav {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .open .l-header__nav {
    top: 5rem;
  }
}
.open .l-header__mask {
  opacity: 0.8;
  width: 100%;
  height: calc(100% - 5rem);
}
.open .l-header__hamburger span:nth-of-type(1) {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
  top: 50%;
}
.open .l-header__hamburger span:nth-of-type(2) {
  opacity: 0;
}
.open .l-header__hamburger span:nth-of-type(3) {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  top: 50%;
}

/*===//ハンバーガーメニュー===*/
/*===スクロールした時のヘッダーの色===*/
.change-color.l-header {
  background-color: #ECE0EF;
}

/*===//スクロールした時のヘッダーの色===*/
/*===トップページ以外のヘッダー===*/
.l-header--page .l-header__nav-item--local {
  display: block;
}

/*===//トップページ以外のヘッダー===*/
.l-footer {
  background-color: #312F46;
  color: #fff;
  padding: 8rem 0 2rem;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .l-footer {
    padding: 3rem 0rem;
  }
}
.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__flex + div {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .l-footer__flex + div {
    margin-top: 4rem;
  }
}
.l-footer__logo {
  margin-bottom: 2.4rem;
  width: 22rem;
}
.l-footer__info {
  line-height: 2;
  width: 50%;
  max-width: 54rem;
  padding-top: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__info {
    margin-bottom: 4rem;
    width: 100%;
  }
}
.l-footer__info a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer__info-list--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  gap: 2rem 3rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__info-list--pc {
    display: none;
  }
}
.l-footer__info-list--sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-footer__info-list--sp {
    display: block;
  }
}
.l-footer__nav-list {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}
.l-footer__nav-item {
  margin-bottom: 2.4rem;
}
.l-footer__nav-item a {
  color: #fff;
}
.l-footer__copy {
  display: inline-block;
  font-size: 1.2rem;
  padding: 4rem 0 0;
}
@media screen and (max-width: 1023px) {
  .l-footer__copy {
    text-align: center;
  }
}

/*==========main==========*/
.l-main {
  padding-top: 7.6rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 5rem;
  }
}

/*==========//main==========*/
/*==========page-content==========*/
.l-page-content {
  padding: 3rem 0px 10rem;
}

/*==========//page-content==========*/
/*==========button==========*/
.c-btn-more {
  border: 1px solid #a05cb0;
  color: #a05cb0;
  display: inline-block;
  font-weight: bold;
  background-color: #fff;
  padding: 1em;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 26rem;
}
.c-btn-more::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #a05cb0;
  border-bottom: 1px solid #a05cb0;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn-more:hover {
  color: #fff;
  background-color: #a05cb0;
}
.c-btn-more:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/*==========page-title==========*/
.c-page-title {
  background-image: linear-gradient(135deg, rgb(253, 246, 248), rgb(255, 248, 250));
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    height: 15rem;
  }
}
.c-page-title__inner {
  position: relative;
  height: 100%;
}
.c-page-title__heading {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-page-title__heading span {
  display: block;
}
.c-page-title__en {
  color: #a05cb0;
  font-size: 5.6rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-page-title__en {
    font-size: 3.5rem;
  }
}
.c-page-title__ja {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-page-title__ja {
    font-size: 1.5rem;
  }
}

/*==========//page-title==========*/
/*==========section-title==========*/
.c-section-title {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 3px solid #a05cb0;
  margin-bottom: 1em;
  line-height: 2;
}

/*==========//section-title==========*/
/*==========非表示==========*/
.c-hidden--xl {
  display: block;
}
@media screen and (max-width: 1279px) {
  .c-hidden--xl {
    display: none;
  }
}

.c-hidden--lg {
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-hidden--lg {
    display: none;
  }
}

.c-hidden--md {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-hidden--md {
    display: none;
  }
}

.c-hidden--sm {
  display: block;
}
@media screen and (max-width: 575px) {
  .c-hidden--sm {
    display: none;
  }
}

.c-hidden--xs {
  display: block;
}
@media screen and (max-width: 320px) {
  .c-hidden--xs {
    display: none;
  }
}

/*==========//非表示==========*/
/*==========表示==========*/
.c-visible--xl {
  display: none;
}
@media screen and (max-width: 1279px) {
  .c-visible--xl {
    display: block;
  }
}

.c-visible--lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-visible--lg {
    display: block;
  }
}

.c-visible--md {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-visible--md {
    display: block;
  }
}

.c-visible--sm {
  display: none;
}
@media screen and (max-width: 575px) {
  .c-visible--sm {
    display: block;
  }
}

.c-visible--xs {
  display: none;
}
@media screen and (max-width: 320px) {
  .c-visible--xs {
    display: block;
  }
}

/*==========//表示==========*/
/*==========page-breadcrumbs==========*/
.c-page-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.2rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-page-breadcrumbs__list {
    padding: 1rem 0;
  }
}
.c-page-breadcrumbs__item {
  color: #222;
  position: relative;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-page-breadcrumbs__item {
    font-size: 12px;
  }
}
.c-page-breadcrumbs__item + li {
  padding-left: 3.7rem;
}
@media screen and (max-width: 767px) {
  .c-page-breadcrumbs__item + li {
    padding-left: 2rem;
  }
}
.c-page-breadcrumbs__item + li::before {
  content: ">";
  position: absolute;
  top: 0;
  left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-page-breadcrumbs__item + li::before {
    left: 0.6rem;
  }
}
.c-page-breadcrumbs__item a {
  color: #a05cb0;
}

/*==========//page-breadcrumbs==========*/
/*==========pager==========*/
.c-pager .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pager li {
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  width: 12%;
  max-width: 5rem;
  aspect-ratio: 1/1;
  text-align: center;
}
.c-pager li .page-numbers {
  border: 2px solid #a05cb0;
  border-radius: 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.c-pager li .current {
  background-color: #a05cb0;
  color: #fff;
}
.c-pager li a.page-numbers {
  border-radius: 50%;
  color: #a05cb0;
  height: 100%;
}
.c-pager li a.page-numbers:hover {
  background-color: #a05cb0;
  opacity: 0.8;
}
.c-pager li a.page-numbers:hover {
  color: #fff;
}

/*==========//pager==========*/
.c-section {
  margin-bottom: 8rem;
}

/*==========definition-list==========*/
.c-definition-list {
  max-width: 100rem;
  margin: 0 auto;
}
.c-definition-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-definition-list__title {
  padding: 2rem 1rem 2rem 2.8rem;
  width: 16%;
}
@media screen and (max-width: 575px) {
  .c-definition-list__title {
    padding: 1rem 1rem 1rem 1rem;
    width: 30%;
  }
}
.c-definition-list__text {
  border-bottom: 1px solid #e6e6e6;
  line-height: 2;
  padding: 2rem 1rem 2rem 5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 575px) {
  .c-definition-list__text {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}

/*==========//outline==========*/
/*==========wrapper==========*/
.c-wrapper {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/*==========//wrapper==========*/
/*==========about==========*/
.p-about__body a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-about__overview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-about__overview-label {
  background-color: #f1f1f1;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 1rem;
  width: 20%;
}
.p-about__overview-data {
  border-bottom: 1px solid #e8e8e8;
  padding: 1.5rem 1rem;
  width: 80%;
}
.p-about__overview-data:first-of-type {
  border-top: 1px solid #e8e8e8;
}
.p-about__bylaws-article {
  margin-bottom: 3rem;
}
.p-about__bylaws-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-about__bylaws-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-about__bylaws-contents {
    display: block;
  }
}
.p-about__bylaws-label {
  -ms-flex-preferred-size: 8rem;
      flex-basis: 8rem;
}
.p-about__bylaws-data {
  -ms-flex-preferred-size: calc(100% - 8rem);
      flex-basis: calc(100% - 8rem);
}
.p-about__members {
  padding: 3rem;
  line-height: 2;
}

/*==========//about==========*/
/*==========activities==========*/
.p-activities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-activities__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-activities__card {
  background: #fff;
  border: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .p-activities__card {
    max-width: 400px;
  }
}
.p-activities__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-activities__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-activities__card-body {
  padding: 1.6rem;
}
.p-activities__card-title {
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

/*==========//activities==========*/
/*==========contactform7==========*/
.wpcf7-form {
  font-size: 16px;
  line-height: 1.5;
  -moz-text-align-last: left;
       text-align-last: left;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
  width: 100%;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=url],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=number],
.wpcf7-form input[type=date] {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=url],
  .wpcf7-form input[type=tel],
  .wpcf7-form input[type=number],
  .wpcf7-form input[type=date] {
    width: 100%;
  }
}
.wpcf7-form input[type=radio] {
  display: none;
}
.wpcf7-form textarea {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    width: 100%;
  }
}
.wpcf7-form select {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form select {
    width: 100%;
  }
}
.wpcf7-form {
  /*==チェックボックス==*/
}
.wpcf7-form .wpcf7-checkbox {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
}
.wpcf7-form input[type=checkbox] .wpcf7-list-item-label {
  cursor: pointer;
  padding: 0 0 0 28px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.wpcf7-form input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #90A4AE;
  border-radius: 5px;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
.wpcf7-form {
  /* チェックのアイコン */
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label::after {
  background: none;
  border-radius: 0;
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 1px;
  -webkit-transform: rotate(35deg) skewY(16deg) translateY(-50%);
          transform: rotate(35deg) skewY(16deg) translateY(-50%);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
.wpcf7-form {
  /* チェックされたら表示 */
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  opacity: 1;
}
.wpcf7-form {
  /* チェックされたら表示 */
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-form {
  /*==//チェックボックス==*/
  /*==ラジオボタン==*/
}
.wpcf7-form .wpcf7-radio {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 5px 10px;
}
.wpcf7-form .wpcf7-list-item-label {
  position: relative;
  padding: 5px 0 5px 28px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.wpcf7-form .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.wpcf7-form .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0px;
  width: 16px;
  height: 16px;
  border: 2px solid #90A4AE;
  border-radius: 50%;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wpcf7-form .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wpcf7-form input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: #a05cb0;
  border: 2px solid #a05cb0;
}
.wpcf7-form input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-form {
  /*==//ラジオボタン==*/
}
.wpcf7-form a {
  color: #a05cb0;
  text-decoration: underline;
}
.wpcf7-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
          box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: #000 !important;
}
.wpcf7-form input:-webkit-autofill:focus {
  caret-color: #000 !important;
}
.wpcf7-form {
  /*==数値　スライダー==*/
}
.wpcf7-form input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 200px;
  height: 12px;
  border: 1px solid #bbbbbb;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #a05cb0), color-stop(30%, #eeeeee));
  background: linear-gradient(90deg, #a05cb0 30%, #eeeeee 30%);
  cursor: pointer;
}
.wpcf7-form {
  /* ツマミ：Chrome, Safari, Edge用 */
}
.wpcf7-form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #bbbbbb;
  border-radius: 9999px;
  background: #a05cb0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wpcf7-form {
  /* ツマミ：Firefox用 */
}
.wpcf7-form input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid #bbbbbb;
  border-radius: 9999px;
  background: #a05cb0;
  box-shadow: none;
}
.wpcf7-form {
  /*==//数値　スライダー==*/
  /*==送信ボタン==*/
}
.wpcf7-form input[type=submit] {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  color: #fff;
  display: block;
  font-size: 2rem;
  width: auto;
  margin: 0 auto;
  padding: 1.5rem 8rem;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  cursor: pointer;
}
.wpcf7-form input[type=submit]:hover {
  background-color: #fff;
  color: #a05cb0;
  opacity: 0.8;
}
.wpcf7-form {
  /*==//送信ボタン==*/
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: inline-block;
}

/*==========//contactform7==========*/
/*==========facilities-menu==========*/
.p-facilities-menu__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-facilities-menu__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-facilities-menu__item a {
  border: 1px solid #a05cb0;
  background-color: #fff;
  color: #a05cb0;
  display: block;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  width: 100%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-facilities-menu__item a:hover {
  background-color: #a05cb0;
  color: #fff;
}

/*==========//facilities-menu==========*/
/*==========facilities-table==========*/
.p-facilities-table {
  width: 100%;
  margin: 0 auto;
  min-width: 900px;
}
.p-facilities-table th, .p-facilities-table td {
  padding: 1rem;
  width: auto;
}
.p-facilities-table th {
  background-color: #a05cb0;
  color: #fff;
  font-weight: normal;
}
.p-facilities-table tr:nth-of-type(odd) td {
  background-color: #f1f1f1;
}
.p-facilities-table a {
  color: #a05cb0;
  text-decoration: underline;
}

/*==========//facilities-table==========*/
/*=====お問い合せ　入会申込=====*/
.p-form__wrap input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
          box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: #000 !important;
}

.p-form__wrap input:-webkit-autofill:focus {
  caret-color: #000 !important;
}

.p-form__wrap form {
  font-size: 16px;
  line-height: 1.5;
  -moz-text-align-last: left;
       text-align-last: left;
}

.p-form__wrap input {
  width: 100%;
}

.p-form__wrap th {
  font-weight: normal;
  width: 100%;
}

.wpcf7-list-item {
  margin: 0;
  width: 100%;
}

.p-form__wrap {
  max-width: 600px;
  margin: 0 auto;
}

.p-form__text {
  line-height: 2;
  margin-bottom: 3rem;
}

.p-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 8px;
}

.p-form__list div {
  width: 100%;
}

.p-form__full {
  width: 100%;
}

.p-form__half {
  width: calc((100% - 8px) / 2);
}

.p-form__title {
  margin-bottom: 0.5em;
  margin-top: 1.5rem;
}

.p-form__required::after {
  background-color: #f44336;
  border-radius: 2px;
  content: "必須";
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
  display: inline-block;
  margin-left: 5px;
}

.p-form__field {
  margin-bottom: 0.5rem;
}

.p-form__field input,
.p-form__field:has(input[type=checkbox]),
.p-form__field select {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  height: 42px;
}

.p-form__field textarea {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 10px;
  height: 200px;
  width: 100%;
}

.wpcf7-radio {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 5px 10px;
}

.p-form__notice {
  font-size: 12px;
}

.p-form__wrap input[type=radio] {
  display: none;
}

.wpcf7-list-item-label {
  position: relative;
  padding: 5px 0 5px 28px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.wpcf7-list-item-label:hover {
  cursor: pointer;
}

.wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0px;
  width: 16px;
  height: 16px;
  border: 2px solid #90A4AE;
  border-radius: 50%;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: #a05cb0;
  border: 2px solid #a05cb0;
}

input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-form__select {
  width: 100%;
}

/* チェックボックス */
.p-form__wrap input[type=checkbox] .wpcf7-list-item-label {
  cursor: pointer;
  padding: 0 0 0 28px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-form__wrap input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* チェックボックス */
.p-form__wrap input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #90A4AE;
  border-radius: 5px;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}

/* チェックのアイコン */
.p-form__wrap input[type=checkbox] + .wpcf7-list-item-label::after {
  background: none;
  border-radius: 0;
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 1px;
  -webkit-transform: rotate(35deg) skewY(16deg) translateY(-50%);
          transform: rotate(35deg) skewY(16deg) translateY(-50%);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}

/* チェックされたら表示 */
.p-form__wrap input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  opacity: 1;
}

/* チェックされたら表示 */
.p-form__wrap input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-form__policy {
  color: #a05cb0;
  text-decoration: underline;
}

.p-form__buttonwrap {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 3rem auto 0;
  padding: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-form__buttonwrap:hover {
  opacity: 0.8;
}

.p-form__buttonwrap input[type=submit] {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  color: #fff;
  display: block;
  font-size: 2rem;
  width: auto;
  margin: 0 auto;
  padding: 2rem 43%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

.p-form__buttonwrap:hover input[type=submit] {
  background-color: #fff;
  color: #a05cb0;
}

.p-form__wrap .wpcf7-form-control-wrap {
  display: block;
}

/*=====//お問い合せ　入会申込=====*/
.p-order-form__wrap input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
          box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: #000 !important;
}
.p-order-form__wrap input:-webkit-autofill:focus {
  caret-color: #000 !important;
}
.p-order-form__wrap form {
  font-size: 16px;
  line-height: 1.5;
  -moz-text-align-last: left;
       text-align-last: left;
}
.p-order-form__wrap input {
  width: 100%;
}
.p-order-form__wrap th {
  font-weight: normal;
  width: 100%;
}
.p-order-form__wrap .wpcf7-list-item {
  margin: 0;
  width: 100%;
}
.p-order-form__wrap .p-order-form__wrap {
  max-width: 600px;
  margin: 0 auto;
}
.p-order-form__wrap .p-order-form__text {
  line-height: 2;
  margin-bottom: 3rem;
}
.p-order-form__wrap .p-order-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 8px;
}
.p-order-form__wrap .p-order-form__list div {
  width: 100%;
}
.p-order-form__wrap .p-order-form__full {
  width: 100%;
}
.p-order-form__wrap .p-order-form__half {
  width: calc((100% - 8px) / 2);
}
.p-order-form__wrap .p-order-form__title {
  margin-bottom: 0.5em;
  margin-top: 1.5rem;
}
.p-order-form__wrap .p-order-form__required::after {
  background-color: #f44336;
  border-radius: 2px;
  content: "必須";
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
  display: inline-block;
  margin-left: 5px;
}
.p-order-form__wrap .p-order-form__field {
  margin-bottom: 0.5rem;
}
.p-order-form__wrap .p-order-form__field input,
.p-order-form__wrap .p-order-form__field:has(input[type=checkbox]),
.p-order-form__wrap .p-order-form__field select {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  height: 42px;
}
.p-order-form__wrap .p-order-form__field textarea {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 10px;
  height: 200px;
  width: 100%;
}
.p-order-form__wrap .wpcf7-radio {
  border: 1px solid #001d3f;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  padding: 5px 10px;
}
.p-order-form__wrap .p-order-form__notice {
  font-size: 12px;
}
.p-order-form__wrap input[type=radio] {
  display: none;
}
.p-order-form__wrap .wpcf7-list-item-label {
  position: relative;
  padding: 5px 0 5px 28px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.p-order-form__wrap .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.p-order-form__wrap .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0px;
  width: 16px;
  height: 16px;
  border: 2px solid #90A4AE;
  border-radius: 50%;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-order-form__wrap .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-order-form__wrap input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: #a05cb0;
  border: 2px solid #a05cb0;
}
.p-order-form__wrap input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-order-form__wrap .p-order-form__select {
  width: 100%;
}
.p-order-form__wrap {
  /* チェックボックス */
}
.p-order-form__wrap input[type=checkbox] .wpcf7-list-item-label {
  cursor: pointer;
  padding: 0 0 0 28px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.p-order-form__wrap input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-order-form__wrap {
  /* チェックボックス */
}
.p-order-form__wrap input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #90A4AE;
  border-radius: 5px;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
.p-order-form__wrap {
  /* チェックのアイコン */
}
.p-order-form__wrap input[type=checkbox] + .wpcf7-list-item-label::after {
  background: none;
  border-radius: 0;
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 1px;
  -webkit-transform: rotate(35deg) skewY(16deg) translateY(-50%);
          transform: rotate(35deg) skewY(16deg) translateY(-50%);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
.p-order-form__wrap {
  /* チェックされたら表示 */
}
.p-order-form__wrap input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  opacity: 1;
}
.p-order-form__wrap {
  /* チェックされたら表示 */
}
.p-order-form__wrap input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-order-form__wrap .p-order-form__policy {
  color: #a05cb0;
  text-decoration: underline;
}
.p-order-form__wrap .p-order-form__buttonwrap {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 3rem auto 0;
  padding: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-order-form__wrap .p-order-form__buttonwrap:hover {
  opacity: 0.8;
}
.p-order-form__wrap .p-order-form__buttonwrap input[type=submit] {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
  color: #fff;
  display: block;
  font-size: 2rem;
  width: auto;
  margin: 0 auto;
  padding: 2rem 43%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-order-form__wrap .p-order-form__buttonwrap:hover input[type=submit] {
  background-color: #fff;
  color: #a05cb0;
}
.p-order-form__wrap .wpcf7-form-control-wrap {
  display: block;
}

/*==========news-archive==========*/
.p-news-archive__list {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 5rem;
}
.p-news-archive__item {
  border-bottom: 1px solid #e8e8e8;
  padding: 2rem 0;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-news-archive__item:hover {
  background-color: #f2f3f4;
}
.p-news-archive__date {
  color: #919191;
  font-family: "Roboto", sans-serif;
}
.p-news-archive__cat {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__cat {
    margin: 0;
  }
}
.p-news-archive__text {
  text-decoration: underline;
  line-height: 2;
}

/*==========//news-archive==========*/
/*==========newsletter==========*/
.p-newsletter__body a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-newsletter__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0 2rem 2rem;
}
.p-newsletter__info-label {
  width: 8rem;
}
.p-newsletter__info-data {
  width: calc(100% - 10rem);
}
.p-newsletter__info-data:before {
  content: ": ";
}

/*==========//newsletter==========*/
/*================history================*/
/*==========contents==========*/
.p-notfound {
  padding: 3rem 0 10rem;
  text-align: center;
}
.p-notfound__title {
  font-size: 3rem;
  margin-bottom: 4rem;
}
.p-notfound__btnwrap {
  margin: 4rem auto 0;
}

/*==========//contents==========*/
/*==========page==========*/
.p-page h2 {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 2px solid #a05cb0;
  margin-bottom: 1em;
  line-height: 2;
}
.p-page a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-page li {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-left: 0.8em;
  position: relative;
  margin-bottom: 3rem;
}
.p-page li::before {
  content: "";
  background-color: #a05cb0;
  display: block;
  width: 5px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1.4rem;
  left: 0;
}
.p-page li li {
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 1rem;
}
.p-page li li::before {
  display: none;
}

/*==========//page==========*/
/*==========publications==========*/
.p-publications__title {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 2px solid #a05cb0;
  margin-bottom: 1em;
  line-height: 2;
}
.p-publications__body a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-publications__item {
  margin-bottom: 3rem;
}
.p-publications__item-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-left: 0.8em;
  position: relative;
}
.p-publications__item-title::before {
  content: "";
  background-color: #a05cb0;
  display: block;
  width: 5px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1.4rem;
  left: 0;
}
.p-publications__item-data {
  padding-left: 2rem;
}

/*==========//publications==========*/
/*==========report-archive==========*/
.p-report-archive__list {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 5rem;
}
.p-report-archive__item {
  border-bottom: 1px solid #e8e8e8;
  padding: 2rem 0;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-report-archive__item:hover {
  background-color: #f2f3f4;
}
.p-report-archive__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.p-report-archive__img {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  aspect-ratio: 285/189;
}
@media screen and (max-width: 767px) {
  .p-report-archive__img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.p-report-archive__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-report-archive__textwrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-report-archive__date {
  color: #919191;
  font-family: "Roboto", sans-serif;
}
.p-report-archive__text {
  text-decoration: underline;
  line-height: 2;
}

/*==========//report-archive==========*/
/*==========single==========*/
.p-single__inner {
  margin: 0 auto;
  max-width: 750px;
}
.p-single__date {
  color: #818181;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
}
.p-single__title {
  font-size: 2.8rem;
  margin: 1.6rem 0 2.4rem;
}
.p-single__img {
  margin-bottom: 4rem;
}
.p-single__tablewrap {
  margin-bottom: 4rem;
}
.p-single__body h2 {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 2px solid #a05cb0;
  margin-bottom: 1em;
  line-height: 2;
}
.p-single__body h3 {
  background-color: #fafafa;
  border-left: 4px solid #a05cb0;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1em;
  padding-left: 0.8em;
  line-height: 2.6;
}
.p-single__body h4 {
  color: #a05cb0;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-single__body p,
.p-single__body ul,
.p-single__body ol,
.p-single__body blockquote {
  margin-bottom: 4rem;
}
.p-single__body p {
  line-height: 1.75;
}
.p-single__body a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-single__body table {
  width: 100%;
  min-width: 500px;
  text-align: center;
}
.p-single__body tr:nth-of-type(odd) td {
  background-color: #fafafa;
}
.p-single__body th {
  background-color: #a05cb0;
  color: #fff;
  padding: 1.6rem 1rem;
}
.p-single__body th + th {
  border-left: 1px solid #fff;
}
.p-single__body td {
  padding: 1.4rem 1rem;
}
.p-single__body li {
  margin-left: 2rem;
}
.p-single__body ul li {
  list-style-type: disc;
}
.p-single__body ol li {
  list-style-type: decimal;
}
.p-single__body blockquote {
  background-color: #fafafa;
  font-size: 1.4rem;
  margin-bottom: 4rem;
  position: relative;
  padding: 5rem 1.6rem 1.6rem 1.6rem;
}
.p-single__body blockquote::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../img/page/news/blockquote.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  aspect-ratio: 25.92/22.56;
  top: 1.6rem;
  left: 1.6rem;
}
.p-single__body blockquote p {
  margin: 0;
}
.p-single {
  /*==wpリセット==*/
}
.p-single .wp-block-table thead {
  border-bottom: none;
}
.p-single .wp-block-table td,
.p-single .wp-block-table th {
  border: none;
}
.p-single {
  /*==//wpリセット==*/
}
.p-single__btnwrap {
  margin-top: 6rem;
  text-align: center;
}

/*==========//single==========*/
/*==========textinfo==========*/
.p-textinfo__body a {
  color: #a05cb0;
  text-decoration: underline;
}
.p-textinfo__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0 2rem 2rem;
}
.p-textinfo__info-label {
  width: 10rem;
}
.p-textinfo__info-data {
  width: calc(100% - 10rem);
}
.p-textinfo__info-data:before {
  content: ": ";
}

.p-textinfo-table {
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}
.p-textinfo-table td {
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  padding: 1.5rem 1rem;
}
.p-textinfo-table td:first-of-type {
  background-color: #f1f1f1;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 1rem;
  width: 20%;
}

/*==========//textinfo==========*/
/*==========slider==========*/
.p-top-slider {
  width: 100%;
}
.p-top-slider__item {
  margin: 0 0.8rem;
  aspect-ratio: 1300/673;
}
@media screen and (max-width: 767px) {
  .p-top-slider__item {
    margin: 0 0.3rem;
  }
}

.slick-prev,
.slick-next {
  z-index: 1;
  max-width: 5.6rem;
  min-width: 3rem;
  width: 4%;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 2rem;
  }
}

.slick-prev {
  left: 12%;
}

.slick-next {
  right: 12%;
}

.slick-prev:before,
.slick-next:before {
  opacity: 1;
  background-image: url(../img/page/top/arrow.jpg);
  background-size: contain;
  color: transparent;
  display: block;
  height: 100%;
}

.slick-prev:before {
  -webkit-transform: translateX(-50%) scale(-1, 1);
          transform: translateX(-50%) scale(-1, 1);
}

.slick-next:before {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.slick-dots {
  bottom: -32px;
  max-width: 380px;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: -20px;
    max-width: 300px;
  }
}

.slick-dots li {
  width: 30%;
  height: 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    width: 25%;
  }
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}

.slick-dots li button:before {
  content: "";
  background-color: #d7d7d7;
  height: 100%;
  opacity: 1;
  width: 100%;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #a05cb0;
}

.slick-dotted.slick-slider {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .slick-dotted.slick-slider {
    margin-bottom: 4rem;
  }
}

.slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

/*==========//slider==========*/
/*==========nav==========*/
.p-top-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a05cb0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-nav__item {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1.6rem 0;
  min-width: 140px;
}
@media screen and (max-width: 767px) {
  .p-top-nav__item {
    border: 1px solid #fff;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0.5rem 0;
  }
}
.p-top-nav__item + li a {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top-nav__item + li a {
    border: none;
  }
}
.p-top-nav__item:hover {
  background-color: #B37DC0;
}
.p-top-nav__item a {
  color: #fff;
  display: block;
  padding: 0.5rem 4rem;
  text-align: center;
  height: 100%;
  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;
}
@media screen and (max-width: 767px) {
  .p-top-nav__item a {
    padding: 0.5rem 1rem;
  }
}

/*==========//nav==========*/
/*==========ページ内共通==========*/
.p-top-section__title {
  font-size: 3.2rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-section__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 575px) {
  .p-top-section__title {
    font-size: 2.5rem;
  }
}
.p-top-section__title--ja {
  display: block;
  line-height: 1.2;
  color: #222;
}
.p-top-section__title--en {
  display: block;
  font-size: 43.75%;
  color: #a05cb0;
  margin-bottom: 0.3rem;
}
.p-top-section__title--white {
  color: #fff;
}
.p-top-section__title--center {
  text-align: center;
}

/*==========//ページ内共通==========*/
/*==========News==========*/
.p-top-news__inner {
  position: relative;
  padding: 10rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    padding: 7rem 0 10rem;
  }
}
.p-top-news__list {
  padding-top: 1.6rem;
}
.p-top-news__item {
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-top-news__item:hover {
  background-color: #f2f3f4;
}
.p-top-news__item a {
  display: block;
  padding: 1.6rem 0;
}
.p-top-news__item-date {
  color: #919191;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-date {
    display: block;
  }
}
.p-top-news__item-cat {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-cat {
    margin: 0;
  }
}
.p-top-news__item-title {
  color: #0f0a32;
  font-weight: bold;
  margin: 0.6rem 0 0.4rem;
}
.p-top-news__item-text {
  color: #949494;
  font-size: 1.2rem;
}
.p-top-news__btnwrap {
  position: absolute;
  top: 10rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__btnwrap {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*==========//News==========*/
/*==========About Us==========*/
.p-top-about {
  padding: 10rem 0 0;
}
.p-top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 4.4%;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    display: block;
    position: relative;
    padding-bottom: 7rem;
  }
}
.p-top-about__textwrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-about__text {
  margin: 3.5rem 0 3rem;
  line-height: 2;
}
.p-top-about__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    float: right;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__btnwrap {
    text-align: center;
  }
}

/*==========//About Us==========*/
/*==========Activity Report==========*/
.p-top-report {
  padding: 10rem 0;
  background-color: #fdf6f8;
}
@media screen and (max-width: 767px) {
  .p-top-report {
    padding: 5rem 0;
  }
}
.p-top-report__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 3rem;
}
.p-top-report__item {
  width: 32%;
}
.p-top-report__img {
  aspect-ratio: 3/2;
  margin-bottom: 1.4rem;
}
.p-top-report__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top-report__item-date {
  color: #797979;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
  display: block;
}
.p-top-report__item-text {
  font-weight: bold;
}
.p-top-report__btnwrap {
  text-align: center;
  margin-top: 5rem;
}

/*==========//Activity Report==========*/
/*==========Related Links==========*/
.p-top-link {
  padding: 7rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-link {
    padding: 5rem 0 7rem;
  }
}
.p-top-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 1.5%;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-link__list {
    gap: 0.5rem 1.5%;
  }
}
.p-top-link__item {
  width: 23.875%;
  aspect-ratio: 272/80;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-top-link__item {
    width: 49.25%;
  }
}
.p-top-link__item 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;
  height: 100%;
  width: 100%;
  padding: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-link__item a {
    font-size: 1.2rem;
  }
}
.p-top-link__item a:hover {
  opacity: 0.6;
}
.p-top-link__item img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/*==========//Related Links==========*/
/*==========Membership==========*/
.p-top-membership {
  background-image: url(../img/page/top/membership_bg.jpg);
  padding: 10rem 0;
  position: relative;
}
.p-top-membership::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(160, 92, 176, 0.88);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-top-membership__inner {
  position: relative;
  z-index: 2;
}
.p-top-membership__content {
  background-color: #fff;
  margin-top: 3rem;
  padding: 4rem 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-membership__content {
    padding: 1rem;
  }
}
.p-top-membership__text {
  line-height: 2;
}
.p-top-membership__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem 1rem;
  padding-top: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-top-membership__actions {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-membership__tel {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 4rem;
  position: relative;
  padding-left: 3rem;
  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;
}
@media screen and (max-width: 1279px) {
  .p-top-membership__tel {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-membership__tel {
    font-size: 2.5rem;
  }
}
.p-top-membership__tel::before {
  background-image: url(../img/page/top/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top-membership__link-wrap {
  text-align: center;
  position: relative;
  max-width: 34rem;
  width: 33%;
}
@media screen and (max-width: 1023px) {
  .p-top-membership__link-wrap {
    width: 100%;
  }
}
.p-top-membership__link-text {
  background-color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17rem;
  z-index: 2;
}
.p-top-membership__link-text--info {
  border: 1px solid #0F0A32;
  color: #0F0A32;
}
.p-top-membership__link-text--contact {
  border: 1px solid #a05cb0;
  color: #a05cb0;
}
.p-top-membership__link {
  color: #fff;
  display: block;
  font-weight: bold;
  height: 100%;
  padding: 2rem 2.5rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  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;
}
.p-top-membership__link--info {
  background-color: #0F0A32;
  border: 1px solid #0F0A32;
}
.p-top-membership__link--contact {
  background-color: #a05cb0;
  border: 1px solid #a05cb0;
}
.p-top-membership__link::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-top-membership__link:hover {
  background-color: #fff;
}
.p-top-membership__link--info:hover {
  color: #0F0A32;
}
.p-top-membership__link--contact:hover {
  color: #a05cb0;
}
.p-top-membership__link--info:hover::after {
  border-right: 1px solid #0F0A32;
  border-bottom: 1px solid #0F0A32;
}
.p-top-membership__link--contact:hover::after {
  border-right: 1px solid #a05cb0;
  border-bottom: 1px solid #a05cb0;
}

/*==========//Membership==========*//*# sourceMappingURL=style.css.map */