@charset "UTF-8";
:root {
  --vw: 1vw;
}

/* ========================================================
   # BASE
======================================================== */
html.open {
  overflow: hidden;
}

body {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  font: 400 clamp(1rem, 0.967rem + 0.14vw, 1.063rem)/1 "BIZ UDPMincho", serif;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}

.site {
  padding-top: var(--header_height);
}

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

b, strong {
  font-weight: 600;
}

/* = CLASS
-------------------------------------------------------- */
.trans500 {
  transition: all 500ms 0s ease;
}

.noSP, .onPC {
  display: none;
}

.is-content-justification-center {
  justify-content: center;
}

.en {
  font-family: "Cinzel", serif;
}

.inner {
  padding-left: clamp(1em, 2.5vw, 2em);
  padding-right: clamp(1em, 2.5vw, 2em);
}
.innerS, .innerM, .innerL, .innerLl {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.innerS {
  max-width: 980px;
}
.innerM {
  max-width: 1240px;
}
.innerL {
  max-width: 1540px;
}

@media (min-width: 640px) {
  .onSP {
    display: none !important;
  }
  .noSP {
    display: block;
  }
  img.noSP, span.noSP, strong.noSP {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .noPC {
    display: none !important;
  }
  .onPC {
    display: block;
  }
  img.onPC, span.onPC, strong.onPC {
    display: inline;
  }
}
/* ========================================================
   # HREF
======================================================== */
body .wp-block-buttons .wp-block-button__link {
  background: var(--wp--preset--color--sub);
  min-width: 18em;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 0.6em 2em;
  position: relative;
  text-decoration: none;
  transition: all 500ms 0s ease;
}
body .wp-block-buttons .wp-block-button__link::after {
  aspect-ratio: 1/1;
  background: url(./img/arrow01.svg) 50%/contain no-repeat;
  content: "";
  width: 0.6em;
  margin: auto;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
}
body .wp-block-buttons .wp-block-button__link:hover {
  transform: translateY(-0.2em);
}
body .wp-block-buttons.is-content-justification-center .wp-block-button__link:hover {
  transform: scale(1.1);
}
body .wp-block-buttons .is-style-outline .wp-block-button__link {
  background: var(--wp--preset--color--white);
  border-width: 0.1em;
  color: var(--wp--preset--color--main);
}
body .wp-block-file * + .wp-block-file__button {
  color: var(--wp--preset--color--white);
  padding: 0 2em;
  text-decoration: none;
}

.entryBody p a, .is-root-container p a {
  color: var(--wp--preset--color--main);
  text-decoration: underline;
}

/* ========================================================
   # HEAD
======================================================== */
/* = SITE
-------------------------------------------------------- */
.siteHead {
  background: var(--wp--preset--color--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.siteHead .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1em;
}
.siteHead .body .logo img {
  width: 265px;
  max-width: 60vw;
  transform-origin: top left;
  transition: all 500ms 0s ease;
}
.siteHead .body .hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
}
.siteHead .body .hamburger .lines {
  display: block;
  height: 21px;
  width: 26px;
}
.siteHead .body .hamburger .lines .line {
  background: var(--wp--preset--color--main);
  width: 100%;
  height: 3px;
  left: 0;
}
.siteHead .body .hamburger .lines .line:first-child {
  top: 0;
}
.siteHead .body .hamburger .lines .line:nth-child(2) {
  top: 9px;
}
.siteHead .body .hamburger .lines .line:last-child {
  bottom: 0;
}
.open .siteHead .body .hamburger .lines .line:first-child {
  transform: translateY(9px) rotate(45deg);
}
.open .siteHead .body .hamburger .lines .line:nth-child(2) {
  opacity: 0;
}
.open .siteHead .body .hamburger .lines .line:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
.siteHead.fixed .body {
  padding: 0.5em;
}
.siteHead.fixed .body .logo img {
  width: 200px;
}

/* = ENTRY(PAGE, SINGLE), ARCHIVE(PAGE)
-------------------------------------------------------- */
.pageHead {
  background-color: #fafafa;
  background-size: cover;
  background-position: center;
  display: none;
  font-weight: 500;
  padding: clamp(4em, 12vw, 7em) 1em;
  position: relative;
}
.pageHead.hasThumb {
  padding-bottom: clamp(4em, 12vw, 7em);
}
.pageHead.hasThumb::after {
  background-image: linear-gradient(-45deg, #fff 25%, #ccc 25%, #ccc 50%, #fff 50%, #fff 75%, #ccc 75%, #ccc);
  background-size: 4px 4px;
  backdrop-filter: blur(2px);
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pageHead.hasThumb .postThumb {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pageHead.hasThumb .postThumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageHead.hasThumb .pageTtl {
  color: var(--wp--preset--color--white);
  text-shadow: 0 0 0.5em var(--wp--preset--color--black);
}
.pageTtl.is-layout-flex {
  color: var(--wp--preset--color--main);
  gap: 0.3em;
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 3em 0 2em;
}
.pageTtl.is-layout-flex .en {
  font-size: clamp(32px, 6vw, 51px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
.pageTtl.is-layout-flex .ja {
  letter-spacing: 0.2em;
}
.page-subTitle {
  font-size: clamp(0.9em, 3vw, 1em);
  font-weight: 600;
  margin-top: clamp(1em, 3vw, 1.5em);
  position: relative;
  z-index: 1;
}
.page-subTitle p::before {
  content: "［ ";
}
.page-subTitle p::after {
  content: " ］";
}

.entryHead {
  font-weight: 700;
  padding: clamp(2em, 8vw, 6em) 1em clamp(0em, 2vw, 2em);
  position: relative;
}
.entryHead .body {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.entryHead .body .ttl {
  color: var(--wp--preset--color--main);
  font-size: clamp(1.6em, 4vw, 2em);
}
.entryHead .body .info {
  gap: 1em;
}
.entryHead .body .info .term {
  gap: 0.6em;
  margin-top: 0.1em;
}
.entryHead .body .info .term a {
  border: 1px solid;
  border-radius: 2em;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 1em 0.05em;
  opacity: 0.6;
}

/* ========================================================
   # NAVI
======================================================== */
.gNav {
  background: var(--wp--preset--color--white);
  border-top: 3px solid var(--wp--preset--color--main);
  color: var(--wp--preset--color--main);
  display: none;
  font-weight: 700;
  overflow: auto;
  width: 100%;
  height: calc(100dvh - var(--header_height));
  position: fixed;
  left: 0;
  top: var(--header_height);
  z-index: 99;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gNav::-webkit-scrollbar {
  display: none;
}
.gNav ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.gNav ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex: 1;
  position: relative;
}
.gNav ul li .btn {
  aspect-ratio: 1/1;
  width: 2em;
  position: absolute;
  right: clamp(1em, 4vw, 2em);
  top: 1em;
}
.gNav ul li .btn::before, .gNav ul li .btn::after {
  aspect-ratio: 1/1;
  border-right: 2px solid #aaa;
  border-top: 2px solid #aaa;
  content: "";
  width: 0.5em;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0.2em;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}
.gNav ul li a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  height: clamp(4em, 6vw, 4.5em);
  padding: 0 clamp(1em, 4vw, 2em);
  transition: all 300ms 0s ease;
}
.gNav ul li > a:hover, .gNav ul li.current-menu-item > a, .gNav ul li.current-menu-ancestor > a, .gNav ul li.current_page_parent > a {
  color: inherit;
}
.gNav ul li.noLink > a {
  pointer-events: none;
}
.gNav ul li.noHead {
  display: none;
}
@media (min-width: 1024px) {
  .gNav {
    border: none;
    display: block !important;
    height: auto;
    overflow: visible;
    position: relative;
    top: 0;
  }
  .gNav ul {
    flex-direction: row;
  }
  .gNav ul li {
    border: none;
  }
  .gNav ul li a {
    justify-content: center;
    height: 2.5em;
    margin: 0 !important;
  }
  .gNav ul li a::before {
    aspect-ratio: 1/1;
    background: var(--wp--preset--color--main);
    content: "";
    width: 0.88em;
    -webkit-mask-image: url(./img/arrow02.svg);
            mask-image: url(./img/arrow02.svg);
    -webkit-mask-position: 50%;
            mask-position: 50%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .gNav ul li .btn {
    display: none !important;
  }
  .gNav.simple {
    background: transparent;
    color: var(--wp--preset--color--main);
    width: auto;
  }
  .gNav.simple ul li {
    flex: auto;
  }
}
/* ========================================================
   # FOOT
======================================================== */
.siteFoot :where(*) {
  margin: 0;
}
.siteFoot .menu {
  border-bottom: 1px solid;
  color: var(--wp--preset--color--main);
  display: flex;
  gap: clamp(2em, 5vw, 3em);
  justify-content: center;
  padding: 2em 0;
}
.siteFoot .menu a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}
.siteFoot .menu a::before {
  aspect-ratio: 1/1;
  background: var(--wp--preset--color--main);
  content: "";
  width: 0.88em;
  -webkit-mask-image: url(./img/arrow02.svg);
          mask-image: url(./img/arrow02.svg);
  -webkit-mask-position: 50%;
          mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.siteFoot .body .logo {
  max-width: 70vw;
}
.siteFoot .body .add brbr:nth-of-type(1), .siteFoot .body .add br br:nth-of-type(3) {
  display: none;
}
.siteFoot .copy {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: clamp(4em, 13vw, 5em);
}
/* = GO TO TOP
-------------------------------------------------------- */
.gotoTop {
  aspect-ratio: 1/1;
  background: var(--wp--preset--color--main);
  display: flex;
  justify-content: center;
  width: clamp(3em, 6vw, 5em);
  position: fixed;
  right: clamp(1em, 3vw, 2em);
  bottom: clamp(1em, 3vw, 2em);
  z-index: 9;
}
.gotoTop svg {
  fill: var(--wp--preset--color--white);
  width: 40%;
}
.gotoTop:hover {
  transform: translateY(-0.5em);
}
/* = PAGE NAVI
-------------------------------------------------------- */
.pageNav.wp-block-query-pagination {
  gap: 1em;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
}
.pageNav.wp-block-query-pagination a {
  text-decoration: none;
  transition: all 500ms 0s ease;
}
.pageNav.wp-block-query-pagination a:hover {
  opacity: 1;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-next, .pageNav.wp-block-query-pagination .wp-block-query-pagination-previous {
  opacity: 0.5;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  line-height: 1;
  padding: 0 1em;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  font-weight: 700;
}

/* = SINGLE NAVI
-------------------------------------------------------- */
.singleNav {
  padding-bottom: clamp(3em, 10vw, 5em);
}
.singleNav .body {
  gap: 0;
}
.singleNav .body li {
  flex: 1;
  margin: 0 -1px;
}
.singleNav .body li a {
  background: var(--wp--preset--color--white);
  border: 1px solid;
  display: block;
  font-size: 0.8em;
  padding: clamp(1em, 3vw, 1.5em) 0;
  text-align: center;
}
.singleNav .body li a:hover {
  background: var(--wp--preset--color--main);
  border-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
}

/* ========================================================
   # CONTENTS
======================================================== */
.entryBody {
  line-height: 2;
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.entryBody > :where(:not(:first-child)) {
  margin-top: 2em;
}
.entryBody > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)) {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--content-size);
}
.entryBody .alignfull {
  margin-left: -1.5em;
  margin-right: -1.5em;
}
.entryBody .alignfull:not(hr) {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.entryBody .alignwide {
  width: var(--wp--style--global--wide-size);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.entryBody a {
  color: var(--wp--preset--color--main);
  text-decoration: underline;
}
.entryBody .hasAnchor {
  margin-top: calc((var(--header_height) - 2em) * -1);
  padding-top: var(--header_height);
}
.entryBody .linkWrap {
  position: relative;
}
.entryBody .linkWrap a {
  text-decoration: none;
}
.entryBody .linkWrap a::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.entryBody .scrollTbl {
  padding-top: 10px;
  white-space: nowrap;
}
.entryBody .scrollTbl::before {
  background: url(./img/ico_scroll.png) 0/cover;
  content: "";
  height: 20px;
  width: 72px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.entryBody .scrollTbl figure {
  padding-bottom: 0.5em;
}
@media (min-width: 640px) {
  .entryBody .scrollTbl {
    padding-top: 0;
    white-space: initial;
  }
  .entryBody .scrollTbl::before {
    display: none;
  }
  .entryBody .scrollTbl figure table {
    width: 100%;
  }
}
.entryBody .wp-block-media-text {
  gap: 1em clamp(1.5em, 4vw, 2.5em);
}
.entryBody .wp-block-media-text > .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}

body .has-inline-color, body .sme-bg-color {
  margin-left: 0.15em;
  margin-right: 0.15em;
  padding-left: 0.2em;
  padding-right: 0.2em;
  padding-bottom: 0.1em;
}
body .wp-block-accordion {
  display: flex;
  flex-direction: column;
  gap: clamp(1em, 3vw, 1.5em);
}
body .wp-block-accordion-item {
  margin: 0 !important;
}
body .wp-block-accordion-heading {
  background: #fafafa;
  border: none;
  display: flex;
  gap: 0.5em;
  font-size: inherit;
  line-height: 1.4;
  padding: 0 clamp(0.5em, 2vw, 1em) 0 1em;
}
body .wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}
body .wp-block-accordion-panel {
  display: flex;
  gap: 0.5em;
  line-height: 1.8;
  margin: 0;
  padding: 0.5em 0.5em 0.5em 1em;
}
body .wp-block-accordion.is-style-faq .wp-block-accordion-heading::before {
  content: "Q";
  color: var(--wp--preset--color--red);
  font-size: 1.2em;
  transform: translateY(1em);
}
body .wp-block-accordion.is-style-faq .wp-block-accordion-panel::before {
  content: "A";
  color: var(--wp--preset--color--blue);
  font-size: 1.2em;
  font-weight: 500;
  transform: translateY(-0.15em);
}
body .wp-block-separator {
  background: #ccc;
  border: none;
  height: 1px;
}
body .wp-block-separator.is-style-hrClear {
  width: 10em;
}
body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  padding: 0.5em;
}
body kbd {
  background-color: #eee;
  border: 1px solid #b4b4b4;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
  color: #333;
  color: #333;
  display: inline-block;
  font-size: 0.85em;
  line-height: 1;
  margin-left: 0.3em;
  margin-right: 0.3em;
  padding: 0.2em;
  white-space: nowrap;
  transform: translateY(-0.15em);
}
body .wp-block-list {
  padding-left: 1.5em;
}
body ol.wp-block-list {
  list-style: decimal;
}
body ul.wp-block-list {
  list-style: disc;
}
body pre {
  background: #fafafa;
  line-height: 1.6;
  overflow: auto;
  padding: 1.6em;
}

/* ========================================================
   # HEADING
======================================================== */
body h2 {
  border-bottom: 1px solid;
  color: var(--wp--preset--color--main);
  font-size: clamp(20px, 5vw, 25px);
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  position: relative;
}
body h2::after {
  border-bottom: 3px solid;
  content: "";
  height: 0;
  width: 6em;
  position: absolute;
  left: 0;
  bottom: -2px;
}
body h3 {
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  font-size: 1.33em;
  line-height: 1.3em;
  padding: 0.3em 0.6em;
}
body h3 + * {
  margin-top: clamp(0.5em, 2vw, 1em);
}
body h3:has(strong)::before {
  border-top: 1px solid;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
body h3:has(strong) strong {
  background: var(--wp--preset--color--white);
  padding-right: 0.5em;
  position: relative;
}
body h4 {
  color: var(--wp--preset--color--main);
  font-size: 1.3em;
  font-weight: 700;
  margin-top: clamp(2em, 6vw, 2.5em);
  position: relative;
}
body h4 + * {
  margin-top: clamp(0.5em, 2vw, 1em);
}
body h4:has(strong)::before {
  border-top: 1px solid;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
body h4:has(strong) strong {
  background: var(--wp--preset--color--white);
  padding-right: 0.5em;
  position: relative;
}
body h5 {
  border: 0.08em solid;
  font-size: 1.2em;
  font-weight: 500;
  margin-top: clamp(2em, 6vw, 2.5em);
  padding: 0.3em 0.8em;
}
body h5.has-text-align-center {
  padding: 0.1em 2em;
  width: -moz-fit-content;
  width: fit-content;
}
body h5 + * {
  margin-top: 1em;
}
body h6 {
  border-left: 0.2em solid;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1;
  margin-top: clamp(1.5em, 6vw, 2em);
  padding: 0 0 0.1em 0.5em;
}
body h6.has-text-align-center {
  border: none;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  padding: 0;
}
body h6.has-text-align-center::before {
  content: "＼";
}
body h6.has-text-align-center::after {
  content: "／";
}
body h6 + * {
  margin-top: 0.5em;
}
/* ========================================================
   # HOME
======================================================== */
.home .entryBody {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.homeItem {
  padding-top: clamp(2em, 8vw, 4em);
  padding-bottom: clamp(2em, 8vw, 4em);
}
.homeMv {
  min-height: calc(100dvh - var(--header_height));
  overflow: hidden;
}
.homeMv .wp-block-cover__inner-container {
  position: static;
}
.homeMv .body {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.homeMv .btn {
  position: absolute;
  right: -1px;
  top: -1px;
}
.homeMv .btn a {
  background: #ea5b5c;
  border: 1px solid;
  border-bottom-left-radius: 1em;
  color: var(--wp--preset--color--white);
  display: block;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 700;
  padding: 0.3em 1.5em;
  text-decoration: none;
}
@media (min-width: 640px) {
  .homeMv .body .logo img {
    height: 50vh;
    width: auto;
  }
  .homeMv .btn a {
    width: 66px;
    padding: 1.5em 1em;
    writing-mode: vertical-rl;
  }
}
.homeIntro .catch {
  font-size: clamp(17px, 4vw, 24px);
}
.homeIntro .nav {
  gap: clamp(0.5em, 3vw, 1.2em);
}
.homeIntro .nav .item {
  box-shadow: 5px 5px 1px 0 rgba(0, 0, 0, 0.15);
  align-items: stretch;
  gap: 0.5em;
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 700;
  height: 100%;
  width: calc(50% - 0.69em);
  line-height: 1.4;
  outline: 1px solid var(--wp--preset--color--main);
  outline-offset: -1px;
  overflow: hidden;
  padding: 1.2em clamp(1em, 3vw, 1.5em);
  position: relative;
}
.homeIntro .nav .item::before {
  aspect-ratio: 1/1;
  background: var(--wp--preset--color--white);
  border: 1px solid;
  content: "";
  height: 1em;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.homeIntro .nav .item .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 4vw, 24px);
  height: 2.2em;
  width: 100%;
  letter-spacing: 0;
  line-height: 1;
}
.homeIntro .nav .item .ttl .sme-font-size {
  transform: scale(0.8, 1);
}
.homeIntro .nav .item .txt {
  border-top: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4em;
}
@media (min-width: 640px) {
  .homeIntro .nav .item {
    flex: 1;
    width: calc(33.33% - 0.98em);
  }
  .homeIntro .nav .item .ttl .sme-font-size {
    transform: scale(0.7, 1);
  }
}
@media (min-width: 1024px) {
  .homeIntro .nav .item {
    width: calc(20% - 1.18em);
  }
  .homeIntro .nav .item .ttl .sme-font-size {
    transform: scale(0.65, 1);
  }
}
.homeNews .head {
  font-size: clamp(16px, 2.6vw, 20px);
  margin-bottom: clamp(1.5em, 5vw, 2em);
}
.homeNews .head .en {
  font-size: clamp(32px, 6vw, 51px);
}
.homeNews .body .list li {
  margin: 0;
}
.homeNews .body .list li .item {
  gap: 0;
  width: 100%;
  line-height: 1.6;
}
.homeNews .body .list li .item .ttl {
  border: none;
  font-size: inherit;
  margin: 0;
  padding: 0;
  position: static;
}
.homeNews .body .list li .item .ttl::after {
  display: none;
}
.homeNews .body .list li:not(:first-child) .item {
  padding-top: clamp(0.8em, 3vw, 1.5em);
}
.homeNews .body .list li:not(:last-child) .item {
  border-bottom: 1px solid;
  padding-bottom: clamp(0.8em, 3vw, 1.5em);
}
@media (min-width: 640px) {
  .homeNews .body .list li {
    margin: 0;
  }
  .homeNews .body .list li .item {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .homeNews .body .list li .item .date {
    width: 10em;
  }
  .homeNews .body .list li .item .ttl {
    width: calc(100% - 10em);
  }
  .homeNews .body .list li .item .ttl a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .homeNews .body .list li:not(:last-child) .item::after {
    background: var(--wp--preset--color--white);
    content: "";
    height: 3px;
    width: 10em;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
  }
}
.homeMessage {
  margin-top: 0 !important;
}
.homeMessage .head {
  font-size: clamp(16px, 2.6vw, 20px);
}
.homeMessage .head .en {
  font-size: clamp(32px, 6vw, 51px);
}
.homeMessage .head .en span {
  font-size: 1.8em;
  font-style: italic;
  font-weight: 500;
}
.homeMessage .body {
  margin-top: 2em;
}
.homeMessage ul {
  margin-bottom: clamp(1em, 3vw, 2em);
}

/* ========================================================
   # NEWS, BLOG
======================================================== */
.entryList li {
  margin: 0;
}
.entryList li .item {
  gap: 1em;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.4;
  position: relative;
}
.entryList li .item .head {
  gap: 0;
}
.entryList li .item .head .term {
  display: flex;
  gap: 0.5em;
}
.entryList li .item .head .term a {
  font-size: 0.9em;
  margin: 0;
  transition: all 500ms 0s ease;
}
.entryList li .item .head .term span {
  display: none;
}
.entryList li .item .body {
  gap: 1em;
  width: 100%;
}
.entryList li .item .body .ttl {
  font-size: clamp(16px, 1.6vw, 18px);
}
.entryList li .item .body .ttl a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.entryList li .item .body .txt {
  font-size: 1.14em;
  opacity: 0.5;
}
.entryList.simple li {
  padding: clamp(1em, 3vw, 2em) 0;
}
.entryList.simple li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.entryList.simple li .item .head .date {
  font-weight: 500;
  width: clamp(7em, 20vw, 10em);
  letter-spacing: 0.04em;
}
.entryList.simple li .item .head .term a {
  border: 1px solid;
  border-radius: 3em;
  padding: 0 1em 0.1em;
  opacity: 0.5;
}
.entryList.simple li .item .head .term a:hover {
  opacity: 1;
}
.entryList.simple li .item .head .term a.gallery {
  color: var(--wp--preset--color--red);
}
.entryList.simple li .item .head .term a.news {
  color: var(--wp--preset--color--blue);
}
.entryList.simple li .item .head .term a.etc {
  color: var(--wp--preset--color--green);
}
.entryList.simple li .item .body {
  align-items: flex-start;
  flex-direction: column;
  padding-right: clamp(2em, 4vw, 4em);
  position: relative;
}
.entryList.simple li .item .body::after {
  border-top: 3px solid;
  border-right: 3px solid;
  color: #ccc;
  content: "";
  margin: auto;
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
  transform-origin: 40% 30%;
  transition: all 500ms 0s ease;
}
.entryList.simple li .item .body:hover::after {
  color: var(--wp--preset--color--black);
  right: 0;
}
.entryList.hasThumb li .item .head .thumb {
  aspect-ratio: 1/1;
  border-radius: 1em;
  overflow: hidden;
}
.entryList.hasThumb li .item .head .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
  transition: all 1000ms 0s ease;
}
.entryList.hasThumb li .item .head .term {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.entryList.hasThumb li .item .head .term a {
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
  padding: 0.1em 1em 0.2em;
}
.entryList.hasThumb li .item .head .term a:not(:first-child) {
  display: none;
}
.entryList.hasThumb li .item .head .term a.gallery {
  background: var(--wp--preset--color--red);
}
.entryList.hasThumb li .item .head .term a.news {
  background: var(--wp--preset--color--blue);
}
.entryList.hasThumb li .item .head .term a.etc {
  background: var(--wp--preset--color--green);
}
.entryList.hasThumb li .item .body {
  gap: clamp(0.5em, 1vw, 1em);
}
.entryList.hasThumb li .item:hover .head .thumb img {
  transform: scale(1.1);
}
.entryList.slick .list {
  display: block;
  margin-left: -1em;
  width: calc(100% + 2em);
  max-width: none;
}
.entryList.slick .list li {
  padding: 0 1em;
}
.entryList.slick .slick-slide {
  height: auto;
}
.entryList.slick .slick-arrow {
  background: #fafafa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 3em;
  width: 3em;
  padding: 0;
  position: absolute;
  top: 38%;
  z-index: 1;
}
.entryList.slick .slickNext {
  right: -0.7em;
}
.entryList.slick .slickPrev {
  left: -0.7em;
}
@media (min-width: 640px) {
  .entryList.simple li .item .body {
    padding-left: clamp(7em, 20vw, 10em);
  }
  .entryList.simple li .item .body::after {
    right: 1em;
  }
}
.single .entryBody {
  padding-bottom: 3em;
}

/* ========================================================
   # MESSAGE
======================================================== */
/* = LIST
-------------------------------------------------------- */
.archive .entryBody {
  background: url(./img/home_message_bg.webp) 0 bottom/100% no-repeat;
  padding-bottom: clamp(3em, 10vw, 8em);
}

.messageList {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1000px;
}
.messageList .item {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--main);
  box-shadow: 5px 5px 1px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.3em;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0;
  line-height: 1.2;
  padding: clamp(1em, 2vw, 1.5em) clamp(1em, 2vw, 2em);
  text-align: center;
}
.messageList .item a {
  color: inherit;
}
.messageList .item .thumb {
  aspect-ratio: 9/10;
  min-width: 1em;
  overflow: hidden;
}
.messageList .item .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 200px;
}
.messageList .item .name {
  font-size: 1.4em;
  font-weight: 700;
  padding: 0.1em 0;
}
.messageList .item .term {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  font-family: sans-serif;
  font-size: 12px;
  margin-top: 0.5em;
  position: relative;
  z-index: 1;
}
.messageList .item .term a {
  background: var(--wp--preset--color--main);
  border-radius: 3em;
  color: var(--wp--preset--color--white);
  width: 8em;
  padding: 0.2em 0;
}
.messageList .item .term a::after {
  display: none;
}
@media (min-width: 640px) {
  .messageList {
    grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
  }
}
@media (min-width: 1024px) {
  .messageList {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
.termList {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0.8em;
  justify-content: center;
  font-family: sans-serif;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 700;
  max-width: 1000px;
  margin: auto;
  padding: 1em 0;
}
.termList a {
  background: var(--wp--preset--color--main);
  border-radius: 3em;
  color: var(--wp--preset--color--white);
  text-decoration: none;
  width: 9em;
  text-align: center;
}
.termList a.current {
  background: var(--wp--preset--color--sub);
}

/* = SINGLE
-------------------------------------------------------- */
.message .homeMessage .body, .message .homeMessage .termList {
  display: none;
}
.message .entryHead {
  padding: clamp(1em, 3vw, 2em) 0;
}
.message .entryHead .ttl {
  display: none;
}
.messageWrap {
  display: grid;
  gap: 1em 2em;
}
.messageWrap .thumb {
  aspect-ratio: 9/10;
  width: 100%;
  max-width: 50vw;
  margin: 0 auto;
  overflow: hidden;
}
.messageWrap .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.messageWrap .body > *:not(:first-child) {
  margin-top: 1em;
}
@media (min-width: 640px) {
  .messageWrap {
    grid-template-columns: 1fr 200px;
  }
  .messageWrap .thumb {
    order: 1;
  }
}
.messageFoot {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1.4;
}
.messageFoot .name {
  font-size: 1.4em;
  font-weight: 700;
}

/* ========================================================
   # GREETINGS
======================================================== */
.greetings {
  padding-bottom: clamp(3em, 10vw, 8em);
}
.greetings .list .item.is-layout-flex {
  display: grid;
  align-items: start;
  gap: 1em 0;
  justify-items: center;
}
.greetings .list .item.is-layout-flex .body {
  align-items: stretch;
  gap: 0.5em;
}
.greetings .list .item.is-layout-flex .body .ttl {
  border-bottom: 1px solid;
  font-size: clamp(20px, 5vw, 25px);
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  position: relative;
}
.greetings .list .item.is-layout-flex .body .ttl::after {
  border-bottom: 3px solid;
  content: "";
  height: 0;
  width: 6em;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.greetings .list .item.is-layout-flex .body .name {
  font-size: 1.2em;
}
@media (min-width: 640px) {
  .greetings .list .item {
    grid-template-columns: 1fr 172px;
  }
  .greetings .list .item .body {
    order: -1;
  }
  .greetings .list .item .body .txt {
    padding-right: 2em;
  }
}
/* ========================================================
   # HISTORY
======================================================== */
.hisItem {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hisItem .pageTtl + p {
  margin-bottom: clamp(1em, 4vw, 3em);
}
.hisItem .ttl {
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
  font-size: clamp(20px, 2.8vw, 33px);
  width: 100%;
}
.hisItem .ttl span {
  border-left: 1px solid;
  border-right: 1px solid;
  width: 12.8em;
}
.hisItem .head {
  width: 980px;
  max-width: 100%;
  padding: 1em 1em 2em;
}
.hisItem .head .item {
  align-items: center;
  gap: 0;
  font-weight: 700;
  line-height: 1.6;
}
.hisItem .head .item::after {
  color: var(--wp--preset--color--main);
  content: "▼";
}
.hisItem .head .item .era {
  font-family: sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0;
}
.hisItem .head .item .txt {
  font-size: clamp(15px, 2.6vw, 17px);
  order: 1;
}
.hisItem .body {
  margin-top: clamp(1.5em, 4vw, 3em);
  padding-bottom: 2em;
  position: relative;
}
.hisItem .body::before {
  background: linear-gradient(180deg, rgb(40, 48, 129) 0%, rgb(40, 48, 129) 90%, rgba(40, 48, 129, 0) 100%);
  content: "";
  width: 1px;
  margin: auto;
  position: absolute;
  left: 4em;
  top: 0;
  bottom: 0;
}
.hisItem .body .item {
  gap: clamp(1.5em, 4.5vw, 2.5em);
  width: 100%;
  z-index: 1;
}
.hisItem .body .item .year {
  font-size: clamp(30px, 5vw, 44px);
  padding: 0.2em clamp(0.6em, 4vw, 1em);
}
.hisItem .body .item .year .ja {
  font-size: clamp(12px, 3vw, 16px);
}
.hisItem .body .item .txt {
  font-family: sans-serif;
  font-size: clamp(13px, 1.9vw, 15px);
  font-weight: 700;
  position: relative;
}
.hisItem .body .item .txt::before {
  content: "▶";
  position: absolute;
  left: -1.3em;
  top: 0;
}
.hisItem.fut {
  padding-bottom: clamp(3em, 10vw, 8em);
}
@media (min-width: 640px) {
  .hisItem {
    padding-bottom: 2em;
  }
  .hisItem .head {
    align-items: center !important;
  }
  .hisItem .head .item {
    display: grid;
  }
  .hisItem .head .item::after {
    content: "▶▶▶";
  }
  .hisItem .body {
    padding-bottom: clamp(6em, 13vw, 9em);
  }
  .hisItem .body::before {
    left: 0;
    right: 0;
  }
  .hisItem .body .item {
    display: grid;
    grid-template-columns: 1fr 11em 1fr;
    height: 8em;
  }
  .hisItem .body .item::before {
    content: "";
  }
  .hisItem .body .item:nth-child(odd) .txt::before {
    transform: rotate(180deg);
  }
  .hisItem .body .item:nth-child(even)::before {
    order: 1;
  }
  .hisItem .body .item:nth-child(even) .txt {
    align-items: flex-end;
    order: -1;
  }
  .hisItem .body .item:nth-child(even) .txt::before {
    left: auto;
    right: -1.3em;
  }
  .hisItem.fdn .head .item {
    grid-template-columns: clamp(12em, 26vw, 18em) 4em 1fr;
  }
  .hisItem.growth .head .item {
    grid-template-columns: clamp(14em, 29vw, 20em) 4em 1fr;
  }
  .hisItem.evo .head .item {
    grid-template-columns: clamp(7em, 15vw, 10em) 4em 1fr;
  }
  .hisItem.fut .head .item {
    grid-template-columns: clamp(11.5em, 24vw, 16.5em) 4em 1fr;
  }
}
/* ========================================================
   # PROJECT
======================================================== */
.project {
  padding-bottom: clamp(3em, 10vw, 8em);
}
.project .wp-block-cover__image-background {
  -o-object-fit: contain;
     object-fit: contain;
}
.project .body {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.project .body .item {
  gap: clamp(1em, 3vw, 2em);
  margin: 0 !important;
}
.project .body .item .head {
  border-left: clamp(0.3em, 1vw, 0.5em) solid var(--wp--preset--color--sub);
  align-items: start;
  flex-direction: column;
  gap: 0.5em 2em;
  line-height: 1.8;
  padding-left: clamp(0.5em, 3vw, 1em);
}
.project .body .item .head .ttl {
  gap: 0.3em;
  font-size: 20px;
  line-height: 1.4;
}
.project .body .item .head .ttl strong {
  font-size: clamp(32px, 6vw, 55px);
  line-height: 1.2;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .project .body .item .head {
    flex-direction: row;
  }
}
.project div#n2-ss-2 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple {
  background: transparent;
  padding: 5px 0 0;
}
.project div#n2-ss-2 .nextend-thumbnail-scroller {
  gap: 5px;
}
.project div#n2-ss-2 .n2-style-8ad5048b81c3c254e5a4ea951ba18f46-dot {
  margin: 0;
  opacity: 1;
}

/* ========================================================
   # DONATIONS
======================================================== */
.donationsHead {
  font-size: clamp(24px, 4vw, 33px);
  padding: clamp(1em, 6vw, 2em) 0 clamp(0.5em, 3vw, 1em);
}
@media (min-width: 1024px) {
  .donationsHead {
    margin-bottom: clamp(1em, 3vw, 2em);
  }
}
.donationsBody {
  font-size: clamp(12px, 2vw, 16px);
  padding-bottom: clamp(3em, 10vw, 8em);
}
.donationsBody > * + * {
  margin-top: 1em !important;
}
.donationsBody .num01 {
  counter-increment: num01;
  display: grid;
  grid-template-columns: 1.5em 1fr;
}
.donationsBody .num01::before {
  content: counter(num01) "．";
}
.donationsBody .num02 {
  counter-increment: num02;
  padding-left: 2em;
  position: relative;
}
.donationsBody .num02::before {
  content: "(" counter(num02) ")";
  position: absolute;
  left: 0;
  top: -0.05em;
}
.donationsBody .num03 {
  display: grid;
  grid-template-columns: 1.5em 1fr;
}
.donationsBody .add.is-layout-flex {
  display: grid;
}
.donationsBody .add.is-layout-flex > * {
  align-self: start;
}
@media (min-width: 640px) {
  .donationsBody .add.is-layout-flex {
    grid-template-columns: 4.5em 1fr;
  }
  .donationsBody .add.is-layout-flex br:nth-of-type(1), .donationsBody .add.is-layout-flex br:nth-of-type(3) {
    display: none;
  }
}/*# sourceMappingURL=custom.css.map */