@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-footer-bg: #fff;
  --text-black:#000;
  --main-gray-color:#F4F4F4;
  --gray02:#DCDCDC;
  --color-primary:#478FE4;
  --color-secondary:#FAF6F0;
  --color-danger:#ff0000;
  --font-langJa:"Zen Maru Gothic", sans-serif;
  --font-langEn: "Zen Maru Gothic", sans-serif;
  --font-langNum: "Zen Maru Gothic", sans-serif;
  --pc-width:1920;
  --contents-width:1080;
  --contents-width-px:calc(var(--contents-width) * 1px);
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--font-langJa);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black);
  background-color: #fff;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: optimizeLegibility;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

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

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img, svg {
  max-width: 100%;
  height: auto;
}

[class$=-thumb] img {
  width: 100%;
  height: auto;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: var(--contents-width-px);
}
@media (max-width: 767px) {
  .l-inner {
    width: 87%;
  }
}
.l-inner.--small {
  max-width: 602px;
}
.l-inner.--medium {
  max-width: 936px;
}
.l-inner.--large {
  max-width: 1300px;
}
.l-inner.--fluid {
  width: 100%;
  max-width: 100%;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
}

/**********************
* utility
**********************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-link {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.u-link:hover, .u-link:active, .u-link:focus {
  text-decoration: none;
}

.u-maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}

.u-gothic {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-fwb {
  font-weight: 700;
}

.u-red {
  color: #FF0000;
}

.u-theme-color {
  color: var(--color-primary);
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: rgba(71, 143, 228, 0.15);
}

.bg-beige {
  background-color: #F9F6F0;
}

.bg-gray {
  background-color: #DCDCDC;
}

.bg-theme-color {
  background-color: var(--color-primary);
}

.bg-secondary-color {
  background-color: var(--color-secondary);
}

.u-upcs {
  text-transform: uppercase;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt30 {
  margin-top: 30px;
}

/**********************
* header
***********************/
.l-header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  padding: 0px;
  border-radius: 0px 0px 20px 20px;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .l-header {
    height: 70px;
    border-radius: 0px 0px 20px 20px;
    background: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  gap: 0 4%;
}
.header-logo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header-logo {
    justify-content: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
    box-shadow: none;
    height: auto;
  }
}

.header-logo__link {
  position: relative;
  display: block;
  width: 123px;
  height: 58px;
}
.header-logo__link:hover, .header-logo__link:focus {
  opacity: 0.6;
}

/**********************
* PC header
**********************/
.header-nav__pc {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
  height: 92px;
}
.header-nav__pc .gnav {
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.8rem;
  line-height: calc(23 / 20);
  font-weight: 700;
  gap: 0.5em 1.25em;
}
.header-nav__pc .gnav__link {
  position: relative;
  padding-right: 1em;
  display: block;
}
.header-nav__pc .gnav__link::after {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  -webkit-mask-image: url(../img/common/arrow_down.svg);
          mask-image: url(../img/common/arrow_down.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
}
.header-nav__pc .gnav__link:hover, .header-nav__pc .gnav__link:focus {
  opacity: 0.6;
}
.header-nav__pc .gnav-sns {
  display: flex;
  padding: 0 1em;
  gap: 0 16px;
}
.header-nav__pc .gnav-sns__link {
  display: block;
  width: 38px;
}
.header-nav__pc .header-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 70px;
  height: 100%;
  font-size: 2rem;
  line-height: calc(23 / 20);
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--color-primary);
}
.header-nav__pc .header-contact__link span {
  position: relative;
  width: 30px;
}

@media (max-width: 1024px) {
  .header-nav__pc {
    display: none;
  }
}
/****
* ヘッダーのSNS
*****************/
.header-gnav-sns {
  display: none;
}
@media (max-width: 1024px) {
  .header-gnav-sns {
    margin-right: 70px;
    display: flex;
    justify-content: center;
    padding: 0 1em;
    gap: 0 16px;
  }
  .header-gnav-sns .gnav-sns__link {
    display: block;
    width: 38px;
    aspect-ratio: 1/1;
  }
  .header-gnav-sns .gnav-sns__link img {
    width: 100%;
    height: auto;
  }
}

/*****
* SP drawer
**********************/
.header-nav__sp {
  display: none;
}

.header-nav__sp {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .header-nav__sp {
    display: flex;
  }
}
.header-nav__sp .gnav {
  margin-top: 70px;
  display: block;
  width: 100%;
  padding: 0 2em;
}
.header-nav__sp .gnav__item {
  padding: 0 1em 0 0;
  width: 100%;
  display: flex;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  flex-direction: column;
}
.header-nav__sp .gnav__item:nth-child(n+2) {
  margin-top: 40px;
}
.header-nav__sp .gnav__link {
  position: relative;
  display: block;
  padding: 0 1em 0 0;
}
.header-nav__sp .gnav__link span {
  position: relative;
  padding-right: 2em;
}
.header-nav__sp .gnav__link span::after {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
}
.header-nav__sp .gnav__link:hover, .header-nav__sp .gnav__link:focus, .header-nav__sp .gnav__link:active {
  opacity: 0.6;
}
.header-nav__sp .header-contact__link {
  margin: 40px auto 0;
  padding: 0.5em 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: auto;
  font-size: 2rem;
  line-height: calc(23/20);
  font-weight: 700;
  background-color: var(--color-primary);
  border-radius: 10px;
}
.header-nav__sp .header-contact__link span {
  position: relative;
  width: 30px;
}

