@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : BEM ベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://use.fontawesome.com/releases/v5.15.1/css/all.css");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1081px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1082px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: min(16px, 1.4801110083vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  padding: 0;
  color: #333333;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

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

a {
  color: #0068ac;
  text-decoration: underline;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
.l-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.0625rem;
  background: #fff;
  z-index: 100;
}
.l-header__inner {
  max-width: 85rem;
  position: relative;
  margin: 0 auto;
}
.l-header__inner .link a {
  display: block;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2.5rem;
  text-align: center;
  background: #C89413;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  width: 15rem;
  font-size: 0.875rem;
  padding: 1rem;
}
@media (max-width: 767px) {
  .l-header__inner .link a {
    display: none;
  }
}
@media (min-width: 768px) {
  .l-header__inner .l-menuBtn {
    display: none;
  }
}
.l-header__box {
  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;
  border-bottom: 1px solid #C89413;
  padding: 1.5rem 0;
}
@media (max-width: 1360px) {
  .l-header__box {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .l-header__box {
    padding: 0;
    border-bottom: none;
  }
}
.l-header__logo {
  margin: 0;
  color: #000;
  line-height: 0;
  width: 25.875rem;
  padding: 0;
}
@media (max-width: 767px) {
  .l-header__logo {
    width: 11.3125rem;
  }
}
.l-header__logo a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .l-header {
    height: 5.25rem;
  }
  .l-header__inner {
    padding: 0.9375rem 1.25rem;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header.-open {
  background: #D1A534;
}
.l-header.-open .l-header__logo {
  display: none;
}

.fixed-link {
  position: fixed;
  bottom: 9.375rem;
  right: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.fixed-link a {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  padding: 4.375rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  background: url("../img/bg-fixed-link.png") no-repeat center/cover;
  border-radius: 0.25rem 0 0 0.25rem;
}
.fixed-link a::before {
  display: block;
  content: "";
  width: 0.875rem;
  height: 1.375rem;
  background: url("../img/arrow-white.svg") no-repeat center/100% auto;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .fixed-link {
    display: none;
  }
}

.l-menuBtn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0;
  cursor: pointer;
}
.l-menuBtn::after {
  display: block;
  position: absolute;
  content: "MENU";
  font-size: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  bottom: 1.125rem;
  left: 1.5625rem;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.l-menuBtn__bar {
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  margin-left: -1.15625rem;
  display: block;
  position: absolute;
  width: 2.3125rem;
  height: 0.125rem;
}
.l-menuBtn__bar::before, .l-menuBtn__bar::after {
  display: block;
  position: absolute;
  width: 2.3125rem;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: #C89413;
  content: "";
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.l-menuBtn__bar::before {
  top: -0.5rem;
}
.l-menuBtn__bar::after {
  top: 0rem;
}
.l-menuBtn.-open::after {
  content: "CLOSE";
  left: 1.5rem;
  color: #000;
}
.l-menuBtn.-open .l-menuBtn__bar {
  background-color: transparent;
}
.l-menuBtn.-open .l-menuBtn__bar::before {
  top: -0.5rem;
  background-color: #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.l-menuBtn.-open .l-menuBtn__bar::after {
  top: -0.5rem;
  background-color: #fff;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 767px) {
  .l-menuBtn {
    display: block;
  }
}

.l-gnav {
  margin: 0 auto;
}
.l-gnav__list {
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 auto;
}
.l-gnav__list > li {
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 2rem;
}
.l-gnav__btn {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}
.l-gnav__btn:hover, .l-gnav__btn.-current {
  color: #C89413;
  opacity: 1;
}
@media (max-width: 767px) {
  .l-gnav {
    display: none;
  }
}

.l-spnav {
  display: none;
  position: fixed;
  top: 5.25rem;
  right: 0;
  width: 100%;
  height: calc(100% - 5.25rem);
  z-index: 100;
  background: #D1A534;
}
.l-spnav__container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.l-spnav__container::-webkit-scrollbar {
  display: none;
}
.l-spnav__container {
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.5rem 0;
}
.l-spnav__list {
  max-width: 85rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 3.125rem;
  list-style: none;
  padding: 0 1.5rem;
}
.l-spnav__list > li .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  color: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0;
  border-top: 1px solid #fff;
  text-decoration: none;
}
.l-spnav__list .sub {
  margin: 0;
  margin-top: 4rem;
  list-style: none;
  padding: 0;
}
.l-spnav__list .sub > li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .l-spnav {
    display: none !important;
  }
}

/**************************************************/
/* Footer */
/**************************************************/
.l-footer {
  position: relative;
  z-index: 5;
  padding: 6.25rem 0;
  background: url(../img/bg-footer.png) no-repeat bottom right/cover;
}
@media (max-width: 1023px) {
  .l-footer {
    padding: 3.125rem 0;
  }
}
@media (max-width: 767px) {
  .l-footer {
    padding: 1.25rem 0;
  }
}
.l-footer .footer-nav {
  max-width: 85rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.125rem 1fr 3.125rem 1fr 3.125rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 3.125rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1360px) {
  .l-footer .footer-nav {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1023px) {
  .l-footer .footer-nav {
    grid-gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .l-footer .footer-nav {
    display: none;
  }
}
.l-footer .footer-nav > li .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  color: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0;
  border-top: 1px solid #fff;
  text-decoration: none;
  text-shadow: 0 0 10px #7D5900;
}
.l-footer .footer-nav .sub {
  margin: 0;
  margin-top: 4rem;
  list-style: none;
  padding: 0;
}
.l-footer .footer-nav .sub > li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  text-shadow: 0 0 10px #7D5900;
}
.l-footer .footer-logo {
  max-width: 85rem;
  margin: 4rem auto 0;
  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;
}
@media (max-width: 1360px) {
  .l-footer .footer-logo {
    padding: 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .l-footer .footer-logo {
    margin: 0 auto;
    -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;
  }
}
@media (max-width: 1023px) {
  .l-footer .footer-logo .logo {
    max-width: 28.125rem;
  }
}
.l-footer .footer-logo .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .l-footer .footer-logo .link {
    margin: 1em 0 0 0;
  }
}
@media (max-width: 767px) {
  .l-footer .footer-logo .link {
    display: none;
  }
}
.l-footer .footer-logo .link li {
  margin-left: 2.5rem;
}
.l-footer .footer-logo .link li:first-child {
  margin-left: 0;
}
.l-footer .footer-logo .link li a {
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  display: block;
  text-shadow: 0 0 10px #7D5900;
}
.l-footer .footer-logo .copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  text-align: right;
  margin: 1em 0 0 0;
}
@media (max-width: 767px) {
  .l-footer .footer-logo .copy {
    font-size: 0.875rem;
    text-align: center;
  }
}

/**************************************************/
/* contents */
/**************************************************/
body > .inbox {
  padding-top: 11.0625rem;
}
@media (max-width: 767px) {
  body > .inbox {
    padding-top: 5.25rem;
  }
}

.l-page-container {
  position: relative;
}

.l-breadcrumb {
  position: relative;
  background: #eeeeee;
}
.l-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0.625rem;
}
.l-breadcrumb__list > li {
  display: block;
  position: relative;
  padding: 0.5em;
  font-size: 0.75rem;
  line-height: 1;
}
.l-breadcrumb__list > li:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1.5em;
}
.l-breadcrumb__list > li:not(:first-child)::after {
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -0.15em;
  margin-top: -0.5em;
  font-size: 1.3333333333em;
}
.l-breadcrumb__list a {
  display: block;
}
@media (max-width: 767px) {
  .l-breadcrumb__list {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .l-breadcrumb__list > li {
    font-size: 0.625rem;
  }
  .l-breadcrumb__list > li:not(:first-child) {
    margin-left: 1em;
    padding-left: 1em;
  }
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.link a {
  display: block;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.link.link-a a {
  width: 18.75rem;
  border-radius: 2.5rem;
  text-align: center;
  padding: 1.25rem;
  background: #C89413;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .link.link-a a {
    width: 100%;
    padding: 1.25rem 0;
  }
}
.link.link-b a {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}
.link.link-b._ul a {
  text-decoration: underline;
}
.link.link-c a {
  color: #835E00;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
  position: relative;
  padding-right: 2.875rem;
  display: inline-block;
}
.link.link-c a::before {
  display: inline-block;
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  background: url(../img/link-arrow.svg) no-repeat center/100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}
.link.link-c a::after {
  display: inline-block;
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  background: url(../img/link-arrow.svg) no-repeat center/100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
.link.link-c a:hover::before {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  opacity: 0;
}
.link.link-c a:hover::after {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  opacity: 1;
}

/**************************************************/
/* components - form */
/**************************************************/
:root {
  --form-border-color: #ccc;
  --form-required-color: #E80000;
  --form-alert-color: #F00;
  --form-alert-bg-color: #FFF0F0;
  --form-btn-bg-color: #000;
  --form-btn-edit-color: #6F6F6F;
}

form label {
  cursor: pointer;
}
form textarea {
  line-height: 1.25;
  resize: vertical;
}

*:-moz-placeholder {
  color: #aaa;
}

*:-ms-input-placeholder {
  color: #aaa;
}

*:placeholder-shown {
  color: #aaa;
}
*::-webkit-input-placeholder {
  color: #aaa;
}
*:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #aaa;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

.f-error {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.625rem 0 0;
  padding: 0.5em 1em;
  border-radius: 0.1875rem;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}

.f-errorMsg {
  display: block;
  margin-bottom: 2.5rem;
  padding: 1em;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}
.f-errorMsg__text {
  display: block;
  margin: 0;
  background-color: transparent;
}

.f-field {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0.625em 0.75em;
  border: 1px solid var(--form-border-color);
  border-radius: 0;
  line-height: 1.25em;
}

textarea.f-field {
  display: block;
  line-height: 1.25;
}

.f-checkbox {
  display: inline-block;
  cursor: pointer;
}
.f-checkbox > input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.f-checkbox__in {
  display: block;
  position: relative;
  padding: 0.125rem 0.125rem 0.125rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.f-checkbox__in::after {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--form-border-color);
  border-radius: 0;
  background: #fff no-repeat center/1.125rem 1.125rem;
  content: "";
}
.f-checkbox input[type=checkbox]:checked ~ .f-checkbox__in::after {
  background-image: url(../img/icon-checkbox-checked.svg);
}

.f-radio {
  display: inline-block;
  cursor: pointer;
}
.f-radio > input[type=radio] {
  position: absolute;
  opacity: 0;
}
.f-radio__in {
  display: block;
  position: relative;
  padding: 0.125rem 0.125rem 0.125rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.f-radio__in::after {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--form-border-color);
  border-radius: 50%;
  background: #fff no-repeat center/0.625rem 0.625rem;
  content: "";
}
.f-radio input[type=radio]:checked ~ .f-radio__in::after {
  background-image: url(../img/icon-radio-checked.svg);
}

.f-selectbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.f-selectbox::-ms-expand {
  display: none;
}
.f-selectbox {
  position: relative;
  padding: 0.625em 2.625em 0.625em 0.75em;
  border: 1px solid var(--form-border-color);
  border-radius: 0.25em;
  background: url(../img/icon-select.svg) no-repeat right 0.5625em top 50%, -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd)) no-repeat right -1px top 50%, #fff;
  background: url(../img/icon-select.svg) no-repeat right 0.5625em top 50%, linear-gradient(to bottom, #eee 0%, #ddd 100%) no-repeat right -1px top 50%, #fff;
  background-size: 0.75em 0.75em, 2em 100%;
  line-height: 1.25em;
}
.f-selectbox.-full {
  width: 100%;
}
.f-selectbox.-short {
  width: 100%;
  max-width: 8.75rem;
}
.f-selectbox.-middle {
  width: 100%;
  max-width: 15.625rem;
}
.f-selectbox.-long {
  width: 100%;
  max-width: 25rem;
}

.f-btn {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1em;
  background: var(--form-btn-bg-color);
  color: #fff;
  font-weight: 700;
}
.f-btn__label {
  display: inline-block;
  position: relative;
}

.f-input {
  margin: 1rem 0 0;
}
.f-input.-short {
  max-width: 8.75rem;
}
.f-input.-middle {
  max-width: 15rem;
}
.f-input.-long {
  max-width: 25rem;
}

.f-input-columns {
  list-style: none;
  margin: 1rem 0 0;
  padding-left: 0;
  line-height: 1.5;
}
.f-input-columns > li + li {
  padding-top: 0.5rem;
}

.f-input-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 -0.5rem -1rem;
  line-height: 1.5;
}
.f-input-rows > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0.5rem 1rem;
}
.f-input-units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0 -0.5rem -1rem;
  line-height: 1.5;
}
.f-input-units__unit {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0.5rem 1rem;
}
.f-input-units.-name .f-input-units {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: -1rem;
}
.f-input-units.-name .f-input-units__unit {
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
.f-input-units.-zip .f-input-units {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -0.5rem;
}
.f-input-units.-zip .f-input-units__unit {
  margin-left: 0.5rem;
}
.f-input-units.-zip .f-input-units__unit:nth-child(2) {
  width: 6.25rem;
}
.f-input-units.-zip .f-input-units__unit:nth-child(4) {
  width: 8.75rem;
}
.f-toConfirm {
  max-width: 15rem;
  margin: 2.5rem auto 0;
}

.f-toSend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
}
.f-toSend__unit {
  display: block;
  width: 15rem;
}

