@charset "UTF-8";
/* =========================
// variable
// ========================= */ /* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */
:root {
  --font-size-base: 16px;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Molengo", sans-serif;
  --font-family-jp: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --text-color: #27262B;
  --main-color: #2CB6AF;
  --bg-color: #F6F6F6;
  --border-color: #ddd;
}

/*------------------------------------------------------------
 * タグの基本設定
------------------------------------------------------------*/
html {
  font-size: clamp(15px, 1.5vw, var(--font-size-base));
}

/* 全体 */
body {
  font-size: 1rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.45;
  font-weight: 400;
}
@media screen and (max-width: 781px) {
  body {
    line-height: 1.6;
  }
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h2 {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  /* 20px〜30px */
}

h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  /* 16px〜24px */
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  /* 16px〜20px */
}

h5 {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  /* 15px〜18px */
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  /* 14px〜16px */
}

/* 段落 */
p {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 781px) {
  p {
    padding-bottom: 2rem;
  }
}

/* リンク */
a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

p a {
  color: var(--main-color);
  text-decoration: underline;
}

a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 781px) {
  a:hover {
    opacity: 1;
  }
}
/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font-family: var(--font-family-base);
  font-size: max(var(--font-size-base), 16px);
  padding: 0.5em;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  color: var(--text-color);
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}

button {
  cursor: pointer;
}

figure {
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
  /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

/* -------------------------------
   base（変数・mixin・初期設定）
-------------------------------- */
/* ===============================
   Header
=============================== */
.header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 999;
  /* ---------------------------
     Navigation
  --------------------------- */
}
.header__inner {
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner {
    justify-content: center;
    height: 60px;
  }
}
.header__logo {
  margin: 0;
  padding-left: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    padding: 0;
  }
}
.header__logo-link {
  display: inline-block;
}
.header__logo-img {
  display: block;
  width: 145px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo-img {
    width: 85px;
  }
}
.header__nav-list {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.header__nav-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header__nav-link:hover {
  opacity: 0.6;
}
.header__nav-link--cta {
  background-color: #F78243;
  padding: 0.5em 1.65em;
  border-radius: 0.55em;
  border: 1px solid #F78243;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
}
.header__nav-link--cta:hover {
  color: #F78243;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .header__nav-link--cta:hover {
    background-color: #F78243;
    color: #fff;
  }
}