/* メニュー表示設定*/
.header-nav__sp {
  position: fixed;
  top: 68px;
  right: 0;
  color: var(--text-black);
  background-color: #fff;
  width: 100%;
  max-width: 410px;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header-nav__sp {
    max-width: 100%;
  }
}

.is-drawerActive .header-nav__sp {
  opacity: 1;
  visibility: visible;
}

/* ハンバーガーメニュー*/
.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    position: fixed;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    border-radius: 0 0 20px 0;
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .hamburger .icon {
    position: relative;
    margin-left: 2px;
    display: block;
    width: 30px;
    height: 18px;
  }
  .hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: #fff;
    height: 2px;
  }
  .hamburger__line:after,
.hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .hamburger__line:after {
    width: calc(21/ 30  *100%);
  }
  .hamburger__line:before {
    top: -8px;
  }
  .hamburger__line:after {
    top: 8px;
  }
  .is-drawerActive .hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .hamburger__line:after,
.is-drawerActive .hamburger__line:before {
    top: 0;
    background-color: #fff;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .hamburger__line:after {
    transform: rotate(45deg);
    width: 100%;
  }
  .is-drawerActive .hamburger {
    border-radius: 0;
  }
  .is-drawerActive .hamburger .text {
    margin: 0;
    width: 0;
    opacity: 0;
  }
  .is-drawerActive .l-header {
    box-shadow: none;
    border-radius: 0;
  }
}
/**********************
* footer
***********************/
.l-footer {
  background-color: #fff;
}

.footer-grid {
  padding: 50px 0 40px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 20px 20px;
  grid-template-areas: "g01 g02 g03 g05" "g01 g02 g04 g04";
}
@media (max-width: 767px) {
  .footer-grid {
    padding: 30px 0 40px;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
    gap: 30px 30px;
    grid-template-areas: "g01 g01" "g02 g02" "g03 g05" "g04 g04";
  }
}
.footer-grid .g01 {
  grid-area: g01;
}
.footer-grid .g02 {
  grid-area: g02;
}
.footer-grid .g03 {
  grid-area: g03;
}
.footer-grid .g04 {
  grid-area: g04;
}
.footer-grid .g05 {
  grid-area: g05;
}

.footer-logo {
  position: relative;
}
@media (max-width: 767px) {
  .footer-logo::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    display: block;
    width: calc(80/ 328  *100%);
    aspect-ratio: 80/112;
    background: url(../img/top/news_illust01.svg) no-repeat center/contain;
  }
}

.footer-logo__link {
  width: 161px;
  display: block;
}

.footer-gnav {
  margin-left: auto;
  display: flex;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer-gnav {
    margin: 0;
  }
}

.footer-gnav__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5em;
  max-width: 274px;
}

.footer-gnav__item {
  position: relative;
}
.footer-gnav__item:nth-child(n+2) {
  margin-top: 1.5em;
}

.footer-gnav__link {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.14;
}
.footer-gnav__link:hover, .footer-gnav__link:focus {
  opacity: 0.8;
}
.footer-gnav__link::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
}

.footer-sns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 20px;
}
.footer-sns .footer-sns__link {
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
}
.footer-sns .footer-sns__link img {
  width: 100%;
  height: auto;
}

.footer-submenu__list {
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-submenu__list {
    justify-content: flex-start;
  }
}

.footer-submenu__link {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
}
@media (max-width: 767px) {
  .footer-submenu__link {
    font-size: 1.8rem;
  }
}
.footer-submenu__link:hover, .footer-submenu__link:focus {
  opacity: 0.8;
}

.footer-contact__link {
  margin: 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  color: #fff;
  width: 108px;
  height: auto;
  font-size: 2rem;
  line-height: calc(23/20);
  font-weight: 700;
  background-color: var(--color-primary);
  border-radius: 60px;
  text-transform: uppercase;
}
.footer-contact__link span {
  display: inline-block;
  position: relative;
  width: 30px;
}

/* コピーライト*/
.c-copy {
  padding-top: 26px;
  padding-bottom: 128px;
  border-top: 1px solid #707070;
}

.c-copy-text {
  text-align: center;
}

/**********************
* common
***********************/
.c-title01-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--color-primary);
}