.f-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.f-table th, .f-table td {
  padding: 1.25rem 1em;
  border-bottom: 1px solid var(--form-alert-bg-color);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 2;
}
.f-table th > *:first-child, .f-table td > *:first-child {
  margin-top: 0 !important;
}
.f-table th {
  vertical-align: top;
  white-space: nowrap;
}
.f-table__required {
  display: block;
  position: relative;
  padding-right: 4.375rem;
}
.f-table__required::after {
  display: inline-block;
  content: "必須";
  position: absolute;
  top: 0.375rem;
  right: 0;
  padding: 0.25rem 1.5em;
  background: var(--form-required-color);
  font-size: 0.75em;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: inherit;
}
.f-table.-confirm th {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .f-table {
    display: block;
  }
  .f-table tbody, .f-table tr, .f-table th, .f-table td {
    display: block;
  }
  .f-table th, .f-table td {
    padding: 0;
    border-bottom: none;
    line-height: 1.75;
  }
  .f-table tr + tr {
    margin-top: 2rem;
  }
  .f-table th {
    width: auto;
  }
  .f-table td {
    margin-top: 0.5rem;
  }
  .f-table__required {
    padding-right: 0;
  }
  .f-table__required::after {
    position: relative;
    top: auto;
    margin-left: 1em;
    padding: 0.1875rem 1em;
  }
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Home */
/**************************************************/
body.pg-home {
  overflow-x: hidden;
}
@media (max-width: 1360px) {
  body.pg-home .event, body.pg-home .bnr-area, body.pg-home .background, body.pg-home .activities, body.pg-home .membership {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  body.pg-home .sp {
    display: none !important;
  }
  body.pg-home .event, body.pg-home .bnr-area, body.pg-home .background, body.pg-home .activities, body.pg-home .membership {
    max-width: 85rem;
  }
}
@media (max-width: 1023px) {
  body.pg-home .pc {
    display: none !important;
  }
}

.mv {
  background: url("../img/bg-kv.png") no-repeat center top/cover;
}
.mv .inner {
  max-width: 85rem;
  padding: 17.5rem 1.5rem 7rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1240px) {
  .mv .inner {
    padding: 23% 1.5rem 8%;
  }
}
@media (max-width: 1023px) {
  .mv .inner {
    background: #C89413 url("../img/bg-kv-sp.png") no-repeat center top/100% auto;
    padding: 13.4375rem 2.75rem 3.4375rem;
  }
}
.mv .txt {
  position: absolute;
  font-size: 1.625rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.225em;
  text-indent: -4.5em;
  right: 1.5rem;
  bottom: 12.5rem;
  color: #fff;
}
@media (max-width: 1400px) {
  .mv .txt {
    bottom: 39%;
  }
}
@media (max-width: 1023px) {
  .mv .txt {
    position: relative;
    bottom: inherit;
    right: 0;
    font-size: 1.5rem;
    line-height: 1;
    padding-left: 3.5em;
    text-indent: -3.5em;
    letter-spacing: 0.15em;
  }
}
.mv .title-box {
  text-align: center;
  padding-right: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1400px) {
  .mv .title-box {
    padding-right: 5vw;
  }
}
@media (max-width: 1023px) {
  .mv .title-box {
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mv .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.9375rem;
  color: #fff;
  margin: 0 auto;
  letter-spacing: 0.07em;
  line-height: 1;
}
@media (min-width: 1024px) {
  .mv .title .sp {
    display: none;
  }
}
@media (max-width: 1023px) {
  .mv .title .pc {
    display: none;
  }
  .mv .title {
    font-size: 1.875rem;
    line-height: 1.5;
    text-shadow: 0 0 8px #956B02;
  }
}
.mv .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.9375rem;
  color: #fff;
  margin: 0 auto;
  margin-top: 1rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
}
.mv .sub-title span {
  font-size: 1.625rem;
  display: block;
  font-style: italic;
  margin-top: 0.5rem;
}
@media (max-width: 1023px) {
  .mv .sub-title {
    font-size: 1.25rem;
    letter-spacing: 0.025em;
    text-shadow: 0 0 8px rgba(149, 107, 2, 0.25);
  }
  .mv .sub-title span {
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    text-shadow: 0 0 8px rgba(149, 107, 2, 0.25);
  }
}
.mv .lead {
  letter-spacing: 0.15em;
  color: #fff;
  margin-top: 14rem;
  line-height: 2;
  padding-left: 1.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .mv .lead {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media (max-width: 1240px) {
  .mv .lead {
    margin-top: 20%;
  }
}
@media (max-width: 1023px) {
  .mv .lead {
    padding: 0;
    margin-top: 12%;
  }
}
.mv .lead h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  margin: 0;
  margin-left: 3rem;
}
@media (min-width: 1024px) {
  .mv .lead h2 {
    text-orientation: upright;
  }
}
@media (max-width: 1023px) {
  .mv .lead h2 {
    margin-left: 0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25em;
    line-height: 1.8;
  }
}
.mv .lead p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 2.5;
  letter-spacing: 0.25em;
  margin: 0;
}
@media (max-width: 1023px) {
  .mv .lead p {
    line-height: 2;
  }
}

.event {
  margin: 0 auto;
  padding-top: 9.375rem;
}
@media (max-width: 1023px) {
  .event {
    padding-top: 3.75rem;
  }
}
.event .link-a a {
  background: #5275B1;
}
.event .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.event .heading .title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}
.event .heading .title span {
  display: block;
  margin-bottom: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #5275B1;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  .event .heading .title span {
    margin-bottom: 2rem;
  }
}

#home .event .link-c {
  margin-top: 4rem;
  margin-bottom: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#home .event .link-c a {
  font-size: 1.25rem;
  color: #000;
  margin: 0 auto;
}
#home .event .link-c a::before {
  width: 1.5rem;
  height: 1.5rem;
}
#home .event-list {
  position: relative;
}
#home .event-list::after {
  display: block;
  content: "";
  width: 25rem;
  height: 25rem;
  background: url(../img/ripple-gold.svg) no-repeat center/auto 100%;
  position: absolute;
  right: -11.25rem;
  bottom: -9.375rem;
}
@media (max-width: 1023px) {
  #home .event-list::after {
    width: 12.8125rem;
    height: 18.75rem;
    right: -1.5rem;
    bottom: -5rem;
    background-position: left center;
  }
}
@media (max-width: 1023px) {
  #home .event-list li.js-hidden {
    display: none;
  }
}

.bnr-area {
  margin: 6.25rem auto;
}
.bnr-area .bnr-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.125rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3.125rem;
  padding: 0 2rem;
  margin: 0;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    padding: 0;
  }
}
.bnr-area .bnr-list li {
  border-radius: 0.25rem;
  overflow: hidden;
  height: 13.125rem;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li {
    height: auto;
  }
}
.bnr-area .bnr-list li a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  padding-left: 2.5rem;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li a {
    padding: 1.5rem;
    padding-left: 0.875rem;
  }
}
.bnr-area .bnr-list li a h3 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li a h3 {
    font-size: 1.125rem;
  }
}
.bnr-area .bnr-list li a h3 span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li a h3 span {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }
}
.bnr-area .bnr-list li.bnr-library a {
  border-left: 38px solid #718684;
  background: #7D9794 url("../img/bg-bnr-library.png") no-repeat right center/auto 100%;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li.bnr-library a {
    border-left: 24px solid #718684;
  }
}
.bnr-area .bnr-list li.bnr-membership a {
  border-left: 38px solid #DBA213;
  background: url("../img/bg-bnr-membership.png") no-repeat right center/auto 100%, #C89413;
}
@media (max-width: 1023px) {
  .bnr-area .bnr-list li.bnr-membership a {
    border-left: 24px solid #DBA213;
    background-position: right -20px center;
  }
}

.background {
  margin: 6.25rem auto;
  padding: 6.25rem 8.125rem;
  background: #FFF9EE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #C89413;
}
@media (max-width: 1023px) {
  .background {
    padding: 3rem 1.5rem;
    margin: 6rem auto 3rem;
  }
}
.background .outline {
  background: radial-gradient(#FFF9EE 24%, #fff 70%);
  padding: 4.5rem 5.25rem 5rem;
  text-align: center;
  position: relative;
}
.background .outline::after {
  display: block;
  content: "";
  width: 25rem;
  height: 25rem;
  background: url(../img/ripple-gold.svg) no-repeat center/auto 100%;
  position: absolute;
  top: 4.5rem;
  right: -12.5rem;
}
@media (max-width: 1023px) {
  .background .outline::after {
    width: 11.25rem;
    height: 18.75rem;
    right: -1.5rem;
    top: 7.25rem;
    background-position: left center;
  }
}
@media (max-width: 1023px) {
  .background .outline {
    padding: 3rem 1.5rem 5rem;
  }
}
.background .outline .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 1023px) {
  .background .outline .title {
    font-size: 1.4375rem;
  }
}
.background .outline .title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  color: #C89413;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  .background .outline .title span {
    margin-bottom: 1.5rem;
  }
}
.background .outline p {
  margin: 3.5rem auto 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  line-height: 1.65;
}
@media (max-width: 1023px) {
  .background .outline p {
    margin-top: 2rem;
    text-align: left;
  }
}
.background .outline .link {
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .background .outline .link {
    margin-top: 2rem;
  }
}
.background .message {
  margin: 5rem 0 5rem 17.5rem;
  padding-left: 4rem;
  border-left: 1px solid #C89413;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 17.5rem);
  position: relative;
}
@media (max-width: 1023px) {
  .background .message {
    width: 100%;
    margin: 13.625rem 0 4rem;
    padding-left: 2rem;
  }
}
.background .message .img {
  position: absolute;
  left: -17.5rem;
  top: -12.5rem;
}
.background .message .img::after {
  display: block;
  content: "";
  width: 33.5625rem;
  height: 33.5625rem;
  background: url(../img/ripple-gold.svg) no-repeat center/100% auto;
  position: absolute;
  left: -16.25rem;
  top: 3.75rem;
}
@media (max-width: 1023px) {
  .background .message .img {
    width: 8.75rem;
    left: calc(50% - 4.375rem);
    top: -15.625rem;
  }
  .background .message .img img {
    width: 100%;
  }
  .background .message .img::after {
    width: 18.75rem;
    height: 18.75rem;
    left: -12.75rem;
    top: 4.625rem;
  }
}
.background .message .about {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
}
.background .message .about .post {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.025em;
}
.background .message .about .name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
}
.background .message .about::after {
  display: block;
  content: "Message";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #835E00;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .background .message .about::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .background .message .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.background .message .txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  margin-top: 5.5rem;
}
@media (max-width: 1023px) {
  .background .message .txt {
    margin-top: 0;
  }
}
.background .message .txt .link {
  margin-top: 4.5rem;
}
.background .message .txt .sp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #835E00;
}
.background .detail {
  margin-top: 2.5rem;
  border-top: 1px solid #C89413;
  padding-top: 1rem;
}
.background .detail h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #835E00;
  padding-left: 1rem;
  margin: 0;
}
.background .detail p {
  margin: 2.5rem auto 0;
  padding: 0 12.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.27em;
}
@media (max-width: 1023px) {
  .background .detail p {
    padding: 0 1rem;
  }
}
.background .detail .link a {
  text-align: right;
  color: #000;
  margin-top: 4rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .background .detail .link a {
    margin-top: 2.5rem;
  }
}
.background .link-list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.5rem;
  margin: 2.5rem 0 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .background .link-list {
    grid-gap: 0.5rem;
  }
}
.background .link-list li {
  margin: 0;
  padding: 0;
}
.background .link-list li a {
  display: block;
  width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #835E00;
  text-decoration: none;
  border-top: 1px solid #C89413;
}
@media (max-width: 1023px) {
  .background .link-list li a {
    padding-left: 0;
    padding-top: 0.75rem !important;
  }
}