.footer .section__inner {
  padding-top: 2.5rem;
}
.footer__logo {
  max-width: 158px;
  margin-bottom: 0.85rem;
}
.footer__logo-area {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__logo-area span {
  font-size: clamp(1rem, 2vw, 29px);
  color: var(--main-color);
  font-weight: bold;
  text-transform: uppercase;
}
.footer__box {
  display: flex;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 781px) {
  .footer__box {
    gap: 2rem;
    flex-direction: column;
  }
}
.footer__info {
  flex: 1;
}
.footer__content {
  max-width: 400px;
  margin-top: 3rem;
}
@media screen and (max-width: 781px) {
  .footer__content {
    margin-top: 2rem;
  }
}
.footer__content-text {
  text-align: right;
  padding-bottom: 0;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 781px) {
  .footer__content-text {
    text-align: left;
    font-size: 1.05rem;
  }
}
.footer__content-text span {
  display: block;
  font-size: 0.7em;
}
.footer__contact-button.btn--link {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.5rem;
}
.footer__contact-button.btn--link::before {
  content: "";
  background-image: url(../img/footer_mail.png);
  display: block;
  aspect-ratio: 1;
  width: 2.15em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__contact-button.btn--link:hover::before {
  background-image: url(../img/footer_mail-main.png);
}
@media screen and (max-width: 781px) {
  .footer__contact-button.btn--link:hover::before {
    background-image: url(../img/footer_mail.png);
  }
}
.footer__nav {
  flex: 0.8;
}
@media screen and (max-width: 781px) {
  .footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
  }
}
.footer__nav-link {
  text-decoration: underline;
  font-size: 1.25rem;
  padding: 0.3em;
}
@media screen and (max-width: 781px) {
  .footer__nav-link {
    font-size: 1rem;
  }
}
.footer__copy {
  padding-top: 3rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* ===============================
   Hamburger Button
=============================== */
.header__hamburger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
  left: 1rem;
  /* 開いた状態 */
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__hamburger-line:nth-child(1) {
  top: 0;
}
.header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger-line:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ===============================
   ハンバーガーメニュー開閉時のnav制御
=============================== */
@media screen and (max-width: 1024px) {
  .header__nav {
    transition: all 0.3s ease;
    transform: translateX(-130%);
    position: absolute;
    top: 60px;
    width: 70%;
    left: 0;
    height: 100vh;
  }
  .header__nav::before {
    content: "";
    position: absolute;
    background-color: var(--main-color);
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .header__nav-list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin-top: 8vh;
    gap: 0;
    align-items: baseline;
  }
  .header__nav-item {
    border-bottom: 1px solid #fff;
    padding: 0.75rem;
    width: 100%;
  }
  .header__nav-item:last-child {
    border-bottom: unset;
    padding-left: 0;
    padding-right: 0;
    margin-top: 1rem;
  }
  .header__nav-link {
    color: #fff;
    width: 100%;
  }
  .header__nav-link--cta {
    text-align: center;
  }
}
.header__nav.is-open {
  transform: translateX(0);
}

.page .main .section .section__inner {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.page .main .section__title {
  left: 0;
}
.page .main .section__title-area {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--bg-color);
  padding-bottom: 1em;
}
.page .main .section__title-jp {
  display: inline-block;
}
.page .main .section__title-jp::before {
  content: none;
}
.page .event__box,
.page .news__box,
.page .blog__box {
  margin-top: 4rem;
}
@media screen and (max-width: 781px) {
  .page .event__box,
.page .news__box,
.page .blog__box {
    margin-top: 3rem;
  }
}
.page .event__link {
  color: var(--text-color);
}
.page .blog__list,
.page .event__list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 781px) {
  .page .blog__list,
.page .event__list {
    gap: 2rem 1rem;
  }
}
.page .blog__list:after,
.page .event__list:after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 2rem);
  height: 0;
}
.page .blog__item,
.page .event__item {
  width: calc(33.3333333333% - 2rem);
  flex: unset;
}
@media screen and (max-width: 781px) {
  .page .blog__item,
.page .event__item {
    width: calc(50% - 0.5rem);
  }
}
.page .news__item:nth-child(n+2) {
  border-top: 1px dotted var(--bg-color);
  padding-top: 1.5rem;
}
.page .blog__article {
  flex-direction: column;
  gap: 0.5em;
}
.page .blog__title {
  margin-top: 0.5rem;
}
.page .blog__category {
  margin-left: 0px;
  font-size: 0.65rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-404 h3 {
  margin-bottom: 1rem;
}
.page-404 .btn--link {
  max-width: 230px;
}

.archive .category__box {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 1rem;
}
@media screen and (max-width: 781px) {
  .archive .category__box {
    overflow-x: scroll;
  }
}
.archive .category__box h4 {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-right: 0.5em;
}
.archive .category__box h4::after {
  content: "";
  width: 0.85em;
  aspect-ratio: 1;
  background-image: url(../img/cate-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.archive .category__list {
  display: flex;
  gap: 0.5rem;
}
.archive .category__item {
  flex: none;
}
.archive .category__link {
  background-color: var(--text-color);
  color: #fff;
  padding: 0.25em 0.5em;
  font-size: 0.8rem;
}
.archive .pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-bottom: 8rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.archive .pagination .page-numbers {
  background-color: #fff;
  aspect-ratio: 1;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-color);
}
.archive .pagination .page-numbers.current {
  background-color: var(--text-color);
  color: #fff;
}

.single .page__mv {
  position: relative;
  height: 270px;
}
@media screen and (max-width: 781px) {
  .single .page__mv {
    height: 200px;
  }
}
.single .page__mv .section__inner {
  padding: 2rem 1rem;
}
.single .page__mv-back {
  height: 100%;
}
.single .page__mv-back--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single .page__mv-back--main {
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
}
.single .page__mv-back::before {
  content: "";
  background-color: #4f4f4f;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single .page__mv .section__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}
.single .single__meta {
  color: #fff;
}
.single .single__date {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 781px) {
  .single .single__date {
    font-size: 1rem;
  }
}
.single .single__categories {
  border-top: 1px solid #fff;
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
@media screen and (max-width: 781px) {
  .single .single__categories {
    overflow-y: scroll;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 781px) {
  .single .single__category {
    flex: none;
  }
}
.single .single__category::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.single .single__category:first-child {
  display: flex;
  align-items: anchor-center;
}
.single .single__category:first-child::before {
  background-image: url(../img/single-folder.png);
  width: 1em;
  aspect-ratio: 1;
  margin-right: 0.5em;
}
.single .single__category:nth-child(2) {
  padding-left: 0.5em;
  display: flex;
  align-items: center;
}
.single .single__category:nth-child(2)::before {
  background-image: url(../img/single-arrow.png);
  width: 1em;
  aspect-ratio: 1;
  margin-right: 0.5em;
}
@media screen and (max-width: 781px) {
  .single .single__category:nth-child(2)::before {
    width: 15px;
    background-size: contain;
    aspect-ratio: unset;
    display: block;
    height: 15px;
  }
}
.single .single__category:nth-child(n+3) {
  padding-left: 1em;
}
.single .single__category-link {
  border: 1px solid #fff;
  padding: 0.25em 0.5em;
  color: #fff;
  font-size: 0.9rem;
}
.single .single__body.section .section__inner {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 781px) {
  .single .single__body.section .section__inner {
    padding-top: 2rem;
  }
}
.single .single__body-content {
  max-width: 900px;
  margin: 0 auto;
}
.single .single__archive-btn {
  padding-top: 1rem;
}
.single .single__archive-btn .btn--link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single .single__archive-btn .btn--link::after {
  right: auto;
  left: 0.5rem;
  transform: translateY(-50%) rotate(-180deg);
}
.single .single__nav {
  margin-top: 4rem;
}
.single .single__nav .single__categories {
  border-top: 1px dashed #b3b3b3;
  margin: 1rem 0 0;
}
.single .single__nav .single__category:first-child::before {
  background-image: url(../img/single-folder-black.png);
}
.single .single__nav .single__category:nth-child(2)::before {
  background-image: url(../img/cate-arrow.png);
}
.single .single__nav .single__category-link {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.single .single__related-heading {
  border-left: solid 2px var(--main-color);
  padding: 0em 0.75em;
  margin-bottom: 1.5em;
  font-size: 1.25rem;
}
.single .single__related .blog__list,
.single .single__related .event__list {
  --gap: .85rem;
  --number: 4;
  --child-width: calc((100% - var(--gap) * (var(--number) - 1)) / var(--number));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: unset;
  row-gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .single .single__related .blog__list,
.single .single__related .event__list {
    --number: 3;
  }
}
@media screen and (max-width: 781px) {
  .single .single__related .blog__list,
.single .single__related .event__list {
    --number: 2;
    row-gap: 1rem;
  }
}
.single .single__related .blog__list .event__item,
.single .single__related .event__list .event__item {
  width: var(--child-width);
}
.single .single__related .blog__list .blog__article,
.single .single__related .event__list .blog__article {
  width: var(--child-width);
}
.single .single__related .event__date,
.single .single__related .blog__date {
  font-size: 0.8rem;
}
.single .single__related .blog__category {
  display: none;
}
.single .single__related .event__title,
.single .single__related .blog__title {
  margin-top: 0;
}

.pankuzu.section__inner {
  padding-bottom: 0.25em;
}
.pankuzu .breadcrumb__list {
  display: flex;
  gap: 0.65em;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .pankuzu .breadcrumb__list {
    overflow-x: scroll;
  }
}
.pankuzu .breadcrumb__item {
  font-size: 0.8rem;
  flex: none;
}
.pankuzu .breadcrumb__item:nth-child(n+2)::before {
  content: "";
  display: inline-block;
  background-image: url(../img/cate-arrow.png);
  width: 0.5em;
  aspect-ratio: 1/1.5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5em;
}
.pankuzu .breadcrumb__link {
  text-decoration: underline;
}

/* -------------------------------
   component（ヘッダー、フッター、ハンバーガーメニュー）
-------------------------------- */
body.is-fixed {
  overflow: hidden;
  position: relative;
}

.hamburger__overlay.is-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--text-color);
  opacity: 0.6;
  z-index: 998;
}

.pagetop {
  height: 70px;
  width: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 781px) {
  .pagetop {
    right: 1rem;
  }
}

header {
  transition: top 300ms;
}
header.is-fixed {
  position: fixed;
  background-color: transparent;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
header.is-active {
  background: white;
}

.mv__news {
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.mv__news.is-hide {
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
}

/* -------------------------------
   component（アニメーション）
-------------------------------- */
.font--en {
  font-family: var(--font-family-en);
}

.font--serif {
  font-family: var(--font-family-jp);
}

.mv {
  height: 100vh;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.mv::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  z-index: -2;
}
.mv__content {
  width: 73vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: calc(50% - 100px);
  margin-top: 3.25vh;
}
@media screen and (max-width: 1024px) {
  .mv__content {
    width: calc(100vw - 2rem);
  }
}
.mv__title {
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.mv__title img {
  height: 100%;
  display: block;
}
.mv__title img:nth-child(2) {
  width: 85%;
}
@-webkit-keyframes slide-animate {
  40% {
    width: 0.2em;
  }
  100% {
    width: 100%;
    visibility: unset;
  }
}
@keyframes slide-animate {
  40% {
    width: 0.2em;
  }
  100% {
    width: 100%;
    visibility: unset;
  }
}
@media screen and (max-width: 580px) {
  .mv__title--pc {
    display: none;
  }
}
.mv__title--sp {
  display: none;
  max-width: 400px;
}
@media screen and (max-width: 580px) {
  .mv__title--sp {
    display: block;
  }
}
.mv__title--sp img:nth-child(1) {
  width: 80%;
}
.mv__title--sp img:nth-child(2) {
  margin-top: 1%;
}
.mv__title--sp img:nth-child(3) {
  margin-top: 1%;
  width: 95%;
}
.mv__title--sp img:nth-child(4) {
  margin-top: 3%;
  width: 54%;
}
.mv__title--pc img, .mv__title--sp img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: reveal 0.6s cubic-bezier(0.87, 0, 0.13, 1) forwards;
          animation: reveal 0.6s cubic-bezier(0.87, 0, 0.13, 1) forwards;
}
.mv__title--pc img:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.mv__title--sp img:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.mv__title--sp img:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.mv__title--sp img:nth-child(4) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@-webkit-keyframes reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.mv__sub-title {
  color: white;
  margin-top: 8vh;
  padding-bottom: 0;
  font-size: max(1.25rem, 1.5vw);
  padding-left: 0.5vw;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-animation: fadeIn 0.5s ease 1.15s 1 normal backwards;
          animation: fadeIn 0.5s ease 1.15s 1 normal backwards;
}
@media screen and (max-width: 580px) {
  .mv__sub-title {
    -webkit-animation-delay: 2.25s;
            animation-delay: 2.25s;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv__news {
  position: absolute;
  right: 0;
  bottom: calc(100px + 3.5vh);
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1rem 2rem 1rem 2.5rem;
}
@media screen and (max-width: 781px) {
  .mv__news {
    flex-direction: column;
    padding: 1rem 1rem 1rem 1.5rem;
    bottom: calc(60px + 3.5vh);
  }
}
.mv__news-heading {
  width: 100%;
  max-width: calc(3em + 1px);
  line-height: 1.4;
  color: var(--main-color);
  border-right: 1px solid var(--main-color);
  padding-right: 1em;
}
@media screen and (max-width: 781px) {
  .mv__news-heading {
    padding-right: 0;
    width: 100%;
    max-width: unset;
    border-right: none;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 0.25em;
    margin-bottom: 0.5em;
  }
}
.mv__news-item {
  position: relative;
  padding-left: 1.25rem;
  padding-right: calc(50px + 1rem);
  width: calc(15.5em + 1.25rem + 50px + 1rem);
  color: var(--text-color);
}
@media screen and (max-width: 781px) {
  .mv__news-item {
    padding-left: 0;
    width: calc(15.5em + 2rem);
  }
}
.mv__news-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
  color: var(--main-color);
  aspect-ratio: 1;
  width: 50px;
  background-image: url(../img/btn_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 781px) {
  .mv__news-item::after {
    width: 2rem;
  }
}
.mv__news-date, .mv__news-title {
  transition: all 0.3s ease;
}
.mv__news-date {
  display: block;
  font-size: 0.875rem;
}
.mv__news-title {
  padding: 0;
  line-height: 1.6;
}
.mv__background {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv__background-text {
  font-size: 3.85vw;
  color: #15AEA7;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .mv__background-text {
    font-size: 4.125vh;
    white-space: unset;
  }
}

@media screen and (max-width: 781px) {
  br.pc--only {
    display: none;
  }
}
br.sp--only {
  display: none;
}
@media screen and (max-width: 781px) {
  br.sp--only {
    display: block;
  }
}

.section {
  background-color: #fff;
}
.section:nth-child(2) .section__inner {
  padding-top: 7rem;
}
.section__inner {
  max-width: 1232px;
  padding: 0 3rem;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-right: 3rem;
}
@media screen and (max-width: 1024px) {
  .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.section--bg-main {
  background-color: var(--main-color);
  color: #fff;
}
.section--bg-main > * {
  color: #fff;
}
.section--bg-main .section__title {
  color: #fff;
}
.section--bg-main .section__title-jp {
  color: #fff;
}
.section--bg-gray {
  background-color: var(--bg-color);
}
.section__title {
  text-transform: uppercase;
  color: var(--main-color);
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
  position: relative;
  left: -2rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .section__title {
    left: 0;
  }
}
.section__title-jp {
  display: block;
  font-size: 0.5em;
  color: var(--text-color);
  letter-spacing: 0;
  font-family: var(--font-family-base);
}
.section__title-jp::before {
  content: "●";
  background: linear-gradient(-90deg, rgb(44, 182, 175) 0%, rgb(0, 51, 26) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__title-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  position: relative;
  font-family: var(--font-family-en);
}
.section__btn {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  padding: 0.75em 5.25em;
  position: relative;
  flex: none;
}
@media screen and (max-width: 781px) {
  .section__btn {
    padding: 0.75em 4.25em;
  }
}
.section__btn::before {
  content: "more";
  text-transform: uppercase;
  font-size: min(1.5rem, 24px);
  letter-spacing: 0.3em;
}
@media screen and (max-width: 781px) {
  .section__btn::before {
    font-size: 1rem;
  }
}
.section__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1.25rem;
  aspect-ratio: 1;
  width: 2.8rem;
  background-image: url(../img/btn_arrow-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 781px) {
  .section__btn::after {
    width: 1.8rem;
  }
}
.section__btn:hover {
  background-color: #fff;
  color: var(--main-color);
  opacity: 1;
}
.section__btn:hover::after {
  background-image: url(../img/btn_arrow.png);
}
@media screen and (max-width: 781px) {
  .section__btn:hover::after {
    background-image: url(../img/btn_arrow-white.png);
  }
}
@media screen and (max-width: 781px) {
  .section__btn:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}
.section__btn--white {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid #fff;
}
.section__btn--white::after {
  background-image: url(../img/btn_arrow.png);
}
.section__btn--white:hover {
  background-color: var(--main-color);
  color: #fff;
}
.section__btn--white:hover::after {
  background-image: url(../img/btn_arrow-white.png);
}
@media screen and (max-width: 781px) {
  .section__btn--white:hover::after {
    background-image: url(../img/btn_arrow.png);
  }
}
@media screen and (max-width: 781px) {
  .section__btn--white:hover {
    background-color: #fff;
    color: var(--main-color);
  }
}

.catch .section__inner {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.catch__title {
  font-size: clamp(1.45rem, 2vw, 32px);
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 7.25vw;
  line-height: 2.125;
}
@media screen and (max-width: 781px) {
  .catch__title {
    padding-left: 0;
    text-align: center;
  }
}
.catch__title::before {
  content: "";
  width: 10.5vw;
  aspect-ratio: 1;
  background-image: url(../img/catch_back.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 1vw;
}
@media screen and (max-width: 781px) {
  .catch__title::before {
    width: 25vw;
    top: 10px;
    left: -1rem;
  }
}
.catch__content {
  padding-left: 7.25vw;
}
@media screen and (max-width: 781px) {
  .catch__content {
    padding-left: 0;
  }
}
.catch__content-text {
  font-size: min(1.15em, 22px);
  line-height: 1.8;
}

.event .section__inner {
  padding-bottom: 6.25rem;
}
.event__list {
  display: flex;
  gap: 2rem 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 781px) {
  .event__list {
    gap: 2rem 1rem;
  }
}
.event__item {
  position: relative;
  width: 33.3333333333%;
  flex: 1;
}
@media screen and (max-width: 781px) {
  .event__item {
    width: calc(50% - 0.5rem);
    flex: none;
  }
}
.event__link {
  width: 100%;
  height: 100%;
  color: #fff;
}
.event__link:hover {
  opacity: 1;
}
.event__link:hover .event__img {
  transform: scale(1.2);
}
@media screen and (max-width: 781px) {
  .event__link:hover .event__img {
    transform: scale(1);
  }
}
.event__figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.event__img {
  height: 100%;
}
.event__img, .event__body {
  transition: transform 0.3s ease;
}
.event__title {
  font-size: 1rem;
  margin-top: 0.5em;
  font-weight: 400;
}

.news .section__inner {
  padding-top: 5rem;
  padding-bottom: 8rem;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news__body {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
@media screen and (max-width: 781px) {
  .news__body {
    flex-direction: column;
    align-items: baseline;
  }
}
.news__category {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  display: inline-block;
  padding: 0.4em 1.35em;
  margin-left: 1.25rem;
  background-color: #fff;
  font-size: 0.9rem;
}
.news__date {
  letter-spacing: 0.1em;
}
.news__title {
  font-weight: 400;
  font-size: 1rem;
}

.blog .section__inner {
  padding-top: 6rem;
}
.blog__box {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 781px) {
  .blog__box {
    flex-direction: column;
  }
}
.blog__main-list {
  flex: 1;
}
.blog__main-list .blog__article {
  flex-direction: column;
}
.blog__main-list .blog__member::before {
  background-image: url(../img/membership-label.png);
  aspect-ratio: 5/4;
}
.blog__sub-list {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
@media screen and (max-width: 781px) {
  .blog__sub-list {
    gap: 2rem 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.blog__sub-list .blog__figure {
  flex: 1;
}
@media screen and (max-width: 781px) {
  .blog__sub-list .blog__figure {
    flex: 1.25;
  }
}
.blog__sub-list .blog__body {
  flex: 1.5;
}
@media screen and (max-width: 781px) {
  .blog__sub-list .blog__item {
    width: calc(50% - 0.5rem);
  }
  .blog__sub-list .blog__article {
    flex-direction: column;
    gap: 0.5rem;
  }
  .blog__sub-list .blog__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .blog__sub-list .blog__category {
    margin-left: 0;
    font-size: 0.65rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.blog__article {
  display: flex;
  gap: 2rem 2.5rem;
}
@media screen and (max-width: 781px) {
  .blog__article {
    gap: 1rem;
  }
}
.blog__category {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  display: inline-block;
  padding: 0.25em 1.5em;
  margin-left: 0.5rem;
  background-color: #fff;
  padding: 0.4em 1.35em;
  font-size: 0.9rem;
}
.blog__figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog__figure-link {
  width: 100%;
  height: 100%;
}
.blog__figure-link:hover {
  opacity: 1;
}
.blog__figure-link:hover .blog__img {
  transform: scale(1.2);
}
@media screen and (max-width: 781px) {
  .blog__figure-link:hover .blog__img {
    transform: scale(1);
  }
}
.blog__member {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100px;
}
.blog__member::before {
  content: "";
  display: inline-block;
  background-image: url(../img/membership-label-sub.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 17.6/5.7;
  width: 100%;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 781px) {
  .blog__member::before {
    width: 80%;
  }
}
.blog__img, .blog__body {
  transition: transform 0.3s ease;
}
.blog__img {
  height: 100%;
}
.blog__date {
  letter-spacing: 0.1em;
}
.blog__title {
  font-size: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 781px) {
  .blog__title {
    margin-top: 0.5rem;
  }
}

.business .section__inner {
  padding-top: 3rem;
}
.business__list {
  display: flex;
  gap: 3rem 2rem;
  flex-wrap: wrap;
  counter-reset: num;
}
.business__item {
  flex: 1;
  counter-increment: num;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 781px) {
  .business__item {
    width: calc(50% - 1rem);
    flex: auto;
  }
}
.business__item-body::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-en);
  line-height: 1;
}
.business__img {
  aspect-ratio: 3/2.3;
  margin-bottom: 1rem;
}
.business__title {
  color: var(--main-color);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 781px) {
  .business__title {
    line-height: 1.6;
  }
}
.business__content {
  padding-bottom: 1.2rem;
  line-height: 1.35;
}
@media screen and (max-width: 781px) {
  .business__content {
    line-height: 1.6;
  }
}
.business__link.btn--link-white {
  padding: 0.3em 0;
  padding-left: 1.25em;
  padding-right: 2.15em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  display: block;
  font-size: 1.05rem;
}
@media screen and (max-width: 781px) {
  .business__link.btn--link-white {
    font-size: 0.9rem;
  }
}
.business__link.btn--link-white::after {
  right: 0.25rem;
}

.member .section__inner {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 5rem;
}
.member .section__title {
  font-size: clamp(2.5rem, 8vw, 60px);
  letter-spacing: 0.1em;
  left: 0;
}
.member .section__title-jp {
  display: inline-block;
  color: #fff;
  font-size: 0.42em;
}
.member .section__title-jp::before {
  content: none;
}
.member .section__title-area {
  margin-bottom: 2.25rem;
}
.member__catch {
  display: flex;
  gap: 1rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 781px) {
  .member__catch {
    font-size: 1.05rem;
  }
}
.member__catch::before {
  content: "";
  width: 2.35em;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  margin-top: 0.8em;
}
.member__catch-text {
  letter-spacing: 0.2em;
  padding-bottom: 3.5rem;
}
.member__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 781px) {
  .member__list {
    gap: 1rem;
  }
}
.member__item {
  background-color: #fff;
  color: var(--text-color);
  width: calc(25% - 1rem);
  padding: 1rem 0.5rem;
}
@media screen and (max-width: 781px) {
  .member__item {
    width: calc(50% - 0.5rem);
  }
}
.member__item .member__img {
  background-color: var(--bg-color);
}
.member__item:nth-child(-n+2) {
  width: calc(50% - 1rem);
  padding: 1.25rem 1.5rem 1rem;
}
@media screen and (max-width: 781px) {
  .member__item:nth-child(-n+2) {
    width: 100%;
  }
}
.member__item:nth-child(-n+2) .member__body {
  display: flex;
  align-items: flex-end;
  flex-direction: unset;
  justify-content: space-between;
}
@media screen and (max-width: 781px) {
  .member__item:nth-child(-n+2) .member__body {
    flex-direction: column-reverse;
    align-items: baseline;
    gap: 0.25rem;
  }
}
.member__item:nth-child(-n+2) .member__figure {
  width: 67%;
}
@media screen and (max-width: 580px) {
  .member__item:nth-child(-n+2) .member__figure {
    width: 100%;
  }
}
.member__body {
  display: flex;
  flex-direction: column-reverse;
}
.member__figure {
  aspect-ratio: 1/0.85;
  margin-bottom: 0.25rem;
}
.member__img {
  height: 100%;
}
.member__name {
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid var(--main-color);
  padding: 0 0.25em 0.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.member__category {
  font-size: 0.8em;
  padding-right: 1em;
}
.member__meta {
  padding-bottom: 0;
  font-size: 0.725rem;
  margin-top: 1rem;
}

.message .section__inner {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 6rem;
  position: relative;
}
.message .section__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-image: url(../img/message_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80%;
  height: 100%;
  z-index: 0;
}
.message .section__title {
  left: 0;
}
.message__title {
  color: var(--main-color);
  font-size: clamp(1.5rem, 2.25vw, 31px);
  margin-bottom: 1.4em;
  margin-bottom: 1.4em;
}
.message__text {
  padding-bottom: 1.25em;
}
.message__text-area {
  font-size: 1.15rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.message__name {
  color: var(--main-color);
  font-size: clamp(1.2rem, 1.5vw, 23px);
  font-weight: bold;
  margin-top: 1.15em;
}

.company .section__inner {
  padding-top: 4.5rem;
}
.company .section__title {
  text-align: center;
  left: 0;
  letter-spacing: 0.1em;
}
.company .section__title-jp {
  color: var(--main-color);
}
.company .section__title-jp::before {
  content: none;
}
.company .section__title-area {
  justify-content: center;
}
.company__table {
  width: 100%;
  margin: 0 auto;
  max-width: 815px;
}
.company__row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  padding: 1.5rem 2.5rem;
  gap: 0.25rem 16%;
}
.company__row:last-child {
  border-bottom: unset;
}
@media screen and (max-width: 781px) {
  .company__row {
    flex-direction: column;
    padding: 0.85rem 1rem;
  }
}
.company__midashi {
  width: 8em;
  font-weight: 400;
}

.membership .section__inner {
  padding-top: 5rem;
}
.membership__section {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.membership__section-title {
  color: var(--main-color);
  padding-bottom: 1.25em;
  font-size: 1.35rem;
  font-weight: bold;
}
.membership__flow-image {
  margin-bottom: 3rem;
}
.membership__price-list {
  display: flex;
  gap: 3rem 4%;
  justify-content: space-between;
}
@media screen and (max-width: 781px) {
  .membership__price-list {
    flex-direction: column;
  }
}
.membership__price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.membership__price-body {
  border: 1px solid var(--main-color);
  padding: 8% 10%;
  height: 100%;
}
@media screen and (max-width: 781px) {
  .membership__price-body {
    aspect-ratio: auto;
    padding: 2rem 1rem;
  }
}
.membership__price-title {
  color: var(--main-color);
  text-align: center;
  margin-bottom: 0.85em;
  font-size: min(5vw, 1.5rem);
}
.membership__price-text {
  padding-bottom: 0;
}
.membership__price-text span {
  display: block;
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
.membership__price-text span:nth-child(n+2) {
  margin-top: 1em;
}
@media screen and (max-width: 781px) {
  .membership__price-text span {
    font-size: 1.1rem;
  }
}
.membership__price-button.btn--link {
  padding: 1.05em 3em;
  margin-top: 1.25rem;
}
.membership__note {
  border: 1px solid var(--main-color);
  padding: 3% 2%;
  margin-top: 4.85rem;
}
.membership__note p {
  padding-bottom: 0.5em;
}
.membership__note-title {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.membership__note-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.membership__note-list:last-child {
  margin-bottom: 0;
}
.membership__description, .membership__statute {
  padding-bottom: 0;
  margin-top: 2rem;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.btn--link {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  padding: 0.5em 3em;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  position: relative;
}
.btn--link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1.25rem;
  aspect-ratio: 1;
  width: 2em;
  background-image: url(../img/btn_arrow-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn--link:hover {
  background-color: #fff;
  color: var(--main-color);
  opacity: 1;
}
.btn--link:hover:after {
  background-image: url(../img/btn_arrow.png);
}
@media screen and (max-width: 781px) {
  .btn--link:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .btn--link:hover:after {
    background-image: url(../img/btn_arrow-white.png);
  }
}
.btn--link-white {
  background-color: #fff;
  color: var(--main-color);
}
.btn--link-white:after {
  background-image: url(../img/btn_arrow.png);
}
.btn--link-white:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btn--link-white:hover:after {
  background-image: url(../img/btn_arrow-white.png);
}
@media screen and (max-width: 781px) {
  .btn--link-white:hover {
    background-color: #fff;
    color: var(--main-color);
  }
  .btn--link-white:hover:after {
    background-image: url(../img/btn_arrowe.png);
  }
}
/*# sourceMappingURL=style.css.map */