.c-title01 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-title01-en {
  position: relative;
  font-size: 5rem;
  font-size: clamp(3rem,3.57vw,5rem);
  font-weight: 700;
  padding-left: calc(8/5 * 1em);
  line-height: 1;
}
.c-title01-en::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(65/50 * 1em);
  height: auto;
  aspect-ratio: 65/23;
  -webkit-mask-image: url(../img/common/title_icon.svg);
          mask-image: url(../img/common/title_icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-title01-en.--small {
  font-size: 2.8rem;
}

.c-title01-ja {
  padding-top: 0.5em;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2rem,1.78vw,2.5rem);
  font-weight: 500;
}

.c-title02 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(3rem,2.85vw,4rem);
  text-align: center;
  color: var(--color-primary);
}
.c-title02.--large {
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.9;
  font-size: clamp(4rem,3.57vw,5rem);
}
.c-title02.--large small {
  font-size: calc(35 / 50 * 100%);
}
.c-title02 span {
  position: relative;
  display: inline-block;
  padding: 0 1em;
}
.c-title02 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 0.5em;
  aspect-ratio: 20/28;
  background: url(../img/common/line_left.svg) no-repeat center/contain;
}
.c-title02 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 0.5em;
  aspect-ratio: 20/28;
  background: url(../img/common/line_right.svg) no-repeat center/contain;
}

@media (max-width: 767px) {
  .c-title02 {
    font-size: min(7.2vw,27px);
  }
  .c-title02.--large {
    font-size: min(8vw,30px);
  }
}
.c-subtitle01 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  min-height: 1.9333333333em;
}
@media (max-width: 767px) {
  .c-subtitle01 {
    font-size: 2.4rem;
  }
}
.c-subtitle01.icon-ig {
  position: relative;
  padding-left: 75px;
}
@media (max-width: 767px) {
  .c-subtitle01.icon-ig {
    padding-left: 55px;
  }
}
.c-subtitle01.icon-ig::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: calc(58/30 * 1em);
  aspect-ratio: 1/1;
  background: url(../img/common/title_icon_instagram.svg) no-repeat center/contain;
}
.c-subtitle01.icon-youtube {
  position: relative;
  padding-left: 75px;
}
@media (max-width: 767px) {
  .c-subtitle01.icon-youtube {
    padding-left: 55px;
  }
}
.c-subtitle01.icon-youtube::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: calc(58/30 * 1em);
  aspect-ratio: 1/1;
  background: url(../img/common/title_icon_youtube.svg) no-repeat center/contain;
}

.c-button01 {
  position: relative;
  display: flex;
  padding: 1.25em 2em 1.25em 2.5em;
  color: #fff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-button01::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-image: url(../img/common/btn_icon_arrow.svg);
          mask-image: url(../img/common/btn_icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-button01:hover, .c-button01:focus {
  color: var(--color-primary);
  background-color: #fff;
}
.c-button01:hover::after, .c-button01:focus::after {
  background-color: var(--color-primary);
}

.c-text01 {
  font-size: 2.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .c-text01 {
    font-size: 2rem;
    line-height: 1.75;
  }
}

.c-text02 {
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-text02 {
    font-size: 2rem;
    line-height: 1.75;
  }
}

.c-page-title {
  font-size: 4.5rem;
  font-size: clamp(3rem,3.21vw,4.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 767px) {
  .c-page-title {
    font-size: min(8vw,30px);
  }
}

.c-list01 li {
  position: relative;
  padding-left: 1.5em;
}
.c-list01 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-list02 {
  counter-reset: number 0;
}
.c-list02 li {
  position: relative;
  padding-left: 1em;
}
.c-list02 li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
}

.c-dl01 {
  display: flex;
  flex-wrap: wrap;
}
.c-dl01 dt {
  margin-top: 1em;
  width: 4em;
  font-weight: 700;
  color: var(--color-primary);
}
.c-dl01 dd {
  margin-top: 1em;
  padding-left: 1em;
  position: relative;
  width: calc(100% - 4em);
}
.c-dl01 dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: var(--color-primary);
  width: 1px;
  height: 80%;
  z-index: 1;
}

/**************
* card
***************/
.event-list {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px min(50px, 50/1080 * 100%);
}
@media (max-width: 767px) {
  .event-list {
    margin-top: 60px;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
}

.event-card__link {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.event-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 10px;
}

.event-card__body.lay02 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 10px 0px;
  grid-template-areas: "event-card__date event-card__area" "event-card__title event-card__title" "event-card__tag event-card__tag";
}
.event-card__body.lay02 .event-card__date {
  grid-area: event-card__date;
}
.event-card__body.lay02 .event-card__area {
  grid-area: event-card__area;
}
.event-card__body.lay02 .event-card__title {
  grid-area: event-card__title;
}
.event-card__body.lay02 .event-card__tag {
  grid-area: event-card__tag;
}

.event-card__title {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.event-card__date {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-primary);
}

.event-card__thumb {
  aspect-ratio: 328/250;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .event-card__thumb {
    aspect-ratio: 328/200;
  }
}
.event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out transform;
}

.event-card__category {
  position: absolute;
  left: 0;
  top: -0.75em;
  z-index: 2;
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 20px;
  color: #fff;
  background-color: var(--color-primary);
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.14;
}
.event-card__area {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.025em;
  color: #999999;
  font-family: "Noto Sans JP", sans-serif;
}