.activities {
  margin: 6.25rem auto;
  padding: 6.25rem 8.125rem;
  background: #F0F5F5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #51A89D;
}
@media (max-width: 1023px) {
  .activities {
    margin: 3rem auto 5.625rem;
    padding: 3rem 1.5rem 5.625rem;
  }
}
.activities .outline {
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
  padding: 5rem 5.25rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .activities .outline {
    padding: 3rem 1.5rem 3rem;
  }
}
.activities .outline .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 1023px) {
  .activities .outline .title {
    font-size: 1.4375rem;
  }
}
.activities .outline .title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  color: #34877D;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  .activities .outline .title span {
    margin-bottom: 1.5rem;
  }
}
.activities .outline p {
  margin: 4rem auto 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 1023px) {
  .activities .outline p {
    margin: 2rem auto 0;
    text-align: left;
    letter-spacing: 0.25em;
  }
}
.activities .outline .link {
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .activities .outline .link {
    margin-top: 2rem;
  }
}
.activities .outline .link a {
  background: #34877D;
}
.activities .about {
  margin-top: 5rem;
}
.activities .about h3 {
  margin: 0;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #34877D;
}
.activities .about p {
  margin: 0;
  margin-top: 4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 1023px) {
  .activities .about p {
    text-align: left;
    margin-top: 1.5rem;
  }
}
.activities .about .card-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5rem;
  list-style: none;
  margin: 5rem 0 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .activities .about .card-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
    margin: 3rem 0 0;
  }
}
.activities .about .card-list li {
  height: 23.4375rem;
  background: #fff;
  position: relative;
}
@media (max-width: 1023px) {
  .activities .about .card-list li {
    height: 19.6875rem;
  }
}
.activities .about .card-list li.card01::after {
  display: block;
  content: "";
  width: 4.5625rem;
  height: 6.1875rem;
  background: url("../img/icon-home-card01.svg") no-repeat center/100% auto;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list li.card01::after {
    width: 2.625rem;
    height: 3.5rem;
    top: 1rem;
    right: 1.5rem;
  }
}
.activities .about .card-list li.card02::after {
  display: block;
  content: "";
  width: 5rem;
  height: 5.125rem;
  background: url("../img/icon-home-card02.svg") no-repeat center/100% auto;
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list li.card02::after {
    width: 3.4375rem;
    height: 3.5rem;
    top: 1rem;
    right: 1.5rem;
  }
}
.activities .about .card-list li.card03::after {
  display: block;
  content: "";
  width: 6.125rem;
  height: 4.5rem;
  background: url("../img/icon-home-card03.svg") no-repeat center/100% auto;
  position: absolute;
  top: 2.25rem;
  right: 1.375rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list li.card03::after {
    width: 3.75rem;
    height: 2.75rem;
    top: 1rem;
    right: 1.5rem;
  }
}
.activities .about .card-list li.card04::after {
  display: block;
  content: "";
  width: 3.125rem;
  height: 5.5625rem;
  background: url("../img/icon-home-card04.svg") no-repeat center/100% auto;
  position: absolute;
  top: 1.875rem;
  right: 2.8125rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list li.card04::after {
    width: 2rem;
    height: 3.5rem;
    top: 1rem;
    right: 1.5rem;
  }
}
.activities .about .card-list a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: #000;
  border: 1px solid transparent;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.activities .about .card-list a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.activities .about .card-list a > div {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.5rem 2.5rem 0;
  height: 100%;
}
@media (max-width: 1023px) {
  .activities .about .card-list a > div {
    padding: 2rem 1.5rem 0;
  }
}
.activities .about .card-list a > div::before {
  display: inline-block;
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  background: url(../img/link-arrow-black.svg) no-repeat center/100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list a > div::before {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0;
  }
}
.activities .about .card-list a > div::after {
  display: inline-block;
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  background: url(../img/link-arrow-green.svg) no-repeat center/100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list a > div::after {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 1;
  }
}
.activities .about .card-list a .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #34877D;
  margin: 0;
}
@media (max-width: 1023px) {
  .activities .about .card-list a .title {
    text-align: left;
  }
}
.activities .about .card-list a p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.27em;
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .activities .about .card-list a p {
    margin-top: 1.875rem;
    line-height: 1.8;
  }
}
.activities .about .card-list a:hover {
  opacity: 1;
  border: 1px solid #51A89D;
}
.activities .about .card-list a:hover::before {
  opacity: 0;
}
.activities .about .card-list a:hover div::before {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  opacity: 0;
}
.activities .about .card-list a:hover div::after {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  opacity: 1;
}
.activities .link-list {
  margin-top: 5rem;
  list-style: none;
  padding: 0;
}
.activities .link-list li a {
  display: block;
  width: 100%;
  border-top: 1px solid #51A89D;
  padding: 1rem 1rem 1.25rem;
  color: #000;
  text-decoration: none;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  .activities .link-list li a {
    padding-bottom: 2rem;
  }
}
.activities .link-list li a .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #34877D;
  margin: 0;
}
.activities .link-list li a p {
  margin: 2rem auto 0;
  padding: 0 12.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.27em;
}
@media (max-width: 1023px) {
  .activities .link-list li a p {
    padding: 0;
    letter-spacing: 0.05em;
  }
}
.activities .link-list li a .link {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  text-align: right;
  color: #000;
  margin-top: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0;
}
@media (max-width: 1023px) {
  .activities .link-list li a .link {
    margin-top: 2.5rem;
  }
}
.activities .link-list li a:hover {
  opacity: 1;
  background: #fff;
}
.activities .library {
  padding: 5rem 3.125rem 3.125rem;
  border-radius: 0.25rem 0 0 0.25rem;
  border-left: 2.5rem solid #718684;
  background: #7D9794 url("../img/bg-home-library_1.png") no-repeat right center/auto 100%;
  width: 79%;
  margin-top: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 1023px) {
  .activities .library {
    width: calc(100% + 1.5625rem);
    margin-right: -1.5625rem;
    margin-bottom: 12.5rem;
    border-left: none;
    border-top: 1.5rem solid #718684;
    padding: 2.5rem 1.5rem 2rem;
    background-size: 10.625rem auto;
    background-position: top right;
    border-radius: 0.25rem 0 0 0;
  }
}
.activities .library::before {
  display: block;
  content: "";
  width: 19.625rem;
  height: 44.5rem;
  background: url(../img/ripple-green.svg) no-repeat left center/auto 100%;
  position: absolute;
  left: -22.125rem;
  top: -1.75rem;
}
.activities .library::after {
  display: block;
  content: "";
  width: 30.5vw;
  background: url("../img/bg-home-library_2.png") no-repeat left center/auto 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
@media (max-width: 1023px) {
  .activities .library::after {
    width: 100%;
    height: 10rem;
    left: 0;
    top: 100%;
    background: url("../img/bg-home-library_2.png") no-repeat left center/100% auto;
  }
}
.activities .library h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
@media (max-width: 1023px) {
  .activities .library h3 {
    margin: 0 auto;
  }
}
.activities .library h3 span {
  display: block;
  margin-bottom: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
.activities .library p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  line-height: 1.8;
  margin-top: 2.5rem;
}
.activities .library .link-a {
  margin-top: 3rem;
}
.activities .library .link-a a {
  color: #718684;
  background: #fff;
  margin: 0;
}
.activities .library .link-c {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1023px) {
  .activities .library .link-c {
    margin-top: 2rem;
    padding-right: 0.5rem;
  }
}
.activities .library .link-c a {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: #fff;
}
.activities .library .link-c a::before {
  background-image: url("../img/link-arrow-white.svg");
}
@media (max-width: 1023px) {
  .activities .library .link-c a::before {
    bottom: 0.625rem;
  }
}
.activities .library .link-c a::after {
  background-image: url("../img/link-arrow-white.svg");
}
@media (max-width: 1023px) {
  .activities .library .link-c a {
    line-height: 2;
    text-align: right;
    padding-right: 3.5rem;
  }
}
.activities .local {
  margin-top: 5rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .activities .local {
    margin-top: 16.5rem;
  }
}
.activities .local h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #34877D;
}
.activities .local p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  margin-top: 4.5rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media (max-width: 1023px) {
  .activities .local p {
    margin-top: 2rem;
    text-align: left;
  }
}
.activities .local .link-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 2.5rem;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  margin-top: 4.5rem;
  padding: 0;
}
@media (max-width: 1023px) {
  .activities .local .link-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-top: 4rem;
  }
}
.activities .local .link-list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 2.5rem;
  border: 1px solid #51A89D;
  border-radius: 0.25rem;
  background: #fff;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #34877D;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.activities .local .link-list li a::after {
  display: block;
  content: "";
  width: 1.875rem;
  height: 1.25rem;
  background: url("../img/arrow-hlz-green.svg") no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.625rem);
  right: 2.5rem;
}
.activities .local .link-list li a:hover {
  opacity: 0.6;
}

