/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-5: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s1-5: calc(var(--s1) * 1.5);
  --s2: calc(var(--s1) * 2);
  --s2-5: calc(var(--s1) * 2.5);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
  --color01: #333333;
  --color02: #ffffff;
  --color03: #3F8E7E;
  --color04: #52C18F;
  --color05: #F4F7F9;
  --color06: #999999;
  --color07: #DDDDDD;
}

@media screen and (max-width: 1148px) {
  :root {
    font-size: 0.8710801394vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #F4F7F9;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul, ol, dl, p, img, form, dt, dd, figure {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

a {
  color: #333333;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active {
  color: #333333;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: #333333;
    text-decoration: none;
  }
}
p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
/*
---------------------------------------------

    layout center

*/
.l-center-wide {
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.l-center {
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.l-center-narrow {
  max-width: 102rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

/*
---------------------------------------------

    layout stack

*/
.l-stack-01,
.l-stack-02 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.l-stack-01 > *,
.l-stack-02 > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.l-stack-01 {
  gap: var(--s6);
}

.l-stack-02 {
  gap: var(--s3);
}

/*
---------------------------------------------

    layout cluster

*/
.l-cluster-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/*
---------------------------------------------

    layout grid

*/
.l-grid {
  --minimum: 50%;
  display: grid;
  grid-gap: 0;
}

.l-grid-four {
  --minimum: calc((100% - var(--s3) * 3) / 4);
  display: grid;
  grid-gap: var(--s3);
}

@supports (width: min(var(--minimum), 100%)) {
  .l-grid,
  .l-grid-four {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minimum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout column

*/
.l-column-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s12);
}
.l-column-01__side {
  width: 25.6rem;
}
.l-column-01__main {
  flex: 1;
}

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-02__side {
  width: inherit;
}
.l-column-02__main {
  flex: 1;
}

.l-column-03 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s8);
}
.l-column-03__side {
  width: 24rem;
}
.l-column-03__main {
  flex: 1;
}

/*
---------------------------------------------

    layout grid areas

*/
.l-grid-areas-01 {
  display: grid;
  grid-template-areas: "title content" "btn content";
  grid-template-columns: 20rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s8) var(--s10);
}
.l-grid-areas-01__cell-01 {
  grid-area: title;
}
.l-grid-areas-01__cell-02 {
  grid-area: content;
}
.l-grid-areas-01__cell-03 {
  grid-area: btn;
}

/*
---------------------------------------------

    layout page

*/
.l-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.l-page__main {
  flex: 1;
}
.l-page__footer {
  margin-top: auto;
}

/*
---------------------------------------------

    header

*/
.header-area {
  width: 100%;
  display: flex;
  align-items: center;
  padding: var(--s4) var(--s3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-title {
  font-size: 2rem;
  font-weight: 600;
}
.header-title__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .header-title__link:hover {
    color: var(--color03);
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  display: none;
}

.gnavi-mask {
  display: none;
}

.gnavi-area {
  position: fixed;
  top: var(--s3);
  right: var(--s3);
}

.gnavi-btn-01-wrapper {
  padding-left: var(--s5);
  background: var(--color02);
  border-radius: 10rem;
  box-shadow: 0 0 0.2rem #DDDDDD;
  display: flex;
  gap: 0 var(--s5);
  overflow: hidden;
}

.gnavi-btn-01 {
  font-weight: 600;
  line-height: 1.6;
}
.gnavi-btn-01__link {
  padding: var(--s1) 0;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.gnavi-btn-01--em .gnavi-btn-01__link {
  padding: var(--s1) var(--s2-5);
  color: var(--color02);
}
.gnavi-btn-01--em {
  background: var(--color03);
  border-radius: 10rem;
  overflow: hidden;
}

@media (hover: hover) {
  .gnavi-btn-01__link:hover {
    color: var(--color03);
  }
  .gnavi-btn-01--em .gnavi-btn-01__link:hover {
    background-color: var(--color04);
    color: var(--color02);
  }
}
/*
---------------------------------------------

    footer

*/
.footer-area {
  padding: var(--s7) var(--s2-5);
  color: var(--color02);
  position: relative;
  z-index: 1;
}
.footer-area::after {
  content: "";
  width: calc(100% - var(--s5));
  height: calc(100% - var(--s5));
  background: var(--color03);
  border-radius: var(--s2);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.footer-title-01 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-address-01 {
  line-height: 2;
}

.footer-summary-01 {
  line-height: 2;
}
.footer-summary-01__row {
  display: flex;
}
.footer-summary-01__label {
  width: 3.5em;
}
.footer-summary-01__note {
  font-size: 1.4rem;
}
.footer-summary-01__link {
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-summary-01__link:hover {
    color: var(--color02);
    text-decoration: underline;
  }
}
/*
---------------------------------------------

    page

*/
.page-top {
  width: var(--s8);
  height: var(--s8);
  opacity: 0;
  visibility: hidden;
  position: sticky;
  left: calc(100% - 8.4rem);
  bottom: var(--s2-5);
  z-index: 9;
  transition: visibility 0.4s, opacity 0.4s, border-color 0.6s ease;
}
.page-top__link {
  width: 100%;
  height: 100%;
  background: var(--color03) url("../img/global/arrow-01-white-up.svg") no-repeat center/var(--s2) var(--s2);
  border-radius: 100%;
  display: block;
  transition: background-color 0.3s ease;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .page-top__link:hover {
    background-color: var(--color04);
  }
}
.page-header-01 {
  width: 100%;
  padding: 20rem 0 var(--s8);
  position: relative;
}
.page-header-01::after {
  content: "";
  width: 14rem;
  height: 14.6rem;
  background: url("../img/global/illust-woman-02.svg") no-repeat center/contain;
  position: absolute;
  left: calc(50% + 30rem);
  bottom: -1px;
  z-index: -1;
}

.page-title-01 {
  padding-top: var(--s3);
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  position: relative;
}
.page-title-01::before {
  content: "";
  width: var(--s8);
  height: var(--s1);
  background: var(--color03);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.page-content-01 {
  padding: var(--s8);
  background: var(--color02);
  border-radius: var(--s2);
}

.page-footer-01 {
  margin: var(--s10) 0;
}

.page-navi-wrapper-01 {
  width: fit-content;
  margin: 0 auto;
  padding: 0 var(--s8);
  position: relative;
}

.page-navi-wrapper-02 {
  display: flex;
  justify-content: center;
  gap: var(--s4);
}

.page-navi-prev {
  width: 14.5rem;
}
.page-navi-prev__link {
  padding: var(--s1-5) var(--s1-5) var(--s1-5) var(--s6);
  background: var(--color02);
  border: 1px solid var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color03);
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}
.page-navi-prev__link::after {
  content: "";
  width: var(--s4);
  height: var(--s4);
  background: var(--color03) url("../img/global/arrow-01-white-left.svg") no-repeat center/1.3rem 1.3rem;
  border: 1px solid var(--color03);
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: var(--s1);
  transform: translateY(-50%);
  transition: background-image 0.3s ease;
}

@media (hover: hover) {
  .page-navi-prev__link:hover {
    background-color: var(--color03);
    color: var(--color02);
  }
  .page-navi-prev__link:hover::after {
    background-color: var(--color02);
    background-image: url("../img/global/arrow-01-green-left.svg");
  }
}
.page-navi-index {
  width: 11rem;
}
.page-navi-index__link {
  padding: var(--s1-5) var(--s1-5) var(--s1-5) var(--s6);
  background: var(--color02);
  border: 1px solid var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color03);
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}
.page-navi-index__link::after {
  content: "";
  width: var(--s4);
  height: var(--s4);
  background: var(--color03) url("../img/global/icon-index-white.svg") no-repeat center/1.4rem 1.4rem;
  border: 1px solid var(--color03);
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: var(--s1);
  transform: translateY(-50%);
  transition: background-image 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
  .page-navi-index__link:hover {
    background-color: var(--color03);
    color: var(--color02);
  }
  .page-navi-index__link:hover::after {
    background-color: var(--color02);
    background-image: url("../img/global/icon-index-green.svg");
  }
}
.page-navi-next {
  width: 14.5rem;
}
.page-navi-next__link {
  padding: var(--s1-5) var(--s6) var(--s1-5) var(--s1-5);
  background: var(--color02);
  border: 1px solid var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color03);
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}
.page-navi-next__link::after {
  content: "";
  width: var(--s4);
  height: var(--s4);
  background: var(--color03) url("../img/global/arrow-01-white-right.svg") no-repeat center/1.3rem 1.3rem;
  border: 1px solid var(--color03);
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: var(--s1);
  transform: translateY(-50%);
  transition: background-image 0.3s ease;
}

@media (hover: hover) {
  .page-navi-next__link:hover {
    background-color: var(--color03);
    color: var(--color02);
  }
  .page-navi-next__link:hover::after {
    background-color: var(--color02);
    background-image: url("../img/global/arrow-01-green-right.svg");
  }
}
/*
---------------------------------------------

    section

*/
.section-title-01 {
  padding-top: var(--s3);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.section-title-01::before {
  content: "";
  width: var(--s8);
  height: var(--s1);
  background: var(--color03);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
}
.section-title-01--align-center-pc {
  text-align: center;
}
.section-title-01--align-center-pc::before {
  left: 50%;
  transform: translateX(-50%);
}
.section-title-01--small {
  font-size: 2.4rem;
}
.section-title-01--small::before {
  width: var(--s5);
}

/*
---------------------------------------------

    btn

*/
.btn-primary {
  width: 100%;
  max-width: 24.5rem;
  margin: 0 auto;
}
.btn-primary__link {
  padding: var(--s1-5) var(--s6) var(--s1-5) var(--s3);
  background: var(--color03);
  border: 1px solid var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color02);
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}
.btn-primary__link::after {
  content: "";
  width: var(--s4);
  height: var(--s4);
  background: var(--color02) url("../img/global/arrow-01-green-right.svg") no-repeat center/1.3rem 1.3rem;
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: var(--s1);
  transform: translateY(-50%);
  transition: background-image 0.3s ease, background-color 0.3s ease;
}
.btn-primary--small {
  max-width: 20rem;
}

@media (hover: hover) {
  .btn-primary__link:hover {
    background-color: var(--color02);
    color: var(--color03);
  }
  .btn-primary__link:hover::after {
    background-color: var(--color03);
    background-image: url("../img/global/arrow-01-white-right.svg");
  }
}
.btn-secondary {
  width: 100%;
  max-width: 24.5rem;
  margin: 0 auto;
}
.btn-secondary__link {
  padding: var(--s1-5) var(--s3);
  background: var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color02);
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
  .btn-secondary__link:hover {
    background-color: var(--color04);
    color: var(--color02);
  }
}
/*
---------------------------------------------

    list

*/
.list-dot-01__item {
  padding-left: 1.5em;
  line-height: 1.6;
  position: relative;
}
.list-dot-01__item::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color04);
  border-radius: 100%;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.list-dot-01__item + .list-dot-01__item {
  margin-top: 0.5em;
}

/*
---------------------------------------------

    icon

*/
.icon-toggle {
  width: var(--s3);
  height: var(--s3);
  position: relative;
}
.icon-toggle::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: var(--color03);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.icon-toggle::after {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: var(--color03);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.is-open > .icon-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.icon-circle-01 {
  width: var(--s2);
  height: var(--s2);
  background: url("../img/global/icon-circle-01.svg") no-repeat center center/contain;
}

.icon-pdf-01 {
  width: var(--s2-5);
  height: var(--s2-5);
  background: url("../img/global/icon-pdf-01.svg") no-repeat center center/contain;
}

/*
---------------------------------------------

    text

*/
.text-marker-01 {
  background: linear-gradient(transparent 60%, rgba(82, 193, 143, 0.32) 60%);
}

.text-em-01 {
  font-weight: 600;
}

.text-scroll-notice {
  width: fit-content;
  padding-right: 10.5rem;
  background: url("../img/global/arrow-02-gray-right.svg") no-repeat center right/10rem 0.8rem;
  color: var(--color06);
  font-size: 1.2rem;
}

.text-center-01 {
  text-align: center;
}

.text-note-01 {
  margin-top: var(--s1);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/*
---------------------------------------------

    category

*/
.category-01__link {
  padding: var(--s-5) 1em;
  background: var(--color02);
  border: 1px solid var(--color03);
  border-radius: 10rem;
  display: block;
  color: var(--color03);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.category-01__link.is-current {
  background-color: var(--color03);
  color: var(--color02);
  cursor: default;
  pointer-events: none;
}

@media (hover: hover) {
  .category-01__link:hover {
    background-color: var(--color03);
    color: var(--color02);
  }
}
.category-01-wrapper {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
}

/*
---------------------------------------------

	subgrid card

*/
.subgrid-card-three {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: var(--s1);
}

/*
---------------------------------------------

    summary

*/
.summary-01__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
}
.summary-01__row + .summary-01__row {
  margin-top: var(--s2-5);
}
.summary-01__label {
  min-width: 12rem;
  padding: 0 1em;
  background: var(--color04);
  border-radius: 10rem;
  color: var(--color02);
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
.summary-01__content {
  flex: 1;
  line-height: 1.6;
}
.summary-01--small {
  font-size: 1.4rem;
}
.summary-01--small .summary-01__row {
  gap: var(--s1-5);
}
.summary-01--small .summary-01__row + .summary-01__row {
  margin-top: var(--s1);
}
.summary-01--small .summary-01__label {
  min-width: 10rem;
}

.summary-02__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
}
.summary-02__row + .summary-02__row {
  margin-top: var(--s1);
}
.summary-02__label {
  min-width: 4.4em;
  font-weight: 600;
  line-height: 2;
}
.summary-02__content {
  flex: 1;
  line-height: 2;
}

/*
---------------------------------------------

    toggle

*/
.toggle-content {
  display: none;
}

/*
---------------------------------------------

    wp page navi

*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s1);
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  width: var(--s5);
  height: var(--s5);
  background: var(--color02);
  border: 1px solid var(--color03);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color03);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.wp-pagenavi .page {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wp-pagenavi .page:hover {
  background-color: var(--color03);
  color: var(--color02);
}
.wp-pagenavi .current {
  background-color: var(--color03);
  color: var(--color02);
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: var(--s5);
  height: var(--s5);
  background: var(--color02) no-repeat center/1.6rem 1.6rem;
  border: 1px solid var(--color03);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.wp-pagenavi .previouspostslink {
  background-image: url("../img/global/arrow-01-green-left.svg");
  left: 0;
}
.wp-pagenavi .nextpostslink {
  background-image: url("../img/global/arrow-01-green-right.svg");
  right: 0;
}
.wp-pagenavi .extend {
  display: flex;
  align-items: flex-end;
}

@media (hover: hover) {
  .wp-pagenavi .page:hover {
    background-color: var(--color03);
    color: var(--color02);
  }
  .wp-pagenavi .previouspostslink:hover,
  .wp-pagenavi .nextpostslink:hover {
    background-color: var(--color03);
  }
  .wp-pagenavi .previouspostslink:hover {
    background-image: url("../img/global/arrow-01-white-left.svg");
  }
  .wp-pagenavi .nextpostslink:hover {
    background-image: url("../img/global/arrow-01-white-right.svg");
  }
}
/*
---------------------------------------------

    top

*/
.top-hero {
  position: relative;
}
.top-hero__bg-01 {
  position: relative;
}
.top-hero__bg-01::after {
  content: "";
  width: 100%;
  height: var(--s10);
  background: linear-gradient(0deg, var(--color05) 0%, var(--color05) 50%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.top-news {
  margin-top: calc(var(--s10) * -1);
  position: relative;
  z-index: 1;
}
.top-news__inner {
  padding: var(--s7) var(--s5);
  position: relative;
}
.top-news__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color02);
  border-radius: var(--s2);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}

.top-about {
  padding: 12rem 0 0;
}

.top-about-title-01 {
  padding: var(--s-5) var(--s3);
  background: var(--color02);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.top-about-title-02 {
  margin-bottom: var(--s3);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.top-about-img-01 {
  width: 64rem;
}

.top-club {
  padding: 12rem 0;
}

.top-club-card-01 {
  padding: 0 0 var(--s2);
  background: var(--color02);
  border-radius: var(--s2);
  overflow: hidden;
}
.top-club-card-01__thumb {
  margin-bottom: var(--s-5);
  height: 14rem;
  background: var(--color07);
  position: relative;
}
.top-club-card-01__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top-club-card-01__title {
  padding: 0 var(--s2);
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.top-club-card-01__label {
  padding: 0 var(--s2);
  background: var(--color04);
  border-radius: 0 10rem 10rem 0;
  display: inline-block;
  color: var(--color02);
  font-size: 1rem;
  position: absolute;
  top: calc(var(--s1-5) * -1);
  left: 0;
  transform: translate(0, -50%);
}
.top-club-card-01__text {
  padding: 0 var(--s2);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.top-club-card-01-wrapper {
  margin-top: var(--s8);
}

.top-faq {
  padding: 12rem 0;
  background: rgba(82, 193, 143, 0.16);
}

.top-faq-box-01 {
  padding: 0 var(--s5);
  background: var(--color02);
  border-radius: var(--s2);
}
.top-faq-box-01__label {
  padding: var(--s3) var(--s6);
  background: url("../img/global/icon-q-01.svg") no-repeat top var(--s3) left/var(--s4) var(--s4);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}
.top-faq-box-01__label .icon-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.top-faq-box-01__content {
  padding: var(--s3) 0;
  border-top: 0.2rem solid rgba(82, 193, 143, 0.16);
}

.top-faq-box-01-wrapper {
  width: 100%;
  max-width: 102rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.top-faq-box-01-wrapper::before {
  content: "";
  width: 14rem;
  height: 11.9rem;
  background: url("../img/global/illust-woman-01.svg") no-repeat center bottom/contain;
  position: absolute;
  top: 1px;
  left: calc(50% + 20rem);
  transform: translate(0, -100%);
}

.top-message {
  padding-top: 12rem;
}

.top-message-text {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.top-join {
  padding-top: 25.6rem;
  padding-bottom: 12rem;
  position: relative;
}
.top-join::before {
  content: "";
  width: 32rem;
  height: 22.5rem;
  background: url("../img/global/illust-member-01.svg") no-repeat center bottom/contain;
  position: absolute;
  top: 3.6rem;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.top-join__inner {
  padding: var(--s6) var(--s5);
  background: var(--color02);
  border: 0.3rem solid var(--color01);
  border-radius: var(--s2);
}

.top-join-title-01 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 600;
}

.top-join-summary-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6) var(--s5);
}
.top-join-summary-01__row {
  width: calc((100% - var(--s5)) / 2);
}
.top-join-summary-01__row--width-full {
  width: 100%;
}
.top-join-summary-01__label {
  margin-bottom: var(--s3);
  padding: var(--s-5) var(--s6);
  background: rgba(82, 193, 143, 0.16);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.top-join-summary-01__content {
  line-height: 1.6;
  text-align: center;
}

.top-join-howto-01 {
  padding: 0 var(--s5);
  text-align: left;
}
.top-join-howto-01__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.top-join-howto-01__title::before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: no-repeat center/contain;
  display: block;
}
.top-join-howto-01__title--mail::before {
  background-image: url("../img/global/icon-mail.svg");
}
.top-join-howto-01__title--paper::before {
  background-image: url("../img/global/icon-paper.svg");
}
.top-join-howto-01 + .top-join-howto-01 {
  position: relative;
}
.top-join-howto-01 + .top-join-howto-01::before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: url("../img/global/line-dot-01.svg") repeat-y top center/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 0);
}

.top-join-pdf-01 {
  width: 100%;
  height: 100%;
  padding: var(--s1-5) var(--s1) var(--s1);
  background: var(--color02);
  border: 0.3rem solid var(--color01);
  border-radius: var(--s2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s1);
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s ease;
}
.top-join-pdf-01::before {
  content: "";
  width: var(--s4);
  height: 0.6rem;
  background: var(--color01);
  border-radius: 0 0 var(--s-5) var(--s-5);
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
.top-join-pdf-01__text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}
.top-join-pdf-01 .icon-pdf-01 {
  flex-shrink: 0;
}

@media (hover: hover) {
  .top-join-pdf-01:hover {
    background-color: rgba(82, 193, 143, 0.16);
  }
}
.top-join-pdf-01-wrapper {
  margin-top: var(--s10);
}

/*
---------------------------------------------

    news

*/
.news-index-01 {
  border-top: 1px solid var(--color07);
  padding: var(--s3) 0;
}
.news-index-01__date {
  color: var(--color06);
  font-size: 1.4rem;
  line-height: 1.3;
}
.news-index-01__category {
  padding: 0 var(--s1);
  border: solid 1px var(--color04);
  background: var(--color04);
  border-radius: var(--s-5);
  display: block;
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.3;
}
.news-index-01__tag {
  padding: 0 var(--s1);
  border: solid 1px var(--color04);
  border-radius: var(--s-5);
  display: block;
  color: var(--color04);
  font-size: 1.2rem;
  line-height: 1.3;
}
.news-index-01__title {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.news-index-01__link {
  padding-right: var(--s9);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s2);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.news-index-01__link::after {
  content: "";
  width: var(--s4);
  height: var(--s4);
  background: url("../img/global/arrow-01-green-right.svg") no-repeat center/1.3rem 1.3rem;
  border: 1px solid var(--color03);
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.news-index-01:last-child {
  border-bottom: 1px solid var(--color07);
}

@media (hover: hover) {
  .news-index-01__link:hover {
    color: var(--color03);
  }
  .news-index-01__link:hover::after {
    background-color: var(--color03);
    background-image: url("../img/global/arrow-01-white-right.svg");
  }
}
.news-detail-01__header {
  padding: 19.6rem 0 var(--s12);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.news-detail-01__date {
  color: var(--color06);
  font-size: 1.4rem;
  line-height: 1.3;
}
.news-detail-01__category {
  padding: 0 var(--s1);
  border: solid 1px var(--color04);
  background: var(--color04);
  border-radius: var(--s-5);
  display: block;
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.3;
}
.news-detail-01__tag {
  padding: 0 var(--s1);
  border: solid 1px var(--color04);
  border-radius: var(--s-5);
  display: block;
  color: var(--color04);
  font-size: 1.2rem;
  line-height: 1.3;
}
.news-detail-01__title {
  padding-top: var(--s3);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.news-detail-01__title::before {
  content: "";
  width: var(--s8);
  height: var(--s1);
  background: var(--color03);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
}
.news-detail-01__content {
  padding: var(--s8);
  background: var(--color02);
  border-radius: var(--s2);
}
.news-detail-01__content h2, .news-detail-01__content h3, .news-detail-01__content h4, .news-detail-01__content h5, .news-detail-01__content h6 {
  margin: 2em 0 1em;
  font-weight: 600;
  line-height: 1.6;
}
.news-detail-01__content h2 {
  font-size: 2.4rem;
}
.news-detail-01__content h3 {
  font-size: 2.2rem;
}
.news-detail-01__content h4 {
  font-size: 2rem;
}
.news-detail-01__content h5, .news-detail-01__content h6 {
  font-size: 1.8rem;
}
.news-detail-01__content .wp-block-image {
  margin: var(--s5) 0;
  border-radius: var(--s2);
  overflow: hidden;
}
.news-detail-01__content *:first-child {
  margin-top: 0 !important;
}
.news-detail-01__content *:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.5641025641vw;
  }
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: var(--s2);
    padding-left: var(--s2);
  }
  .l-center--sp-wide {
    padding-right: var(--s1);
    padding-left: var(--s1);
  }
  .l-center-wide {
    padding-right: var(--s2);
    padding-left: var(--s2);
  }
  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack-01 {
    gap: var(--s4);
  }
  .l-stack-02 {
    gap: var(--s1-5);
  }
  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster-01 {
    gap: var(--s1);
  }
  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s5);
    grid-template-columns: 100%;
  }
  .l-grid-four {
    --minimum: calc((100% - var(--s1)) / 2);
    grid-gap: var(--s1);
  }
  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column-01 {
    gap: var(--s2);
  }
  .l-column-01__side {
    width: 100%;
  }
  .l-column-01__main {
    width: 100%;
  }
  .l-column-02 {
    gap: var(--s2);
  }
  .l-column-02__side {
    width: 100%;
  }
  .l-column-02__main {
    width: 100%;
  }
  .l-column-03 {
    gap: var(--s4);
    flex-direction: column;
  }
  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas-01 {
    grid-template-areas: "title" "content" "btn";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s4);
  }
  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin-bottom: calc(var(--s1-5) * -1);
    padding-bottom: var(--s1-5);
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp header

  */
  .header-area {
    padding: var(--s3) var(--s2);
  }
  .header-title {
    font-size: 1.4rem;
  }
  /*
  ---------------------------------------------

      sp gnavi

  */
  .gnavi-btn {
    width: var(--s5);
    height: var(--s5);
    background: var(--color03);
    border-radius: 100%;
    display: block;
    position: fixed;
    top: var(--s1-5);
    right: var(--s2);
    z-index: 12;
  }
  .gnavi-btn__bar {
    width: var(--s2);
    height: 1px;
    background: var(--color02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: margin 0.3s 0.3s, transform 0.3s, opacity 0.3s;
  }
  .gnavi-btn__bar:nth-child(1) {
    margin-top: calc(var(--s-5) * -1);
  }
  .header-area.is-gnavi-open .gnavi-btn__bar:nth-child(1) {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(30deg);
    transition: margin 0.3s, transform 0.3s 0.3s, opacity 0.3s;
  }
  .gnavi-btn__bar:nth-child(2) {
    margin-top: var(--s-5);
  }
  .header-area.is-gnavi-open .gnavi-btn__bar:nth-child(2) {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(-30deg);
    transition: margin 0.3s, transform 0.3s 0.3s, opacity 0.3s;
  }
  .gnavi-mask {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
  }
  .header-area.is-gnavi-open .gnavi-mask {
    visibility: visible;
    opacity: 1;
  }
  .gnavi-area {
    width: calc(100% - var(--s3));
    visibility: hidden;
    opacity: 0;
    top: 0;
    right: auto;
    left: 50%;
    z-index: 11;
    transform: translate(-50%, -100%);
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  }
  .header-area.is-gnavi-open .gnavi-area {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }
  .gnavi-btn-01-wrapper {
    padding: var(--s7) var(--s2-5);
    background: var(--color03);
    border-radius: 0 0 var(--s2) var(--s2);
    box-shadow: none;
    flex-direction: column;
    gap: var(--s4) 0;
  }
  .gnavi-btn-01__link {
    padding: 0;
    color: var(--color02);
  }
  .gnavi-btn-01--em .gnavi-btn-01__link {
    padding: 0;
  }
  .gnavi-btn-01--em {
    background: none;
    border-radius: 0;
  }
  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area {
    padding: var(--s5) var(--s2);
  }
  .footer-area::after {
    width: calc(100% - var(--s4));
    height: calc(100% - var(--s4));
  }
  .footer-title-01 {
    font-size: 1.6rem;
  }
  .footer-address-01 {
    line-height: 1.6;
  }
  .footer-summary-01 {
    line-height: 1.6;
  }
  .footer-summary-01__note {
    font-size: 1.2rem;
  }
  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s5);
    height: var(--s5);
    left: calc(100% - var(--s7));
    bottom: var(--s1-5);
  }
  .page-top__link {
    background-size: 1.4rem 1.4rem;
  }
  .page-header-01 {
    padding: var(--s12) 0 var(--s10);
  }
  .page-header-01::after {
    width: 6.8rem;
    height: 7.1rem;
    left: calc(50% + 7.5rem);
  }
  .page-title-01 {
    padding-top: var(--s2);
    font-size: 2.2rem;
  }
  .page-title-01::before {
    width: var(--s5);
    height: var(--s-5);
  }
  .page-content-01 {
    padding: var(--s4) var(--s2);
  }
  .page-footer-01 {
    margin: var(--s5) 0;
  }
  .page-navi-wrapper-01 {
    padding: 0 var(--s6);
  }
  .page-navi-wrapper-02 {
    justify-content: space-between;
    gap: 0;
  }
  .page-navi-prev {
    width: 11.6rem;
  }
  .page-navi-prev__link {
    padding: var(--s1) var(--s1-5) var(--s1) var(--s5);
  }
  .page-navi-prev__link::after {
    width: var(--s3);
    height: var(--s3);
    background-size: 0.9rem 0.9rem;
  }
  .page-navi-index {
    width: 8.6rem;
  }
  .page-navi-index__link {
    padding: var(--s1) var(--s1-5) var(--s1) var(--s5);
  }
  .page-navi-index__link::after {
    width: var(--s3);
    height: var(--s3);
    background-size: 1rem 1rem;
  }
  .page-navi-next {
    width: 11.6rem;
  }
  .page-navi-next__link {
    padding: var(--s1) var(--s5) var(--s1) var(--s1-5);
  }
  .page-navi-next__link::after {
    width: var(--s3);
    height: var(--s3);
    background-size: 0.9rem 0.9rem;
  }
  /*
  ---------------------------------------------

      sp section

  */
  .section-title-01 {
    padding-top: var(--s2);
    font-size: 2.2rem;
  }
  .section-title-01::before {
    width: var(--s5);
    height: var(--s-5);
  }
  .section-title-01--align-center-pc {
    text-align: left;
  }
  .section-title-01--align-center-pc::before {
    left: 0;
    transform: translateX(0);
  }
  .section-title-01--small {
    font-size: 1.8rem;
  }
  .section-title-01--small::before {
    width: var(--s3);
  }
  /*
  ---------------------------------------------

      sp icon

  */
  .icon-toggle {
    width: var(--s2);
    height: var(--s2);
  }
  .icon-pdf-01 {
    width: var(--s2);
    height: var(--s2);
  }
  /*
  ---------------------------------------------

      sp text

  */
  .text-scroll-notice {
    margin-bottom: 1em;
    font-size: 1rem;
  }
  /*
  ---------------------------------------------

      sp category

  */
  .category-01-wrapper {
    gap: var(--s1);
  }
  /*
  ---------------------------------------------

      sp summary

  */
  .summary-01__row {
    flex-direction: column;
    gap: var(--s1);
  }
  .summary-01--small {
    font-size: 1.2rem;
  }
  .summary-01--small .summary-01__row {
    flex-direction: row;
  }
  .summary-01--small .summary-01__label {
    min-width: 8rem;
  }
  .summary-02__row {
    flex-direction: column;
    gap: 0;
  }
  /*
  ---------------------------------------------

      sp wp page navi

  */
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: var(--s4);
    height: var(--s4);
    font-size: 1.2rem;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: var(--s4);
    height: var(--s4);
    background-size: 1.3rem 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp top

  */
  .top-hero__bg-01::after {
    height: var(--s5);
  }
  .top-news {
    margin-top: calc(var(--s5) * -1);
  }
  .top-news__inner {
    padding: var(--s4) var(--s2-5);
  }
  .top-about {
    padding-top: var(--s8);
  }
  .top-about-title-01 {
    padding: var(--s-5) 0;
    background: none;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
  }
  .top-about-title-01::after {
    content: "";
    width: 18rem;
    height: 100%;
    background: var(--color02);
    border-radius: 0 10rem 10rem 0;
    position: absolute;
    top: 0;
    left: calc(var(--s2) * -1);
    z-index: -1;
  }
  .top-about-title-02 {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
  }
  .top-club {
    padding: var(--s8) 0;
  }
  .top-club-card-01 {
    padding: 0 0 var(--s1);
  }
  .top-club-card-01__thumb {
    height: 10rem;
  }
  .top-club-card-01__title {
    padding: 0 var(--s1);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }
  .top-club-card-01__label {
    padding-left: var(--s1);
  }
  .top-club-card-01__text {
    padding: 0 var(--s1);
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .top-club-card-01-wrapper {
    margin-top: var(--s4);
  }
  .top-faq {
    padding: var(--s8) 0;
  }
  .top-faq-box-01 {
    padding: 0 var(--s2);
  }
  .top-faq-box-01__label {
    padding: var(--s2) var(--s4);
    background-position: center left;
    background-size: var(--s3) var(--s3);
    font-size: 1.4rem;
  }
  .top-faq-box-01__content {
    padding: var(--s2) 0;
  }
  .top-faq-box-01-wrapper::before {
    content: "";
    width: 6.8rem;
    height: 5.8rem;
    left: calc(50% + var(--s6));
  }
  .top-message {
    padding-top: var(--s8);
  }
  .top-message-text {
    font-size: 1.4rem;
  }
  .top-join {
    padding-top: 13.6rem;
    padding-bottom: var(--s8);
  }
  .top-join::before {
    width: 17rem;
    height: 12rem;
    top: 1.6rem;
  }
  .top-join__inner {
    padding: var(--s4) var(--s1-5);
  }
  .top-join-title-01 {
    font-size: 2.2rem;
  }
  .top-join-summary-01 {
    gap: var(--s4) 0;
  }
  .top-join-summary-01__row {
    width: 100%;
  }
  .top-join-summary-01__label {
    margin-bottom: var(--s2);
    padding: var(--s-5) var(--s2);
    justify-content: flex-start;
    font-size: 1.6rem;
  }
  .top-join-summary-01__content {
    padding: 0 var(--s1-5);
    text-align: left;
  }
  .top-join-howto-01 {
    padding: 0;
  }
  .top-join-howto-01__title {
    justify-content: flex-start;
    gap: var(--s1);
    font-size: 1.6rem;
  }
  .top-join-howto-01__title::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .top-join-howto-01 + .top-join-howto-01::before {
    width: 100%;
    height: 0.2rem;
    background: url("../img/global/line-dot-02.svg") repeat-x center left/auto 100%;
    top: calc(var(--s2-5) * -1);
    transform: translate(0, -50%);
  }
  .top-join-pdf-01 {
    min-height: var(--s8);
  }
  .top-join-pdf-01__text {
    font-size: 1.2rem;
  }
  .top-join-pdf-01-wrapper {
    margin-top: var(--s8);
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp news

  */
  .news-index-01 {
    padding: var(--s1) 0;
  }
  .news-index-01__date {
    width: 100%;
    font-size: 1.2rem;
  }
  .news-index-01__category {
    padding: 0.2rem var(--s1);
    font-size: 1rem;
  }
  .news-index-01__tag {
    padding: 0.2rem var(--s1);
    font-size: 1rem;
  }
  .news-index-01__title {
    font-size: 1.4rem;
  }
  .news-index-01__link {
    padding-right: var(--s4);
    gap: var(--s1);
  }
  .news-index-01__link::after {
    width: var(--s3);
    height: var(--s3);
    background-size: 1rem 1rem;
    right: 0;
  }
  .news-index-01:last-child {
    border-bottom: 1px solid var(--color07);
  }
  .news-detail-01__header {
    padding: var(--s12) 0 var(--s5);
    gap: var(--s2);
  }
  .news-detail-01__date {
    font-size: 1.2rem;
  }
  .news-detail-01__category {
    font-size: 1rem;
  }
  .news-detail-01__tag {
    font-size: 1rem;
  }
  .news-detail-01__title {
    padding-top: var(--s2);
    font-size: 2rem;
  }
  .news-detail-01__title::before {
    width: var(--s5);
    height: var(--s-5);
  }
  .news-detail-01__content {
    padding: var(--s4) var(--s2);
  }
  .news-detail-01__content h2, .news-detail-01__content h3, .news-detail-01__content h4, .news-detail-01__content h5, .news-detail-01__content h6 {
    margin: 1em 0 0.5em;
  }
  .news-detail-01__content h2 {
    font-size: 2rem;
  }
  .news-detail-01__content h3 {
    font-size: 1.8rem;
  }
  .news-detail-01__content h4 {
    font-size: 1.6rem;
  }
  .news-detail-01__content h5, .news-detail-01__content h6 {
    font-size: 1.4rem;
  }
  .news-detail-01__content .wp-block-image {
    margin: var(--s3) 0;
    border-radius: var(--s1);
  }
}