.event-card__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
.event-card__tag li {
  padding: 0 1em;
  color: #928471;
  background-color: #F9F6F0;
  border: 1px solid #928471;
  border-radius: 2px;
}

.event-card__link:hover img, .event-card__link:focus img {
  transform: scale(1.05);
}

/**************
* topics
***************/
.topics-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px calc(48 / 1084 * 100%);
}
@media (max-width: 767px) {
  .topics-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 0;
  }
}

.topics-card {
  position: relative;
  padding: 40px 4% 50px;
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  background: #fff;
}

.topics-card__link {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.topics-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.topics-card__title {
  font-size: 2rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.topics-card__thumb {
  position: relative;
  aspect-ratio: 454/250;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .topics-card__thumb {
    border-radius: 10px;
  }
}
.topics-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out transform;
}

.topics-card__category {
  position: absolute;
  left: 4%;
  top: 1.5em;
  z-index: 2;
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 20px;
  color: #fff;
  background-color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.14;
  text-transform: capitalize;
}

.topics-card__link:hover img, .topics-card__link:focus img {
  transform: scale(1.05);
}

/******************
* news
*******************/
.news-card__link {
  padding: 1.75em 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.news-card__title {
  position: relative;
  padding-left: 1em;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  width: calc(100% - 5em);
  border-left: dotted 1px var(--color-primary);
  flex-shrink: 0;
}

.news-card__date {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  width: 5em;
}

@media (max-width: 767px) {
  .news-card__link {
    padding: 1.75em 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .news-card__title {
    padding-left: 0;
    font-size: 1.8rem;
    line-height: 1.66;
    width: 100%;
    border-left: none;
  }
  .news-card__date {
    width: 100%;
  }
}
/*************************
* TOP
**************************/
.c-sec-top {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .c-sec-top {
    padding: 50px 0;
  }
}

/*mv*/
.mv {
  padding-top: 146px;
  padding-bottom: 48px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mv {
    padding-top: 128px;
    padding-bottom: 85px;
  }
}

.mv-title {
  margin: 0 auto;
}

.mv-pickup {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .mv-pickup {
    margin-top: 10px;
    align-items: center;
  }
}

.mv-pickup__img {
  width: 218px;
}
@media (max-width: 767px) {
  .mv-pickup__img {
    width: 131px;
  }
}
.mv-pickup__img img {
  width: 100%;
  height: auto;
}

.mv-slider-outer {
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mv-slider-outer {
    margin-top: 20px;
  }
}
.mv-slider-outer .swiper.mv-swiper {
  overflow: hidden;
}

.mv-slide__link {
  width: 100%;
  transform-origin: center;
  aspect-ratio: 1370/553;
}
@media (max-width: 767px) {
  .mv-slide__link {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
}

/* scale用の中間ラッパー（safari対策）*/
.mv-slide__scale-wrap {
  transform: scale(0.8);
}
@media (max-width: 767px) {
  .mv-slide__scale-wrap {
    transform: scale(1);
  }
}

.mv-slide__thumb {
  width: 100%;
  aspect-ratio: 1370/553;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mv-slide__thumb {
    aspect-ratio: 328/200;
  }
}
.mv-slide__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-slide__body {
  display: none;
  padding: 40px min(20px, 4%);
  background-color: rgba(71, 143, 228, 0.15);
  border-radius: 20px;
  width: calc(355/1370 * 100%);
  text-align: center;
}
.mv-slide__body::before {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0px 15px 20px;
  border-color: transparent transparent transparent rgba(71, 143, 228, 0.15);
}
@media (max-width: 767px) {
  .mv-slide__body {
    margin-top: 24px;
    display: block;
    width: 100%;
    padding: 20px min(26px, 6.5%);
  }
  .mv-slide__body::before {
    top: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0px 15px 20px 15px;
    border-color: transparent transparent rgba(71, 143, 228, 0.15) transparent;
  }
}

.mv-slide__title {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.37;
  font-size: clamp(2.5rem,2.28vw,3.2rem);
  text-align: center;
  color: var(--color-primary);
  border-bottom: 1px solid #000;
}
.mv-slide__title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
@media (max-width: 767px) {
  .mv-slide__title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-size: min(6.66vw,25px);
  }
}

.slide-event__period .date {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.11;
  font-size: clamp(4rem,3.21vw,4.5rem);
}
@media (max-width: 767px) {
  .slide-event__period .date {
    font-size: min(10.66vw,40px);
  }
}
.slide-event__period .week {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.04;
  font-size: clamp(1.8rem,1.57vw,2.2rem);
}
@media (max-width: 767px) {
  .slide-event__period .week {
    font-size: min(4.8vw,18px);
  }
}

.slide-event__info {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.16;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  max-height: 5.8333333333em;
}
@media (max-width: 767px) {
  .slide-event__info {
    font-size: min(4.26vw,16px);
    max-height: auto;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .slide-event__info:has(dt) {
    display: flex;
    flex-wrap: wrap;
  }
  .slide-event__info:has(dt) dt {
    width: 5em;
    text-align: left;
  }
  .slide-event__info:has(dt) dd {
    text-align: left;
    width: calc(100% - 5em);
  }
}

.mv-slide__item:not(.swiper-slide-visible) a {
  pointer-events: none;
  opacity: 0.3;
}

/* アクティブのスライド */
.mv-slide__item.swiper-slide-active .mv-slide__scale-wrap {
  transform: scale(1);
}
.mv-slide__item.swiper-slide-active .mv-slide__link {
  width: 100%;
  aspect-ratio: 1370/553;
  display: flex;
  justify-content: space-between;
}
.mv-slide__item.swiper-slide-active .mv-slide__link img {
  transform: scale(1);
  transition: 0.3s ease-in-out transform;
}
.mv-slide__item.swiper-slide-active .mv-slide__link:hover img, .mv-slide__item.swiper-slide-active .mv-slide__link:focus img {
  transform: scale(1.05);
}
.mv-slide__item.swiper-slide-active .mv-slide__thumb {
  width: calc(944/1370 * 100%);
}
.mv-slide__item.swiper-slide-active .mv-slide__body {
  display: block;
  position: relative;
  width: calc(355/1370 * 100%);
}
@media (max-width: 767px) {
  .mv-slide__item.swiper-slide-active .mv-slide__thumb, .mv-slide__item.swiper-slide-active .mv-slide__body {
    width: 100%;
  }
  .mv-slide__item.swiper-slide-active .mv-slide__body {
    margin-top: 24px;
  }
}

/* スライドの矢印、ナビ　*/
.mv-slider-controller {
  position: relative;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv-slider-controller .slide-button01-next,
.mv-slider-controller .slide-button01-prev {
  width: 20px;
  height: 20px;
  z-index: 2;
  cursor: pointer;
  opacity: 1;
  -webkit-mask-image: url(../img/top/slide_arrow_right.svg);
          mask-image: url(../img/top/slide_arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #478FE4;
}
.mv-slider-controller .slide-button01-prev {
  -webkit-mask-image: url(../img/top/slide_arrow_left.svg);
          mask-image: url(../img/top/slide_arrow_left.svg);
}
.mv-slider-controller .slide-button01-next:hover,
.mv-slider-controller .slide-button01-prev:hover {
  opacity: 0.5;
}
.mv-slider-controller .slide-button01-next.swiper-button-disabled,
.mv-slider-controller .slide-button01-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
@media (max-width: 767px) {
  .mv-slider-controller {
    margin: 20px auto 0;
  }
  .mv-slider-controller .slide-button01-next,
.mv-slider-controller .slide-button01-prev {
    width: 8px;
    height: 8px;
  }
}

/* ページネーション　*/
.mv-pagination {
  position: static;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv-pagination .swiper-pagination-bullet {
  margin: 0 20px !important;
  width: 16px !important;
  height: 16px !important;
}
.mv-pagination .swiper-pagination-bullet {
  background-color: rgba(71, 143, 228, 0.5);
}
.mv-pagination .swiper-pagination-bullet-active {
  background-color: #478fe4;
}

@media (max-width: 767px) {
  .mv-pagination .swiper-pagination-bullet {
    margin: 0 8px 4px !important;
    width: 5px !important;
    height: 5px !important;
  }
}
/* about */
.top-about {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .top-about {
    padding-top: 30px;
  }
}

.about-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-title__img01 {
  aspect-ratio: 194/162;
}

.about-title__img02 {
  aspect-ratio: 127/142;
}

.about-title__img03 {
  margin: 40px auto 0;
  width: calc(256/328 * 100%);
}
.about-title__img03 img {
  width: 100%;
  height: auto;
}

.about-text {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about-text {
    margin-top: 15px;
  }
}

/* event */
.top-event {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .top-event {
    padding: 50px 0;
  }
}

.top-event-title {
  align-items: center;
}

.top-event-title__img01 {
  width: 256px;
  height: 129px;
}
.top-event-title__img01 img {
  width: 100%;
  height: auto;
}

.top-event-more {
  margin: 65px auto 0;
  max-width: 246px;
}
@media (max-width: 767px) {
  .top-event-more {
    margin-top: 30px;
  }
}

/* search */
.top-search-more {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 0 4%;
}

.top-search-button01 {
  position: relative;
  display: flex;
  padding: 1.5em 1em 1.5em 2em;
  align-items: center;
  width: 100%;
  max-width: 436px;
  min-height: 5em;
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(3/2);
  text-align: center;
  color: #fff;
  background-color: #52D1FA;
  border-radius: 60px;
  overflow: hidden;
}
.top-search-button01::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  aspect-ratio: 173/117;
  width: calc(173/ 436  *100%);
  background: url(../img/top/eventmeeting_illust01.svg) no-repeat center/contain;
  pointer-events: none;
}
.top-search-button01:hover, .top-search-button01:focus {
  opacity: 0.6;
}

.top-search-button02 {
  position: relative;
  display: flex;
  padding: 1.5em 1em 1.5em 2em;
  align-items: center;
  width: 100%;
  max-width: 436px;
  min-height: 5em;
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(3/2);
  text-align: center;
  color: #fff;
  background-color: #FF8F8F;
  border-radius: 60px;
  overflow: hidden;
}
.top-search-button02::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  aspect-ratio: 140/121;
  width: calc(140/ 436  *100%);
  background: url(../img/top/eventmeeting_illust02.svg) no-repeat center/contain;
  pointer-events: none;
}
.top-search-button02:hover, .top-search-button02:focus {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .top-search-more {
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
  }
  .top-search-button01 {
    padding-left: 4rem;
  }
  .top-search-button01::before {
    right: 11%;
    width: calc(148/ 328  *100%);
  }
  .top-search-button02 {
    padding: 0.75em 1em 0.75em 3rem;
  }
  .top-search-button02::before {
    right: 6%;
    width: calc(122/ 328  *100%);
  }
}
/* sns */
@media (max-width: 767px) {
  .top-sns {
    padding-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .top-sns-title__img01 {
    width: calc(134/ 328  *100%);
  }
}
.top-sns-title__img01 img {
  width: 100%;
  height: auto;
}

.subtitle-top-youtube {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .subtitle-top-youtube {
    margin-top: 0;
  }
}

.youtube-swiper-outer {
  padding: 50px 0 50px;
  background: #FFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 52%, rgb(71, 143, 228) 52%, rgb(71, 143, 228) 100%);
}
@media (max-width: 767px) {
  .youtube-swiper-outer {
    padding: 30px 4% 30px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 42%, rgb(71, 143, 228) 42%, rgb(71, 143, 228) 100%);
  }
}

.youtube-slide__link {
  padding: 40px min(32 / 520 * 100%, 32px);
  display: flex;
  flex-direction: column-reverse;
  background-color: #fff;
  border-radius: 20px;
}
.youtube-slide__link:hover img, .youtube-slide__link:focus img {
  transform: scale(1.05);
}
.youtube-slide__link:hover .youtube-slide__title, .youtube-slide__link:focus .youtube-slide__title {
  color: var(--color-primary);
}

.youtube-slide__thumb {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .youtube-slide__thumb {
    border-radius: 10px;
  }
}

.youtube-slide__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out transform;
}

.youtube-slide__body {
  padding-top: 1em;
}

.youtube-slide__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  min-height: 3em;
}
@media (max-width: 767px) {
  .youtube-slide__title {
    font-size: 1.8rem;
  }
}

.youtube-slide__text {
  margin-top: 0.5em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.38;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .youtube-slide__text {
    font-size: 1.6rem;
  }
}

/* スライドの矢印　*/
.youtube-list-controller {
  position: relative;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.youtube-list-controller .slide-button-next,
.youtube-list-controller .slide-button-prev {
  color: #fff;
  bottom: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 1;
  -webkit-mask-image: url(../img/top/slide_arrow_right.svg);
          mask-image: url(../img/top/slide_arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}
.youtube-list-controller .slide-button-prev {
  -webkit-mask-image: url(../img/top/slide_arrow_left.svg);
          mask-image: url(../img/top/slide_arrow_left.svg);
}
.youtube-list-controller .slide-button-next:hover,
.youtube-list-controller .slide-button-prev:hover {
  opacity: 0.5;
}
.youtube-list-controller .slide-button-next.swiper-button-disabled,
.youtube-list-controller .slide-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
@media (max-width: 767px) {
  .youtube-list-controller {
    margin: 20px auto 0;
  }
  .youtube-list-controller .slide-button-next,
.youtube-list-controller .slide-button-prev {
    width: 8px;
    height: 8px;
  }
}

/* ページネーション　*/
.youtube-pagination {
  position: static;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.youtube-pagination .swiper-pagination-bullet {
  margin: 0 20px !important;
  width: 16px !important;
  height: 16px !important;
}
@media (max-width: 767px) {
  .youtube-pagination .swiper-pagination-bullet {
    margin: 0 10px !important;
    width: 8px !important;
    height: 8px !important;
  }
}
.youtube-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}
.youtube-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

@media (max-width: 767px) {
  .youtube-pagination .swiper-pagination-bullet {
    margin: 0 8px 4px !important;
    width: 5px !important;
    height: 5px !important;
  }
}
/* スライド非活性時　*/
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) {
  padding: 0;
}
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) .youtube-slide {
  display: flex;
  justify-content: center;
  gap: 0 48px;
}
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) .youtube-slide__item {
  width: calc(100% / 5);
}
@media (max-width: 767px) {
  .youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) .youtube-slide__item {
    width: 100%;
  }
}
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) + .youtube-list-controller .slide-button-prev,
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) + .youtube-list-controller .slide-button-next {
  display: none;
}
.youtube-swiper-outer .youtube-swiper:not(.swiper-initialized) + .youtube-list-controller .youtube-pagination {
  display: none;
}