.membership {
  margin: 0 auto;
  background: url("../img/bg-home-membership.png") no-repeat left center/auto 100%;
  text-align: center;
  padding: 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
}
@media (max-width: 1023px) {
  .membership {
    background: url("../img/bg-home-membership-sp.png") no-repeat top center/auto 100%;
    padding: 8.25rem 0 2.5rem;
    width: calc(100% - 3.125rem);
  }
}
.membership .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  color: #fff;
  margin: 0;
}
@media (max-width: 1023px) {
  .membership .title {
    font-size: 1.125rem;
  }
}
.membership .title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .membership .title span {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }
}
.membership p {
  margin-top: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 2.5;
  color: #fff;
  letter-spacing: 0.25em;
}
@media (max-width: 1023px) {
  .membership p {
    font-size: 0.9375rem;
    text-shadow: 0 0 0.5rem #896303;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.membership .link-a {
  margin-top: 3rem;
}
.membership .link-a a {
  background: #fff;
  color: #835E00;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
}
@media (max-width: 1023px) {
  .membership .link-a {
    margin-top: 2rem;
  }
}

.news {
  margin: 9.375rem auto 0;
  padding-bottom: 9.375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(76%, #F4F6FA));
  background: linear-gradient(to bottom, #fff, #F4F6FA 76%);
}
@media (max-width: 1023px) {
  .news {
    padding-bottom: 5rem;
    margin: 6rem auto 0;
  }
}
.news .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0 auto;
  text-align: center;
}
.news .title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  color: #254D94;
}
@media (max-width: 1023px) {
  .news .title span {
    margin-bottom: 1rem;
  }
}
.news .link-a {
  margin-top: 5rem;
}
.news .link-a a {
  background: #254D94;
  color: #fff;
}
@media (max-width: 1023px) {
  .news .link-a a {
    max-width: 18.75rem;
  }
}
@media (max-width: 1023px) {
  .news .link-a {
    margin-top: 1.5rem;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .news-list {
    margin-top: 3rem;
  }
}
.news-list li a {
  text-decoration: none;
  display: block;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-inline: 1.5rem;
}
.news-list li a:hover {
  background: rgb(255, 255, 255);
  opacity: 1;
}
.news-list p {
  margin: 0 auto;
  max-width: 85rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #254D94;
  border-top: 1px solid #254D94;
  padding: 4rem 5rem 4rem 3rem;
  position: relative;
}
@media (max-width: 1023px) {
  .news-list p {
    padding: 3rem 2rem 3rem 0;
  }
}
.news-list p .date {
  display: block;
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 1rem;
}
.news-list p::after {
  display: block;
  content: "";
  width: 1.875rem;
  height: 1.25rem;
  background: url("../img/arrow-hlz-blue.svg") no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.625rem);
  right: 3rem;
}
@media (max-width: 1023px) {
  .news-list p::after {
    right: 0;
  }
}

.news-list li:last-child p {
  border-bottom: 1px solid #254D94;
}

/**************************************************/
/* 汎用など */
/**************************************************/
.pg-home.-index .fixed-link, .pg-home.-entry .fixed-link {
  opacity: 1;
}

.breadcrumbs {
  background: #fff;
  margin-top: 9.375rem;
}
@media (max-width: 1023px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs-list {
  list-style: none;
  padding: 1.5rem 0;
  max-width: 85rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrumbs-list li {
  margin-right: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.breadcrumbs-list li a {
  text-decoration: none;
  color: #000;
  letter-spacing: 0.05em;
}
.breadcrumbs-list li a.link-home {
  color: #835E00;
}
.breadcrumbs-list li:nth-child(n+2)::before {
  display: inline-block;
  content: "»";
  margin-right: 1.5rem;
  color: #E6DABC;
}

.back {
  background: #FFEDC0;
}
.back-inner {
  padding: 1.5rem 0;
  max-width: 85rem;
  margin: 0 auto;
}
.back-inner p {
  margin: 0;
  padding: 0;
}
.back-inner p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #000;
}
.back-inner p a::before {
  display: inline-block;
  content: "";
  margin-right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/arrow-left-gold.svg") no-repeat center;
}

.area-related-list,
.event-list {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 3.125rem;
  -ms-grid-columns: 1fr 3.125rem 1fr 3.125rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  position: relative;
  padding: 0;
}
@media (max-width: 1023px) {
  .area-related-list,
  .event-list {
    margin-top: 4.5rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 2.5rem;
  }
}
.area-related-list li:only-child,
.event-list li:only-child {
  -ms-grid-column: 2;
  grid-column: 2;
}
@media (max-width: 1023px) {
  .area-related-list li:only-child,
  .event-list li:only-child {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.area-related-list li a,
.event-list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #000;
}
.area-related-list li .thumbnail,
.event-list li .thumbnail {
  width: 100%;
  height: 26.25rem;
  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: 3.125rem;
  background: rgba(82, 117, 177, 0.05);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.area-related-list li .thumbnail img,
.event-list li .thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1023px) {
  .area-related-list li .thumbnail,
  .event-list li .thumbnail {
    height: 20.3125rem;
  }
}
.area-related-list li .meta,
.event-list li .meta {
  margin-top: 1.75rem;
}
.area-related-list li .meta .date,
.event-list li .meta .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  margin-right: 1rem;
}
.area-related-list li .meta .category,
.event-list li .meta .category {
  margin: 0 auto;
}
.area-related-list li .meta .category span,
.event-list li .meta .category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  display: inline-block;
  padding: 0.125rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid #000;
  margin-right: 0.625rem;
}
.area-related-list li .title,
.event-list li .title {
  margin-top: 1.5rem;
  color: #5275B1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}

#membership .title-box, #contact .title-box, #about .title-box, #faq .title-box, #activities .title-box {
  background: radial-gradient(#FFF9EE 24%, #fff 70%);
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
}
#membership .title-box > p, #contact .title-box > p, #about .title-box > p, #faq .title-box > p, #activities .title-box > p {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  max-width: 68.75rem;
  margin: 4rem auto 0;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
}
#membership .title-box > p._mt16, #contact .title-box > p._mt16, #about .title-box > p._mt16, #faq .title-box > p._mt16, #activities .title-box > p._mt16 {
  margin: 1rem auto 0;
}
#membership .title-box h2, #contact .title-box h2, #about .title-box h2, #faq .title-box h2, #activities .title-box h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  #membership .title-box, #contact .title-box, #about .title-box, #faq .title-box, #activities .title-box {
    padding: 3rem 1.5rem 3.5rem;
  }
  #membership .title-box h2, #contact .title-box h2, #about .title-box h2, #faq .title-box h2, #activities .title-box h2 {
    font-size: 1.5rem;
  }
}
#membership .background, #contact .background, #about .background, #faq .background, #activities .background {
  margin-bottom: 0;
  padding-bottom: 9.375rem;
}
@media (max-width: 1023px) {
  #membership .background, #contact .background, #about .background, #faq .background, #activities .background {
    margin-top: 0;
    padding-bottom: 5rem;
  }
}
#membership .background > p:not(.acms-admin-module-edit), #contact .background > p:not(.acms-admin-module-edit), #about .background > p:not(.acms-admin-module-edit), #faq .background > p:not(.acms-admin-module-edit), #activities .background > p:not(.acms-admin-module-edit) {
  margin: 0 9.375rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 2;
}
@media (max-width: 1023px) {
  #membership .background > p:not(.acms-admin-module-edit), #contact .background > p:not(.acms-admin-module-edit), #about .background > p:not(.acms-admin-module-edit), #faq .background > p:not(.acms-admin-module-edit), #activities .background > p:not(.acms-admin-module-edit) {
    margin: 0;
  }
}
#membership .-yellow, #contact .-yellow, #about .-yellow, #faq .-yellow, #activities .-yellow {
  background: #FFF9EE;
}
#membership .-yellow .background, #contact .-yellow .background, #about .-yellow .background, #faq .-yellow .background, #activities .-yellow .background {
  margin-top: 0;
  border: none;
}
#membership .-green, #contact .-green, #about .-green, #faq .-green, #activities .-green {
  background: #F0F5F5;
}
#membership .-green .background, #contact .-green .background, #about .-green .background, #faq .-green .background, #activities .-green .background {
  margin-top: 0;
  border: none;
  background: #F0F5F5;
}
#membership .breadcrumbs, #contact .breadcrumbs, #about .breadcrumbs, #faq .breadcrumbs, #activities .breadcrumbs {
  margin-top: 0;
}
#membership .outline::after, #contact .outline::after, #about .outline::after, #faq .outline::after, #activities .outline::after {
  display: none;
}
#membership .outline h3, #contact .outline h3, #about .outline h3, #faq .outline h3, #activities .outline h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #835E00;
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  #membership .outline h3, #contact .outline h3, #about .outline h3, #faq .outline h3, #activities .outline h3 {
    margin-top: 2rem;
  }
}
#membership .outline h3.border-top, #contact .outline h3.border-top, #about .outline h3.border-top, #faq .outline h3.border-top, #activities .outline h3.border-top {
  border-top: 2px dotted #C89413;
  padding-top: 2.5rem;
  margin-left: 9.375rem;
  margin-right: 9.375rem;
}
@media (max-width: 1023px) {
  #membership .outline h3.border-top, #contact .outline h3.border-top, #about .outline h3.border-top, #faq .outline h3.border-top, #activities .outline h3.border-top {
    margin-left: 0;
    margin-right: 0;
  }
}
#membership .outline p.gothic, #contact .outline p.gothic, #about .outline p.gothic, #faq .outline p.gothic, #activities .outline p.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  margin-top: 2rem;
}
#membership .outline .link, #contact .outline .link, #about .outline .link, #faq .outline .link, #activities .outline .link {
  margin-top: 2rem;
}
#membership .outline .link a, #contact .outline .link a, #about .outline .link a, #faq .outline .link a, #activities .outline .link a {
  padding-left: 3rem;
}
@media (max-width: 1023px) {
  #membership .outline .link a, #contact .outline .link a, #about .outline .link a, #faq .outline .link a, #activities .outline .link a {
    padding-left: 2rem;
  }
}
#membership .outline .link a::after, #contact .outline .link a::after, #about .outline .link a::after, #faq .outline .link a::after, #activities .outline .link a::after {
  display: inline-block;
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url("../img/icon-newpage-white.svg") no-repeat center;
  margin-left: 2rem;
}
#membership .detail, #contact .detail, #about .detail, #faq .detail, #activities .detail {
  padding: 0 9.375rem;
  border-top: none;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  #membership .detail, #contact .detail, #about .detail, #faq .detail, #activities .detail {
    padding: 0;
    margin-top: 2.5rem;
  }
}
#membership .detail ._mt24, #contact .detail ._mt24, #about .detail ._mt24, #faq .detail ._mt24, #activities .detail ._mt24 {
  margin-top: 1.5rem;
}
#membership .detail ._mt48, #contact .detail ._mt48, #about .detail ._mt48, #faq .detail ._mt48, #activities .detail ._mt48 {
  margin-top: 3rem;
}
#membership .detail h3, #contact .detail h3, #about .detail h3, #faq .detail h3, #activities .detail h3 {
  border-top: 1px solid #C89413;
  padding: 1rem 0 0;
}
#membership .detail h4, #contact .detail h4, #about .detail h4, #faq .detail h4, #activities .detail h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-top: 3.5rem;
  padding-left: 3.125rem;
  color: #835E00;
}
@media (max-width: 1023px) {
  #membership .detail h4, #contact .detail h4, #about .detail h4, #faq .detail h4, #activities .detail h4 {
    padding-left: 1.5rem;
  }
}
#membership .detail p, #contact .detail p, #about .detail p, #faq .detail p, #activities .detail p {
  margin-top: 1rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #membership .detail p, #contact .detail p, #about .detail p, #faq .detail p, #activities .detail p {
    padding: 0 1.5rem;
  }
}
#membership .detail p span, #contact .detail p span, #about .detail p span, #faq .detail p span, #activities .detail p span {
  display: inline-block;
  margin-right: 2rem;
}
@media (max-width: 1023px) {
  #membership .detail p span, #contact .detail p span, #about .detail p span, #faq .detail p span, #activities .detail p span {
    display: block;
    margin-right: 0;
  }
}
#membership .detail ul, #contact .detail ul, #about .detail ul, #faq .detail ul, #activities .detail ul {
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #membership .detail ul, #contact .detail ul, #about .detail ul, #faq .detail ul, #activities .detail ul {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1023px) {
  #membership .detail ul.notes, #contact .detail ul.notes, #about .detail ul.notes, #faq .detail ul.notes, #activities .detail ul.notes {
    padding: 0;
  }
}
#membership .detail ul.notes li, #contact .detail ul.notes li, #about .detail ul.notes li, #faq .detail ul.notes li, #activities .detail ul.notes li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-left: 1.25em;
  text-indent: -0.65em;
  line-height: 2;
  letter-spacing: 0.2em;
}
#membership .detail ul.notes li::before, #contact .detail ul.notes li::before, #about .detail ul.notes li::before, #faq .detail ul.notes li::before, #activities .detail ul.notes li::before {
  display: inline-block;
  content: "※";
}
#membership .detail ul.notes.-number, #contact .detail ul.notes.-number, #about .detail ul.notes.-number, #faq .detail ul.notes.-number, #activities .detail ul.notes.-number {
  counter-reset: listnum;
}
#membership .detail ul.notes.-number li, #contact .detail ul.notes.-number li, #about .detail ul.notes.-number li, #faq .detail ul.notes.-number li, #activities .detail ul.notes.-number li {
  padding-left: 3em;
  text-indent: -1.5em;
}
#membership .detail ul.notes.-number li::before, #contact .detail ul.notes.-number li::before, #about .detail ul.notes.-number li::before, #faq .detail ul.notes.-number li::before, #activities .detail ul.notes.-number li::before {
  display: inline-block;
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: "※" counter(listnum); /* カウントした数に応じて番号を表示 */
  margin-right: 1rem;
}
#membership .detail ol, #contact .detail ol, #about .detail ol, #faq .detail ol, #activities .detail ol {
  counter-reset: listnum;
  list-style: none;
  padding-left: 8.4375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media (max-width: 1023px) {
  #membership .detail ol, #contact .detail ol, #about .detail ol, #faq .detail ol, #activities .detail ol {
    padding-left: 1.5rem;
  }
}
#membership .detail ol > li, #contact .detail ol > li, #about .detail ol > li, #faq .detail ol > li, #activities .detail ol > li {
  margin-top: 1rem;
  text-indent: -0.9em;
  padding-left: 1.75em;
}
#membership .detail ol > li::before, #contact .detail ol > li::before, #about .detail ol > li::before, #faq .detail ol > li::before, #activities .detail ol > li::before {
  display: inline-block;
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: "(" counter(listnum) ")"; /* カウントした数に応じて番号を表示 */
}
#membership .detail ol ul, #contact .detail ol ul, #about .detail ol ul, #faq .detail ol ul, #activities .detail ol ul {
  padding-left: 1.5rem;
}
#membership .detail ol ul li, #contact .detail ol ul li, #about .detail ol ul li, #faq .detail ol ul li, #activities .detail ol ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-indent: -1.15em;
}
#membership .contact-box, #contact .contact-box, #about .contact-box, #faq .contact-box, #activities .contact-box {
  padding: 0 6.5625rem;
}
@media (max-width: 1023px) {
  #membership .contact-box, #contact .contact-box, #about .contact-box, #faq .contact-box, #activities .contact-box {
    padding: 0 1.5rem;
  }
}
#membership .contact-box.normal, #contact .contact-box.normal, #about .contact-box.normal, #faq .contact-box.normal, #activities .contact-box.normal {
  padding: 0 3.125rem;
}
#membership .contact-box.normal p, #contact .contact-box.normal p, #about .contact-box.normal p, #faq .contact-box.normal p, #activities .contact-box.normal p {
  padding: 0;
  text-indent: 0;
}
#membership .contact-box.normal p span, #contact .contact-box.normal p span, #about .contact-box.normal p span, #faq .contact-box.normal p span, #activities .contact-box.normal p span {
  display: block;
}
@media (max-width: 1023px) {
  #membership .contact-box.normal, #contact .contact-box.normal, #about .contact-box.normal, #faq .contact-box.normal, #activities .contact-box.normal {
    padding: 0 1.5rem;
  }
}
#membership .contact-box > div, #contact .contact-box > div, #about .contact-box > div, #faq .contact-box > div, #activities .contact-box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1023px) {
  #membership .contact-box > div, #contact .contact-box > div, #about .contact-box > div, #faq .contact-box > div, #activities .contact-box > div {
    display: block;
    gap: 0;
  }
}
#membership .contact-box h4, #contact .contact-box h4, #about .contact-box h4, #faq .contact-box h4, #activities .contact-box h4 {
  padding: 0;
}
#membership .contact-box p, #contact .contact-box p, #about .contact-box p, #faq .contact-box p, #activities .contact-box p {
  padding: 0;
}
#membership .contact-box p span, #contact .contact-box p span, #about .contact-box p span, #faq .contact-box p span, #activities .contact-box p span {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-right: 0.25rem;
}
#membership .link-list, #contact .link-list, #about .link-list, #faq .link-list, #activities .link-list {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 9.375rem;
}
@media (max-width: 1023px) {
  #membership .link-list, #contact .link-list, #about .link-list, #faq .link-list, #activities .link-list {
    margin-top: 5rem;
  }
}
#membership .link-list.-sitemap, #contact .link-list.-sitemap, #about .link-list.-sitemap, #faq .link-list.-sitemap, #activities .link-list.-sitemap {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin: 5rem auto 0;
  grid-gap: 5rem;
  max-width: 50rem;
}
@media (max-width: 1023px) {
  #membership .link-list.-sitemap, #contact .link-list.-sitemap, #about .link-list.-sitemap, #faq .link-list.-sitemap, #activities .link-list.-sitemap {
    grid-gap: 2.5rem;
  }
}
#membership .link-list.-sitemap a, #contact .link-list.-sitemap a, #about .link-list.-sitemap a, #faq .link-list.-sitemap a, #activities .link-list.-sitemap a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
#membership .link-list.-sitemap .title, #contact .link-list.-sitemap .title, #about .link-list.-sitemap .title, #faq .link-list.-sitemap .title, #activities .link-list.-sitemap .title {
  padding-left: 2.5rem;
}
@media (max-width: 1023px) {
  #membership .link-list.-sitemap .title, #contact .link-list.-sitemap .title, #about .link-list.-sitemap .title, #faq .link-list.-sitemap .title, #activities .link-list.-sitemap .title {
    padding-left: 1.5rem;
  }
}
#membership .link-list.-sitemap ul, #contact .link-list.-sitemap ul, #about .link-list.-sitemap ul, #faq .link-list.-sitemap ul, #activities .link-list.-sitemap ul {
  grid-gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
}
@media (max-width: 1023px) {
  #membership .link-list.-sitemap ul, #contact .link-list.-sitemap ul, #about .link-list.-sitemap ul, #faq .link-list.-sitemap ul, #activities .link-list.-sitemap ul {
    grid-gap: 1.5rem 1rem;
  }
}

/**************************************************/
/* 記事ページ汎用 */
/**************************************************/
.entry {
  margin: 0 auto;
  padding-top: 9.375rem;
  max-width: 85rem;
}
@media (max-width: 1360px) {
  .entry {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .entry {
    padding-top: 3rem;
  }
}
.entry.-areaentry {
  padding-bottom: 9.375rem;
}
@media (max-width: 1360px) {
  .entry.-areaentry {
    padding-bottom: 5rem;
  }
}
@media (max-width: 1023px) {
  .entry.-areaentry {
    padding-bottom: 2.5rem;
  }
}
.entry .link-a a {
  background: #5275B1;
}
.entry .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.entry .heading .title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}
.entry .heading .title span {
  display: block;
  margin-bottom: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #5275B1;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  .entry .heading .title span {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1023px) {
  .entry .heading {
    -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;
    text-align: center;
  }
  .entry .heading .title span {
    margin-bottom: 1rem;
  }
  .entry .heading .link-a {
    width: 100%;
    margin-top: 2rem;
  }
}

.entry-detail {
  max-width: 68.75rem;
  margin: 4.5rem auto 0;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9.375rem;
  border-radius: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1023px) {
  .entry-detail {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 1.5625rem;
  }
}
.entry-detail .meta .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  display: inline-block;
  margin: 0 auto;
  margin-right: 1rem;
  padding: 0;
}
.entry-detail .meta .category {
  margin: 0 auto;
}
.entry-detail .meta .category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  display: inline-block;
  padding: 0.125rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid #000;
  margin-right: 0.625rem;
}
.entry-detail .title {
  margin: 1.5rem auto 3.75rem;
  color: #5275B1;
  font-size: 2rem;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1023px) {
  .entry-detail .title {
    font-size: 1.5rem;
  }
}
.entry-detail .main-img {
  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;
  margin-top: 3.5rem;
}

.entry-body .heading-a {
  color: #254D94;
  border-top: 1px solid #254D94;
  padding: 1rem 1rem 0;
  margin-bottom: 3.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .entry-body .heading-a {
    padding: 1rem 0 0;
  }
}
.entry-body .heading-b {
  font-size: 1rem;
  margin-top: 3.5rem;
  color: #254D94;
  letter-spacing: 0.25em;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  .entry-body .heading-b {
    padding: 0;
  }
}
.entry-body span.red {
  color: #e60012;
}
.entry-body p {
  margin-top: 1.5rem;
  letter-spacing: 0.25em;
  font-size: 0.875rem;
  padding: 0 3.125rem;
  line-height: 2;
}
@media (max-width: 1023px) {
  .entry-body p {
    padding: 0;
  }
}
.entry-body p._mt16 {
  margin-top: 1rem;
}
.entry-body p._mt56 {
  margin-top: 3.5rem;
}
.entry-body p img {
  display: block;
  margin: 0 auto;
}
.entry-body p a {
  overflow-wrap: anywhere;
  color: #254D94;
}
.entry-body p em {
  color: #254D94;
}
.entry-body .column-media {
  max-width: 100%;
}
.entry-body .column-media-center {
  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;
}
.entry-body .acms-align-items-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 0 3.125rem;
}
.entry-body .acms-align-items-start .column-block-editor:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 30%;
}
.entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) .heading-b:first-child, .entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) .heading-a:first-child, .entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) p:first-child {
  margin-top: 0;
}
.entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) .heading-b, .entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) .heading-a, .entry-body .acms-align-items-start .column-block-editor:nth-child(n+2) p {
  padding-left: 0;
}
.entry-body .acms-align-items-start figure {
  min-width: 100% !important;
  margin: 0;
}
@media (max-width: 1023px) {
  .entry-body .acms-align-items-start {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .entry-body .acms-align-items-start .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.entry-body .column-group p {
  padding: 0;
  margin: 0;
}
.entry-body .column-group .text p:nth-child(n+2) {
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .entry-body .column-group {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .entry-body .column-group .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.entry-body .box {
  border-radius: 0.25rem;
  padding: 3.125rem;
  background: #E0ECFF;
  margin-top: 3rem;
}
.entry-body .box.white {
  background: white;
}
@media (max-width: 1023px) {
  .entry-body .box {
    padding: 1.5625rem;
  }
}
.entry-body .box .heading-b {
  padding: 0;
  margin-top: 0;
}
.entry-body .box .column {
  padding: 0;
}
.entry-body .box p {
  padding: 0;
}
.entry-body .link-button-block {
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  .entry-body .link-button-block {
    padding: 0;
  }
}
.entry-body .link-button-block .link-button-block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
  background: #E0ECFF;
  color: #254D94;
  text-decoration: none;
  border-radius: 0.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry-body .link-button-block .link-button-block-link::after {
  display: block;
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/icon-newpage.svg) no-repeat center/100%;
}
.entry-body .map {
  margin: 1.5rem 0 0 0;
  padding: 0 3.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry-body .map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 600/450;
}
@media (max-width: 1023px) {
  .entry-body .map {
    padding: 0;
  }
}
.entry-body ul {
  list-style: none;
  font-size: 0.875rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  .entry-body ul {
    padding: 0;
  }
}
.entry-body ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 1rem;
}
.entry-body ul li p {
  padding: 0;
}
.entry-body ul li:first-child {
  margin-top: 0;
}
.entry-body ul li::before {
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #5275B1;
  border-radius: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.entry-body ol {
  counter-reset: listnum;
  list-style: none;
  padding-left: 8.4375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media (max-width: 1023px) {
  .entry-body ol {
    padding-left: 1.5rem;
  }
}
.entry-body ol > li {
  margin-top: 1rem;
  text-indent: -0.9em;
  padding-left: 1.75em;
}
.entry-body ol > li::before {
  display: inline-block;
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: "(" counter(listnum) ")"; /* カウントした数に応じて番号を表示 */
}
.entry-body ol ul {
  padding-left: 1.5rem;
}
.entry-body ol ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-indent: -1.15em;
}
.entry-body .column-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.share-box {
  margin: 5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 3.125rem;
  border-radius: 3.125rem;
  background: #fff;
  max-width: 43.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  .share-box {
    display: none;
  }
}
.share-box p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding-right: 3rem;
  border-right: 1px solid #000;
  margin-right: 3rem;
}
.share-box .share-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.share-box .share-list a {
  text-decoration: none;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
.share-box .share-list a.copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-box .share-list a.copy img {
  display: block;
  margin-right: 0.5rem;
}

.related-articles {
  padding: 9.375rem 0;
  margin-top: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(76%, #F4F6FA)) no-repeat center bottom/100%;
  background: linear-gradient(to bottom, #fff, #F4F6FA 76%) no-repeat center bottom/100%;
}
@media (max-width: 1023px) {
  .related-articles {
    padding: 5rem 1.5625rem;
  }
}
.related-articles .inner {
  max-width: 85rem;
  margin: 0 auto;
}
.related-articles .inner > .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0 auto;
  text-align: center;
}
.related-articles .inner > .title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  color: #254D94;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  .related-articles .inner > .title span {
    margin-bottom: 1rem;
  }
}
.related-articles .link-a {
  margin-top: 9.375rem;
}
@media (max-width: 1023px) {
  .related-articles .link-a {
    padding: 0 1.5625rem;
    margin-top: 3rem;
  }
}
.related-articles .link-a a {
  background-color: #5275B1;
}

/**************************************************/
/* news */
/**************************************************/
#news .l-page-container {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(76%, #f4f6fa)) no-repeat center bottom/100% 46.5625rem;
  background: linear-gradient(to bottom, #fff, #f4f6fa 76%) no-repeat center bottom/100% 46.5625rem;
}
#news .l-page-container .breadcrumbs {
  margin-top: 0;
}
@media (max-width: 1023px) {
  #news .l-page-container .news {
    padding-top: 3.75rem;
  }
}
#news.-entry .l-page-container {
  background: #f6f8fb;
  border-top: 1px solid #5275B1;
}
#news.-entry .news {
  margin-top: 0;
  background: #f6f8fb;
  padding-top: 9.375rem;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  #news.-entry .news {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3.75rem;
  }
}
#news.-entry .news .title {
  text-align: left;
}
@media (max-width: 1023px) {
  #news.-entry .news .title {
    text-align: center;
  }
}
#news .news-list::after {
  display: none;
}
#news .news-list li.js-hidden {
  display: none;
}
#news .related-articles {
  padding: 9.375rem 0;
}
@media (max-width: 1023px) {
  #news .related-articles {
    padding: 5rem 0;
  }
}