/* ig */
.subtitle-top-ig {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .subtitle-top-ig {
    margin-top: 50px;
  }
}

.ig-list {
  margin-top: 40px;
}
.ig-list #sb_instagram .sbi_photo_wrap {
  border-radius: 20px;
  overflow: hidden;
}

.ig-card {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}

.ig-card__link {
  display: block;
  aspect-ratio: 350/425;
}
.ig-card__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* new topics */
.top-topics-title__img01 {
  width: 255px;
}
.top-topics-title__img01 img {
  width: 100%;
  height: auto;
}

.topics-button {
  margin: 50px auto 0;
  max-width: 246px;
}
@media (max-width: 767px) {
  .topics-button {
    margin-top: 30px;
  }
}

/* news */
.top-news-title {
  align-items: center;
}

.top-news-title__img01 {
  width: 105px;
}
.top-news-title__img01 img {
  width: 100%;
  height: auto;
}

/***********************
* breadcrumb list
************************/
.breadcrumb {
  padding: 1.25em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.025em;
}
.breadcrumb li {
  display: flex;
  margin-right: 0;
}
.breadcrumb li a {
  position: relative;
  display: block;
  color: #000;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  text-decoration: underline;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  margin-top: 0.5em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: #6C6C6C;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/common/arrow_right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.breadcrumb li:last-child {
  color: var(--color-primary);
}