/**************************************************/
/* event */
/**************************************************/
#event .l-page-container {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(76%, #F4F6FA)) no-repeat center bottom/100% 46.5625rem;
  background: linear-gradient(to bottom, #fff, #F4F6FA 76%) no-repeat center bottom/100% 46.5625rem;
}
@media (max-width: 1023px) {
  #event .l-page-container .event {
    padding-top: 3rem;
  }
}
@media (max-width: 1023px) {
  #event .heading {
    -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;
    text-align: center;
  }
  #event .heading .title span {
    margin-bottom: 1rem;
  }
  #event .heading .link-a {
    width: 100%;
    margin-top: 2rem;
  }
}
#event.-index .l-page-container .link-a {
  margin-top: 9.375rem;
}
#event.-index .l-page-container .link-a a {
  border: 1px solid #254D94;
  background: #fff;
  color: #254D94;
}
@media (max-width: 1023px) {
  #event.-index .l-page-container {
    padding-bottom: 5rem;
  }
  #event.-index .l-page-container .link-a {
    margin-top: 3rem;
  }
}
#event.-entry .l-page-container {
  background: #F6F8FB;
  border-top: 1px solid #5275B1;
}
#event.-entry .l-page-container .breadcrumbs {
  margin-top: 0;
}
#event .event .heading > .link-a a {
  background: #5275B1;
  color: #fff;
  border: none;
}
#event .event-list li.js-hidden {
  display: none;
}

/**************************************************/
/* about */
/**************************************************/
@media (max-width: 1023px) {
  #about .message {
    margin-top: 12.5rem;
  }
}
@media (max-width: 1023px) {
  #about .message .img {
    top: -13.75rem;
  }
}
@media (min-width: 1023px) {
  #about .message .img {
    top: 0;
  }
}
#about .message .img::after {
  display: none;
}
#about .detail-column {
  max-width: 50rem;
  margin: 0 auto;
}
#about .detail-column .column-wrap {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5rem;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1023px) {
  #about .detail-column .column-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#about .detail-column .column-wrap div {
  padding: 4.5rem 1.5rem;
  border-radius: 0.5rem;
  background: radial-gradient(#D5E5DA 24%, #EEF1E6 70%);
}
@media (max-width: 1023px) {
  #about .detail-column .column-wrap div {
    padding: 3.5rem 1.5rem;
  }
}
#about .detail-column .column-wrap div h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 0;
}
#about .detail-column .column-wrap div p {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  text-align: center;
  margin-top: 2rem;
}
#about .detail-column .column-wrap div p span {
  font-size: 0.875rem;
  display: block;
}
#about .detail-column .column-wrap div p.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
}
#about .detail-column > p {
  text-align: right;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
}
#about .anchor-link {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.5rem;
  margin: 2.5rem auto 0;
  padding: 0;
  max-width: 62.5rem;
}
@media (max-width: 1023px) {
  #about .anchor-link {
    grid-gap: 0.5rem;
  }
}
#about .anchor-link li {
  margin: 0;
  padding: 0;
}
#about .anchor-link li a {
  display: block;
  width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #000;
  text-decoration: none;
  text-align: left;
  border-top: 1px solid #000;
}
@media (max-width: 1023px) {
  #about .anchor-link li a {
    padding-left: 0;
    padding-top: 0.75rem !important;
  }
}
#about .map iframe {
  width: 100%;
}
@media (max-width: 1023px) {
  #about .map iframe {
    height: 21.875rem;
  }
}
#about .detail h3._pl16 {
  padding: 1rem;
}
#about .detail p {
  padding-left: 9.75rem;
  text-indent: -3.25rem;
}
@media (max-width: 1023px) {
  #about .detail p {
    padding-left: 1.5rem;
    text-indent: 0;
  }
}
#about .detail p._pl40 {
  padding-left: 3.125rem;
  text-indent: 0;
}
@media (max-width: 1023px) {
  #about .detail p._pl40 {
    padding: 0 1.5rem;
  }
}
#about .detail p._pl100 {
  padding-left: 11.25rem;
  text-indent: -1em;
}
#about .detail p._pl100 span {
  margin-right: 0.5rem;
}
@media (max-width: 1023px) {
  #about .detail p._pl100 span {
    display: inline-block;
  }
}
@media (max-width: 1023px) {
  #about .detail p._pl100 {
    padding: 0 1.5rem;
    text-indent: 0;
  }
}
#about .detail p.normal {
  padding-left: 3.125rem;
  text-indent: 0;
  line-height: 1.5;
}
#about .detail p.normal a {
  color: #000;
}
@media (max-width: 1023px) {
  #about .detail p.normal {
    padding: 0 1.5rem;
    text-indent: 0;
  }
}
#about .detail ol {
  padding-left: 9.75rem;
}
@media (max-width: 1023px) {
  #about .detail ol {
    padding-left: 1.5rem;
  }
}
#about .detail ol.bg-gradation {
  padding: 2.5rem 3.125rem;
  background: radial-gradient(#FFF9EE 24%, #F9EFD8 70%);
  border-radius: 0.5rem;
  margin-top: 2.5rem;
}
#about .detail ol.bg-gradation li {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-top: 0;
  padding-left: 2.5rem;
  text-indent: -1.25em;
}
#about .detail ol.bg-gradation li::before {
  padding-right: 0.75rem;
}
#about .detail ul.bg-gradation {
  padding: 2.5rem 3.125rem;
  background: radial-gradient(#FFF9EE 24%, #F9EFD8 70%);
  border-radius: 0.5rem;
  margin-top: 2.5rem;
}
#about .detail ul.bg-gradation li {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding-left: 2rem;
  position: relative;
  margin-top: 2rem;
}
#about .detail ul.bg-gradation li:first-child {
  margin-top: 0;
}
#about .detail ul.bg-gradation li::before {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background: #C89413;
  border-radius: 0.5rem;
  position: absolute;
  top: 0.25rem;
  left: 0;
}
#about .detail .img {
  margin-top: 2.5rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #about .detail .img {
    padding: 0 1.5rem;
  }
}
#about .detail.-contact .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5rem;
}
@media (max-width: 1023px) {
  #about .detail.-contact .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#about .detail.-contact .grid p {
  text-indent: 0;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #about .detail.-contact .grid p {
    padding: 0 1.5rem;
  }
}
#about .detail.-contact .grid p span {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-right: 0.25rem;
}
#about .detail .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 1023px) {
  #about .detail .column {
    -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;
  }
}
#about .detail .column .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 4rem;
  padding: 0;
  padding-left: 1rem;
  margin-top: 0;
}
@media (max-width: 1023px) {
  #about .detail .column .img {
    margin: 0;
    padding: 0;
  }
}
#about .detail .column .text p {
  padding: 0;
  padding-right: 1rem;
}
@media (max-width: 1023px) {
  #about .detail .column .text p {
    padding: 0 1rem;
  }
}
#about .detail .column.-symbol {
  padding: 5rem 8rem;
  background: radial-gradient(#FFF9EE 24%, #fff 70%);
  border-radius: 0.5rem;
  margin-top: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#about .detail .column.-symbol .img {
  margin-right: 6rem;
  padding: 0;
}
@media (max-width: 1023px) {
  #about .detail .column.-symbol .img {
    margin: 0;
  }
}
#about .detail .column.-symbol .text {
  width: 20.5rem;
}
@media (max-width: 1023px) {
  #about .detail .column.-symbol .text {
    width: 100%;
  }
}
#about .detail .column.-symbol .text p {
  padding: 0;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  text-indent: 0;
  letter-spacing: 0.15em;
}
@media (max-width: 1023px) {
  #about .detail .column.-symbol .text p {
    font-size: 1rem;
  }
}
@media (max-width: 1023px) {
  #about .detail .column.-symbol {
    padding: 2rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .detail .history-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3.125rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  #about .detail .history-box {
    padding: 0 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .detail .history-box h4 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #C89413;
  margin: 0;
  margin-right: 1.5rem;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
}
#about .detail .history-box p {
  padding: 0;
  text-indent: 0;
  margin: 0;
}
#about .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #about .title-wrap {
    padding: 0 1.5rem;
  }
}
#about .title-wrap h3 {
  border-top: none;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #C89413;
  width: 4.375rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 2;
  margin-right: 3.125rem;
}
@media (max-width: 1023px) {
  #about .title-wrap h3 {
    margin-right: 1.5rem;
    width: 3.75rem;
  }
}
#about .title-wrap .name {
  padding: 0;
}
#about .title-wrap .name p {
  padding: 0;
  text-indent: 0;
}
#about .title-wrap .name span {
  display: block;
  color: #666;
}
#about .link-list {
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.25rem 2.5rem;
}
@media (max-width: 1023px) {
  #about .link-list {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}

/**************************************************/
/* activities */
/**************************************************/
#activities .title-box {
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
}
#activities .back {
  background: #F0F5F5;
}
#activities .back-inner p a::before {
  background-image: url("../img/arrow-left-green.svg");
}
#activities .about {
  margin-top: 10rem;
}
@media (max-width: 1023px) {
  #activities .about {
    margin-top: 5rem;
  }
}
#activities .background > p {
  text-align: center;
  letter-spacing: 0.15em;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  #activities .background > p {
    text-align: left;
  }
}
#activities .background > p.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 1.5rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #activities .background > p.gothic {
    padding: 0;
  }
}
#activities .background .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}
#activities .background .link-a {
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  #activities .background .link-a {
    margin-top: 2rem;
  }
}
#activities .background .link-a a {
  background-color: #34877D;
}
#activities .detail h3 {
  border-top: 1px solid #51A89D;
  color: #34877D;
  padding: 1rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  #activities .detail h3 {
    padding: 1rem 0;
  }
}
@media (max-width: 1023px) {
  #activities .detail p {
    padding: 0;
  }
}
#activities .detail h4 {
  color: #000;
  padding: 0 2.5rem;
  line-height: 1.7;
}
@media (max-width: 1023px) {
  #activities .detail h4 {
    padding: 0;
  }
}
#activities .detail .link {
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #activities .detail .link {
    padding: 0;
  }
}
#activities .detail ol {
  padding: 0 3.5rem;
}
@media (max-width: 1023px) {
  #activities .detail ol {
    padding: 0;
  }
}
#activities .detail ol.list-b {
  margin: 0;
}
#activities .detail ol.list-b > li {
  padding-left: 3rem;
  position: relative;
  margin-top: 2.5rem;
}
@media (max-width: 1023px) {
  #activities .detail ol.list-b > li {
    padding-left: 1.5rem;
  }
}
#activities .detail ol.list-b > li::before {
  display: block;
  width: 1rem;
  height: 1rem;
  text-align: center;
  padding-right: 1rem;
  position: absolute;
  line-height: 1;
  top: 0.25rem;
  left: 0;
  font-size: 1rem;
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum); /* カウントした数に応じて番号を表示 */
}
#activities .detail ol.list-b h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
#activities .detail ol.list-b p {
  font-size: 1rem;
  margin: 0.5rem 0 0;
  padding: 0;
  text-indent: 0;
}
#activities .detail .heading-border > span {
  display: block;
  border-top: 1px solid #51A89D;
  border-bottom: 1px dotted #51A89D;
  padding: 1rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
@media (max-width: 1023px) {
  #activities .detail .heading-border > span {
    padding: 1rem 0;
  }
}
#activities .detail .heading-border > span span {
  display: inline-block;
  margin-right: 0.5rem;
}
#activities .detail p._pd80 {
  padding: 0 5rem;
}
@media (max-width: 1023px) {
  #activities .detail p._pd80 {
    padding: 0;
  }
}
#activities .detail .heading-a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #34877D;
  padding: 0 3.125rem;
  margin: 1.5rem 0 0;
  letter-spacing: 0.25em;
  font-size: 0.875rem;
}
@media (max-width: 1023px) {
  #activities .detail .heading-a {
    padding: 0;
  }
}
#activities .detail .heading-green {
  color: #34877D;
  padding: 0 3.125rem;
  margin: 1.5rem 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.25em;
}
@media (max-width: 1023px) {
  #activities .detail .heading-green {
    padding: 0;
  }
}
#activities .detail.-relatedbook .heading-border span {
  padding: 1rem 2rem;
}
@media (max-width: 1023px) {
  #activities .detail.-relatedbook .heading-border span {
    padding: 1rem 0;
  }
}
#activities .detail.-relatedbook h5, #activities .detail.-relatedbook p {
  padding: 0 5rem;
}
@media (max-width: 1023px) {
  #activities .detail.-relatedbook h5, #activities .detail.-relatedbook p {
    padding: 0;
  }
}
#activities .entry-detail {
  background: radial-gradient(#F0F5F5 24%, #fff 100%);
}
#activities ._mincho-16 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1023px) {
  #activities ._mincho-16 {
    font-size: 0.875rem;
  }
}
#activities .schedule {
  border-collapse: collapse;
  width: calc(100% - 6.25rem);
  margin: 3rem auto 0;
}
@media (max-width: 1023px) {
  #activities .schedule {
    width: 100%;
  }
}
#activities .schedule th, #activities .schedule td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  border: 1px solid #34877D;
  padding: 0.75rem 1rem;
  letter-spacing: 0.25em;
}
@media (max-width: 1023px) {
  #activities .schedule th, #activities .schedule td {
    letter-spacing: 0.15em;
  }
}
#activities .schedule thead th {
  background: #51A89D;
  color: #fff;
}
#activities .schedule thead .day {
  width: 8%;
  text-align: center;
  padding: 0.75rem 0;
}
#activities .schedule thead .time {
  width: 20%;
  text-align: center;
}
@media (max-width: 1023px) {
  #activities .schedule thead .time {
    width: 15%;
    padding: 0.75rem 0;
  }
}
#activities .schedule tbody th, #activities .schedule tbody td {
  background: #fff;
  border: 1px solid #51A89D;
}
#activities .schedule tbody th {
  text-align: center;
}
#activities .schedule tbody td.red {
  background: #FFDEDE;
}
#activities .schedule tbody td.blue {
  background: #B7DBD6;
}
#activities .schedule tbody td.time {
  padding: 0.75rem 2rem;
}
@media (max-width: 1023px) {
  #activities .schedule tbody td.time {
    padding: 0.75rem 0.75rem;
  }
}
#activities .schedule tbody td span {
  color: #51A89D;
  padding-left: 0.5rem;
}
@media (max-width: 1023px) {
  #activities .schedule.-kojin th, #activities .schedule.-kojin td {
    font-size: 0.8125rem;
  }
  #activities .schedule.-kojin .reservation, #activities .schedule.-kojin .time, #activities .schedule.-kojin .seat {
    padding: 0.75rem 0;
    text-align: center;
    width: 16%;
  }
}
#activities .detail-box {
  padding: 3.125rem 3.5rem;
  border-radius: 0.5rem;
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
  width: calc(100% - 6.25rem);
  margin: 4rem auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  #activities .detail-box {
    padding: 1.5rem 2rem;
    width: 100%;
  }
}
#activities .detail-box ._txtc {
  text-align: center;
}
#activities .detail-box ._mt0 {
  margin-top: 0;
}
#activities .detail-box ._mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
}
@media (max-width: 1023px) {
  #activities .detail-box ._mincho {
    font-size: 1rem;
  }
}
#activities .detail-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  #activities .detail-box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#activities .detail-box .flex:first-child {
  margin-top: 0;
}
#activities .detail-box .flex p {
  padding: 0;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
#activities .detail-box .flex p span {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0;
  margin: 0 0.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1023px) {
  #activities .detail-box .flex p span {
    font-size: 1.125rem;
  }
}
#activities .detail-box .flex.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#activities .detail-box .flex.-column span {
  font-size: 1.25rem;
}
@media (max-width: 1023px) {
  #activities .detail-box .flex.-column {
    font-size: 1rem;
  }
}
#activities .detail-box .flex.-column ._gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
@media (max-width: 1023px) {
  #activities .detail-box .flex.-column ._gothic {
    font-size: 0.875rem;
  }
}
#activities .detail-box h4 {
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  margin-top: 0;
  padding: 0 !important;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
#activities .detail-box h4._gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1023px) {
  #activities .detail-box h4 {
    font-size: 1.25rem;
  }
}
#activities .detail-box h5 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  padding: 0;
}
@media (max-width: 1023px) {
  #activities .detail-box h5 {
    font-size: 1rem;
  }
}
#activities .detail-box p {
  padding: 0;
}
#activities .detail-box ul {
  padding: 0;
  margin: 0;
}
#activities .detail-box ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 1rem;
}
#activities .detail-box ul li:first-child {
  margin-top: 0;
}
#activities .detail-box ul li::before {
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #51A89D;
  border-radius: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
#activities .detail-box .link-a {
  margin-top: 2rem;
}
#activities .detail-box .link-a a {
  text-align: center;
  background: #C89413;
  color: #fff;
  margin-top: 2rem;
}
#activities .detail-box.-wide {
  width: 100%;
  padding: 3.125rem 6rem;
}
@media (max-width: 1023px) {
  #activities .detail-box.-wide {
    padding: 1.5rem 2rem;
  }
}
#activities .detail-box.-wide ul li {
  padding-left: 2rem;
  margin-top: 1.25rem;
}
#activities .detail-box.-wide ul li:first-child {
  margin-top: 0;
}
#activities .detail-box.-wide ul li::before {
  width: 1rem;
  height: 1rem;
  top: 0.25rem;
}
#activities .accordion {
  margin-top: 1.5rem;
  padding-bottom: 2.5rem;
}
#activities .accordion li:last-child {
  border-bottom: 1px solid #51A89D;
}
@media (max-width: 1023px) {
  #activities .accordion {
    padding: 0 !important;
  }
}
#activities .accordion ._mt0 {
  margin-top: 0;
}
#activities .accordion .accordion-title {
  margin: 0;
  position: relative;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top: none;
}
#activities .accordion .accordion-title > span {
  border-bottom: none;
  position: relative;
  border-top: 1px solid #51A89D;
  z-index: 2;
}
#activities .accordion .accordion-title::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
#activities .accordion .accordion-title::after {
  display: block;
  content: "";
  background: url(../img/arrow-ac.svg) no-repeat center/100% auto;
  width: 0.6875rem;
  height: 0.375rem;
  right: 1rem;
  position: absolute;
  top: calc(50% - 0.1875rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#activities .accordion .accordion-title.-active {
  background: radial-gradient(#F0F5F5 24%, #fff 70%);
}
#activities .accordion .accordion-title.-active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#activities .accordion .accordion-title:hover {
  cursor: pointer;
}
#activities .accordion .accordion-title:hover::before {
  opacity: 1;
}
#activities .accordion .accordion-inner {
  display: none;
  padding: 1.5rem 0 3rem;
  border-top: 1px dotted #51A89D;
}
#activities .accordion .accordion-inner h5, #activities .accordion .accordion-inner p {
  padding: 0 2.5rem;
}
@media (max-width: 1023px) {
  #activities .accordion .accordion-inner h5, #activities .accordion .accordion-inner p {
    padding: 0 1.5rem;
  }
}
#activities .link-button-block {
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #activities .link-button-block {
    padding: 0;
  }
}
#activities .link-button-block .link-button-block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
  background: #E0ECFF;
  color: #254D94;
  text-decoration: none;
  border-radius: 0.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#activities .link-button-block .link-button-block-link::after {
  display: block;
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/icon-newpage.svg) no-repeat center/100%;
}
#activities .library {
  width: 50%;
  border-radius: 0.25rem 0 0 0.25rem;
}
@media (max-width: 1023px) {
  #activities .library {
    width: 100%;
    margin-bottom: 12.5rem;
    border-radius: 0.25rem 0.25rem 0 0;
  }
}
#activities .library::before {
  right: 50%;
}
#activities .library::after {
  width: 34.375rem;
}
@media (max-width: 1023px) {
  #activities .library::after {
    width: 100%;
  }
}
#activities .local .link-list {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 4.5rem;
}
@media (max-width: 1023px) {
  #activities .local .link-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#activities .index-list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2.5rem;
  margin: 7.5rem 0 0;
  padding: 0;
}
@media (max-width: 1023px) {
  #activities .index-list {
    margin: 4rem 0 0;
    grid-gap: 1.5rem 1rem;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
#activities .index-list li {
  margin: 0;
  padding: 0;
}
#activities .index-list li a {
  display: block;
  width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #34877D;
  text-decoration: none;
  border-top: 1px solid #51A89D;
}
@media (max-width: 1023px) {
  #activities .index-list li a {
    padding-left: 0;
    padding-top: 0.75rem !important;
  }
}