/***********************
* 一覧 
************************/
.page {
  padding-top: 220px;
}
@media (max-width: 767px) {
  .page {
    padding-top: 110px;
  }
}

.page-title-archive {
  padding: 108px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .page-title-archive {
    padding: 50px 0 20px;
  }
}

.c-page-title__img {
  width: 256px;
  aspect-ratio: 256/129;
}
@media (max-width: 767px) {
  .c-page-title__img {
    width: 40%;
    max-width: 225px;
  }
}
.c-page-title__img img {
  width: 100%;
  height: auto;
}

.archive-category {
  padding: 30px 0 50px;
}

.archive-category__title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.category-list {
  margin: 30px auto 0;
  width: 92%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.category-item {
  display: flex;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.025em;
  filter: drop-shadow(2.76px 2.76px 2.76px rgba(0, 0, 0, 0.2));
}
@media (max-width: 767px) {
  .category-item {
    font-size: 1.5rem;
  }
}
.category-item.is-current {
  background: #FFF;
  color: var(--color-primary);
}
.category-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em 1em;
  text-align: center;
}

.archive-contents {
  padding: 64px 0 0;
  background: #FFF;
}
.archive-contents .event-list {
  margin-top: 0;
}

.event-archive-pagination {
  margin-top: 50px;
  padding: 40px 0;
  background: rgb(250, 246, 240);
}