#activities.-area .area-background {
  padding-top: 9.375rem;
}
@media (max-width: 1023px) {
  #activities.-area .area-background {
    padding-top: 5rem;
  }
}
#activities.-area .area-background > .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
  color: black;
}
#activities.-area .area-index-list {
  margin: 5rem 0 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#activities.-area .area-index-list > li {
  border-top: 1px solid #51A89D;
  padding: 3rem 3rem 2rem;
}
#activities.-area .area-index-list > li:last-child {
  border-bottom: 1px solid #51A89D;
}
@media (max-width: 1023px) {
  #activities.-area .area-index-list {
    margin-top: 2.5rem;
  }
}
#activities.-area .area-index-list .area-entryLink {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: black;
  text-decoration: none;
}
#activities.-area .area-index-list .area-entryLink > .thumbnail {
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.625rem 0.5rem;
  aspect-ratio: 340/216;
  overflow: hidden;
}
#activities.-area .area-index-list .area-entryLink > .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#activities.-area .area-index-list .area-entryLink > .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  margin: 1.75rem 0 0 0;
  font-size: 0.9375rem;
}
#activities.-area .area-index-list .area-entryLink > .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  color: #34877D;
  font-size: 1.125rem;
  margin: 0.5rem 0 0 0;
}
#activities.-area .area-index-list .area-listLink {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: black;
  text-decoration: none;
  margin: 1.25rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#activities.-area .area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
#activities.-area .area-list .area-entryLink {
  background: white;
  color: black;
  text-decoration: none;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.5rem 5rem 4rem 7.1875rem;
}
@media (max-width: 1023px) {
  #activities.-area .area-list .area-entryLink {
    padding: 2.5rem 1.5rem;
  }
}
#activities.-area .area-list .area-entryLink > .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 1023px) {
  #activities.-area .area-list .area-entryLink > .title {
    font-size: 1.5rem;
  }
}
#activities.-area .area-list .area-entryLink > .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.1875rem;
  margin-top: 3.5rem;
}
@media (max-width: 1023px) {
  #activities.-area .area-list .area-entryLink > .wrap {
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.875rem;
  }
}
#activities.-area .area-list .area-entryLink > .wrap > .thumbnail {
  aspect-ratio: 320/200;
  max-width: 20rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
}
#activities.-area .area-list .area-entryLink > .wrap > .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  #activities.-area .area-list .area-entryLink > .wrap > .thumbnail {
    width: 100%;
  }
}
#activities.-area .area-list .area-entryLink > .wrap > .content {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#activities.-area .area-list .area-entryLink > .wrap > .content .date {
  margin: 0;
  font-size: 0.875rem;
}
#activities.-area .area-list .area-entryLink > .wrap > .content .text {
  margin: 1rem 0 0 0;
  line-height: 2;
  letter-spacing: 0.3em;
}

#activities.-archives .archives-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
  list-style: none;
  margin: 2.625rem 0 0 0;
  padding: 0;
}
#activities.-archives .archives-list > li {
  width: calc((100% - 3.125rem) / 2);
}
@media (max-width: 1023px) {
  #activities.-archives .archives-list {
    margin-top: 1.25rem;
    gap: 2rem;
  }
  #activities.-archives .archives-list > li {
    width: 100%;
  }
}
#activities.-archives .archives-link {
  color: black;
  text-decoration: none;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
  padding: 4rem 2.5rem 2.5rem;
}
@media (max-width: 1023px) {
  #activities.-archives .archives-link {
    padding: 2rem 1.5rem 1.5rem;
  }
}
#activities.-archives .archives-link > .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  #activities.-archives .archives-link > .title {
    font-size: 1.5rem;
  }
}
#activities.-archives .archives-link > .text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 1.5rem 0 0 0;
  letter-spacing: 0.3em;
  line-height: 2;
}
#activities.-archives .archives-link > .more {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  margin: 4rem 0 0 0;
  text-align: right;
  padding-right: 2.875rem;
  font-size: 1.125rem;
  line-height: 1;
  color: #254D94;
  position: relative;
}
#activities.-archives .archives-link > .more::after {
  position: absolute;
  content: "";
  background: url(../img/link-arrow-blue.svg) no-repeat right bottom/contain;
  width: 2.375rem;
  height: 2.375rem;
  right: 0;
  bottom: 0;
}
@media (max-width: 1023px) {
  #activities.-archives .archives-link > .more {
    margin-top: 2rem;
    padding-right: 1.875rem;
  }
  #activities.-archives .archives-link > .more::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

#activities.-researchIndex .researchIndex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  margin: 3.125rem 0 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1023px) {
  #activities.-researchIndex .researchIndex-list {
    margin-top: 1.5rem;
  }
}
#activities.-researchIndex .researchIndex-list > li {
  display: block;
  background: white;
  background: radial-gradient(#F6F8FB 24%, #fff 70%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.75rem 5rem;
  color: black;
}
@media (max-width: 1023px) {
  #activities.-researchIndex .researchIndex-list > li {
    padding: 2rem 1.5rem;
  }
}
#activities.-researchIndex .researchIndex-list > li .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  margin: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  #activities.-researchIndex .researchIndex-list > li .title {
    font-size: 1.5rem;
  }
}
#activities.-researchIndex .researchIndex-list > li .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.0625rem;
  margin-top: 3.375rem;
}
@media (max-width: 1023px) {
  #activities.-researchIndex .researchIndex-list > li .wrap {
    gap: 3.75rem;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  #activities.-researchIndex .researchIndex-list > li .wrap {
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#activities.-researchIndex .researchIndex-list > li .thumbnail {
  margin-left: 2.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 20.1875rem;
}
#activities.-researchIndex .researchIndex-list > li .thumbnail img {
  width: 100%;
}
@media (max-width: 767px) {
  #activities.-researchIndex .researchIndex-list > li .thumbnail {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
#activities.-researchIndex .researchIndex-list > li .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.3em;
}
#activities.-researchIndex .researchIndex-list.-index li:nth-child(n+2) {
  display: none;
}
#activities.-researchIndex .mokuji-list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  grid-gap: 2.5rem;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  margin-top: 4.5rem;
  padding: 0;
}
@media (max-width: 1023px) {
  #activities.-researchIndex .mokuji-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-top: 4rem;
  }
}
#activities.-researchIndex .mokuji-list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 2.5rem;
  border: 1px solid #51A89D;
  border-radius: 0.25rem;
  background: #fff;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #34877D;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
#activities.-researchIndex .mokuji-list li a::after {
  display: block;
  content: "";
  width: 1.875rem;
  height: 1.25rem;
  background: url("../img/arrow-hlz-green.svg") no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.625rem);
  right: 2.5rem;
}
#activities.-researchIndex .mokuji-list li a:hover {
  opacity: 0.6;
}
#activities.-researchIndex .mokuji-list.-index li:first-child {
  display: none;
}

#activities.-yoshida .yoshida-list {
  margin: 3.125rem -8.125rem 0;
  display: -ms-grid;
  display: grid;
  grid-gap: 3.125rem;
  -ms-grid-columns: 1fr 3.125rem 1fr 3.125rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  position: relative;
  padding: 0;
}
@media (max-width: 1360px) {
  #activities.-yoshida .yoshida-list {
    margin: 3.125rem 0 0 0;
  }
}
@media (max-width: 1023px) {
  #activities.-yoshida .yoshida-list {
    margin-top: 2rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#activities.-yoshida .yoshida-list li a {
  color: #000;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
#activities.-yoshida .yoshida-list li .thumbnail {
  width: 100%;
  height: 26.25rem;
  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: 3.125rem;
  background: rgba(82, 117, 177, 0.05);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#activities.-yoshida .yoshida-list li .thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1023px) {
  #activities.-yoshida .yoshida-list li .thumbnail {
    height: 20.3125rem;
  }
}
#activities.-yoshida .yoshida-list li .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  display: inline-block;
  margin: 1.5rem 0 0 0;
}
#activities.-yoshida .yoshida-list li .title {
  margin: 1.25rem 0 0 0;
  color: #254D94;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
#activities.-yoshida .yoshida-list li .text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin: 1.25rem 0 0 0;
}
#activities.-yoshida .entry {
  padding-bottom: 6rem;
}

/**************************************************/
/* contact */
/**************************************************/
#contact .outline > p {
  margin-top: 3.5rem;
}
@media (max-width: 1023px) {
  #contact .outline > p {
    text-align: center;
    font-size: 1rem;
  }
}
#contact .outline::after {
  display: block;
  content: "";
  width: 25rem;
  height: 25rem;
  background: url(../img/ripple-gold.svg) no-repeat center/auto 100%;
  position: absolute;
  top: inherit;
  right: -7.0625rem;
  bottom: -7.5rem;
}
@media (max-width: 1023px) {
  #contact .outline::after {
    width: 12.8125rem;
    height: 18.75rem;
    right: -1.5625rem;
    bottom: -7.5rem;
    background-position: left center;
  }
}
#contact h3.border-top {
  color: #000;
  letter-spacing: 0.2em;
}
#contact h3.border-top span {
  display: inline-block;
  margin-left: 1rem;
}
@media (max-width: 1023px) {
  #contact h3.border-top span {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  #contact h3.border-top {
    text-align: center;
    font-size: 1rem;
  }
}
#contact h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin-top: 3.5rem;
  padding: 0;
  color: #835E00;
  letter-spacing: 0.2em;
}
#contact .contact-box {
  padding: 0 6.5625rem;
}
@media (max-width: 1023px) {
  #contact .contact-box {
    padding: 0 1.5rem;
  }
}
#contact .contact-box p {
  margin-top: 1rem;
  padding: 0;
}
#contact .contact-box p span {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-right: 2rem;
}
@media (max-width: 1023px) {
  #contact .contact-box p span {
    display: block;
    margin-right: 0;
  }
}
#contact .contact-box > div {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .contact-box > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1023px) {
  #contact .contact-box > div > div {
    display: block;
    gap: 0;
  }
}
#contact .contact-box > div > div h4 {
  margin: 0;
  padding-bottom: 0.25rem;
}
@media (max-width: 1023px) {
  #contact .contact-box > div > div h4 {
    margin-top: 2rem;
  }
}
#contact .contact-box > div > div p span {
  margin-right: 0;
}
@media (max-width: 1023px) {
  #contact .contact-box > div > div p {
    margin-top: 0;
    text-align: center;
  }
}
#contact .notes {
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  padding: 0 3.125rem;
}
@media (max-width: 1023px) {
  #contact .notes {
    padding: 0 1.5rem;
    text-align: left;
  }
}
#contact .notes li {
  padding-left: 1.25em;
  text-indent: -0.65em;
  line-height: 2;
  letter-spacing: 0.2em;
}
#contact .notes li::before {
  display: inline-block;
  content: "※";
}
#contact p.gothic {
  margin-top: 1rem !important;
}
#contact p.gothic span {
  display: inline-block;
  margin-right: 0.5rem;
}
@media (max-width: 1023px) {
  #contact p.gothic span {
    display: block;
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  #contact p.gothic {
    text-align: center;
  }
}

/**************************************************/
/* faq */
/**************************************************/
#faq .detail ol {
  padding-left: 3.125rem;
}
@media (max-width: 1023px) {
  #faq .detail ol {
    padding: 0 1.5rem;
  }
}
#faq .detail ol > li {
  text-indent: -0.55em;
  padding-left: 1.25em;
}
#faq .detail ol > li::before {
  display: inline-block;
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum) "."; /* カウントした数に応じて番号を表示 */
}