/*************************
* pagination
**************************/
.archivelist + .c-pagination {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .archivelist + .c-pagination {
    margin-top: 50px;
  }
}

.c-pagination {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}
.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #7EB0EC;
  background-color: #fff;
  border: 1px solid #7eb0ec;
  transition: background-color 0.3s ease-in-out;
  transition-property: background-color, color, border;
  text-align: center;
  font-weight: 400;
  border-radius: 50%;
}
.c-pagination .navigation.pagination .nav-links .page-numbers:focus, .c-pagination .navigation.pagination .nav-links .page-numbers:active, .c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: #fff;
  background-color: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: #7EB0EC;
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.current:active, .c-pagination .navigation.pagination .nav-links .page-numbers.current:hover {
  background-color: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  color: #fff;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next svg,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev svg {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  padding-bottom: 0.25em;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev svg path {
  stroke: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus svg path, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active svg path, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover svg path {
  stroke: #fff;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next #arrow_left,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev #arrow_left {
  width: 16px;
  height: auto;
  display: block;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next #arrow_right,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev #arrow_right {
  width: 16px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .c-pagination .navigation.pagination .nav-links .page-numbers {
    display: inline-block;
    margin: 0 2px;
  }
}
/***********************
* 詳細
************************/
.post-wrap {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .post-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.post-header {
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "post-date post-category" "post-area post-area" "post-title post-title" "post-subtitle post-subtitle";
}
.post-header .post-date {
  grid-area: post-date;
}
.post-header .post-category {
  grid-area: post-category;
}
.post-header .post-title {
  grid-area: post-title;
}
.post-header .post-area {
  grid-area: post-area;
}
.post-header .post-subtitle {
  grid-area: post-subtitle;
}

.post-date {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .post-date {
    font-size: 1.8rem;
  }
}

.post-category span {
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 20px;
  color: #fff;
  background-color: var(--color-primary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.14;
}
@media (max-width: 767px) {
  .post-category span {
    font-size: 1.6rem;
  }
}

.post-area {
  margin-top: 20px;
  display: flex;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .post-area {
    font-size: 1.4rem;
  }
}
.post-area dt {
  display: inline-block;
  padding: 0.15em 1em;
  border-radius: 20px;
  color: #fff;
  font-weight: 400;
  background-color: #999999;
}
.post-area dd {
  padding-left: 0.5em;
  color: #999999;
}

.post-title {
  margin-top: 36px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .post-title {
    margin-top: 30px;
    font-size: 2.4rem;
  }
}

.post-subtitle {
  margin-top: 0.25em;
  font-size: 2.3rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .post-subtitle {
    font-size: 1.7rem;
  }
}

.post-thumb {
  margin-top: 40px;
  aspect-ratio: 1080/607;
  border-radius: 23px;
  overflow: hidden;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-body {
  margin-top: 40px;
  padding: 100px 8% 100px;
  border-radius: 23px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .post-body {
    padding: 50px 8% 50px;
  }
}

.post-info {
  padding: 50px 0 50px;
}
@media (max-width: 767px) {
  .post-info {
    padding: 0;
  }
}

.post-dl {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .post-dl {
    font-size: 1.6rem;
  }
}
.post-dl dt {
  width: 8em;
}
.post-dl dd {
  width: calc(100% - 8em);
}

@media (max-width: 767px) {
  .post-dl dt {
    width: 100%;
  }
  .post-dl dd {
    width: 100%;
  }
}
* + .post-contents {
  margin-top: 50px;
}

.post-contents {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.38;
  line-height: 190%;
  word-break: break-all;
}
.post-contents h2 {
  padding: 0.75em 0.5em;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  text-wrap: wrap;
}
@media (max-width: 767px) {
  .post-contents h2 {
    font-size: 2rem;
  }
}
.post-contents * + h2 {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .post-contents * + h2 {
    margin-top: 40px;
  }
}
.post-contents h3 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  text-wrap: wrap;
}
@media (max-width: 767px) {
  .post-contents h3 {
    font-size: 1.8rem;
  }
}
.post-contents * + h3 {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .post-contents * + h3 {
    margin-top: 40px;
  }
}
.post-contents h4 {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-primary);
}
.post-contents h4:before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
}
.post-contents h5 {
  font-weight: 700;
}
.post-contents b, .post-contents strong {
  font-weight: 700;
}
.post-contents > * + * {
  margin-top: 1.5em;
}
.post-contents p {
  font-size: 1.8rem;
  line-height: 1.38;
}
@media (max-width: 767px) {
  .post-contents p {
    font-size: 1.6rem;
  }
}
.post-contents ul > li {
  position: relative;
  padding-left: 1em;
  font-size: 1.8rem;
  line-height: 1.38;
}
@media (max-width: 767px) {
  .post-contents ul > li {
    font-size: 1.6rem;
  }
}
.post-contents ol > li {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.38;
}
@media (max-width: 767px) {
  .post-contents ol > li {
    font-size: 1.6rem;
  }
}
.post-contents ul > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
  color: inherit;
}
.post-contents ol {
  margin-left: 1.25em;
  list-style-type: decimal;
}
.post-contents a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.post-contents a:hover, .post-contents a:active, .post-contents a:focus {
  text-decoration: none;
}
.post-contents blockquote {
  width: 100%;
  padding: 1em;
  border: 1px solid #000;
}
.post-contents cite {
  display: block;
  color: #7B7B7B;
  font-size: 0.8em;
  text-align: right;
}
.post-contents .line01 {
  background: linear-gradient(transparent 60%, #ffff80 60%);
  font-weight: bold;
  font-size: 110%;
}
.post-contents img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.post-contents .wp-block-button__link {
  position: relative;
  display: flex;
  padding: 1em 5em 1em 2.5em;
  color: #fff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.post-contents .wp-block-button__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-image: url(../img/common/btn_icon_arrow.svg);
          mask-image: url(../img/common/btn_icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.post-contents .wp-block-button__link:hover, .post-contents .wp-block-button__link:focus {
  color: var(--color-primary);
  background-color: #fff;
}
.post-contents .wp-block-button__link:hover::after, .post-contents .wp-block-button__link:focus::after {
  background-color: var(--color-primary);
}

/***********************
* 404
************************/
.p-404-nodata-text {
  padding: 1em 0;
}

/***********************
* totop
************************/
.c-totop {
  position: fixed;
  bottom: 80px;
  right: 4%;
  width: 65px;
  height: 65px;
  z-index: 80;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, visibility;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
}
@media (max-width: 960px) {
  .c-totop {
    width: 48px;
    height: 48px;
  }
}
.c-totop.is-show {
  opacity: 1;
  visibility: visible;
}

/*******************
* modal
*******************/
.is-modal-open {
  overflow: hidden;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}

.modal__header {
  position: fixed;
  right: 4%;
  top: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal__close {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 2.25rem;
  outline: #fff;
  color: #262626;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  padding: 30px 40px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 80vh;
  overflow-y: scroll;
  overflow-x: scroll;
}

.modal_img_group {
  width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=chgScale] {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=chgScale].is-show {
  opacity: 1;
  transform: scale(1);
}