@keyframes more_hover {
  0% {
    scale: 0 1;
  }
  100% {
    scale: 1 1;
  }
}
html {
  letter-spacing: 0.01em;
  font-size: min(0.715vw, 10px);
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #141414;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: min(1.334vw, 10px);
  }
}

body {
  background-color: #f4f4f4;
  letter-spacing: 0.05em;
}

body, h1, h2, h3, h4, p, figure, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s linear;
  cursor: pointer;
}

input, button {
  font: inherit;
  transition: 0.2s linear;
}
input:focus, button:focus {
  transition: none;
}

img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}
img:not([width]) {
  width: 100%;
}
img:not([height]) {
  height: 100%;
}

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

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

.js-animation.fadeIn {
  opacity: 0;
  transition: opacity 0.4s linear;
}
.js-animation.fadeIn.is-animated {
  opacity: 1;
}
.js-animation.slideUpIn {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
.js-animation.slideUpIn.is-animated {
  opacity: 1;
  translate: 0 0;
}

.hover-line > *:not(svg) {
  position: relative;
}
.hover-line > *:not(svg)::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  left: 0;
  right: 0;
  bottom: 1px;
  scale: 0 1;
  transform-origin: left center;
  transition: 0.2s linear;
  pointer-events: none;
}
.hover-line:hover > *:not(svg)::after, a:hover .hover-line > *:not(svg)::after {
  scale: 1 1;
}
a.hover-line {
  position: relative;
}
a.hover-line::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  left: 0;
  right: 0;
  bottom: 1px;
  scale: 0 1;
  transform-origin: left center;
  transition: 0.2s linear;
  pointer-events: none;
}
a.hover-line:hover::after {
  scale: 1 1;
}
a.hover-line:has(*)::after {
  display: none;
}

.more-arrow {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
}
@media (min-width: 769px) {
  .more-arrow {
    column-gap: 0.667em;
    height: 1.334em;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .more-arrow {
    column-gap: 0.75em;
    height: 1.438em;
    font-size: 3.2rem;
  }
}
.more-arrow > span {
  fill: none;
  border-radius: 50%;
  transition: 0.2s linear;
}
@media (min-width: 769px) {
  .more-arrow > span {
    width: 1.334em;
    height: 1.334em;
  }
}
@media (max-width: 768px) {
  .more-arrow > span {
    width: 1.438em;
    height: 1.438em;
  }
}
.more-arrow > p {
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
.more-arrow > p::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  left: 0;
  right: 0;
  bottom: -1px;
  transform-origin: left center;
  pointer-events: none;
}
a:hover > .more-arrow > p::after {
  scale: 0 1;
  animation: more_hover 0.2s linear 0.1s 1 forwards;
}
a.more-arrow:hover > p::after {
  scale: 0 1;
  animation: more_hover 0.2s linear 0.1s 1 forwards;
}

.more-arrow.col1 {
  color: #fff;
}
.more-arrow.col1 > span {
  background: #fdf002;
  stroke: #141414;
}
a:hover > .more-arrow.col1 > span {
  background: #b2243c;
  stroke: #fff;
}
a.more-arrow.col1:hover > span {
  background: #b2243c;
  stroke: #fff;
}

.more-arrow.col2 {
  color: #141414;
}
.more-arrow.col2 > span {
  background: #fdf002;
  stroke: #141414;
}
a:hover > .more-arrow.col2 > span {
  background: #b2243c;
  stroke: #fff;
}
a.more-arrow.col2:hover > span {
  background: #b2243c;
  stroke: #fff;
}

.more-arrow.col3 {
  color: #141414;
}
.more-arrow.col3 > span {
  background: #141414;
  stroke: #fff;
}
a:hover > .more-arrow.col3 > span {
  background: #b2243c;
}
a.more-arrow.col3:hover > span {
  background: #b2243c;
}

.more-arrow.col4 {
  color: #1e4aa0;
}
.more-arrow.col4 > span {
  background: #fdf002;
  stroke: #141414;
}
a:hover > .more-arrow.col4 > span {
  background: #b2243c;
  stroke: #fff;
}
a.more-arrow.col4:hover > span {
  background: #b2243c;
  stroke: #fff;
}

.header_outer {
  position: sticky;
  background: #f4f4f4;
  left: 0;
  right: 0;
  top: 0;
  z-index: 500;
  overflow: hidden;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .header_inner {
    column-gap: 3rem;
    height: 8rem;
    padding: 0 7rem;
  }
}
@media (max-width: 768px) {
  .header_inner {
    column-gap: 2.5rem;
    height: 10rem;
    padding: 0 4rem;
  }
}
.header_logo {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .header_logo {
    width: 17rem;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: 22rem;
  }
}
.header_logo:hover {
  opacity: 0.6;
}

.nav_outer {
  z-index: 5;
}
@media (min-width: 769px) {
  .nav_outer {
    position: relative;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .nav_outer {
    position: fixed;
    background-color: #f4f4f4;
    height: 0;
    left: 0;
    right: 0;
    top: 10rem;
    overflow: hidden;
    transition: 0.2s linear;
  }
  .nav_outer.is-opened {
    height: calc(100dvh - 10rem);
  }
}
@media (max-width: 768px) {
  .nav_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 100dvh;
    padding: 7rem 0 15rem;
    overflow-y: auto;
  }
}
.nav_list {
  display: flex;
}
@media (min-width: 769px) {
  .nav_list {
    justify-content: flex-end;
    column-gap: 3rem;
  }
}
@media (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    width: 58rem;
  }
}
.nav_list > li {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .nav_list > li {
    align-items: center;
    height: 8rem;
  }
  .nav_list > li:has(.js-navChildSwitch.is-opened)::after {
    content: "";
    position: absolute;
    background: #fdf002;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    width: 1.6rem;
    height: 1.2rem;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .nav_list > li {
    flex-direction: column;
    padding: 3.6rem 2rem;
  }
  .nav_list > li::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
}
.nav_index {
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_index {
    line-height: 5;
    font-size: 1.6rem;
  }
  .nav_index::after {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    left: 0;
    right: 0;
    bottom: 3.05rem;
    scale: 0 1;
    transform-origin: left center;
    transition: 0.2s linear;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .nav_index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.313;
    font-size: 3.2rem;
  }
  .nav_index:not(.js-navChildSwitch)::after {
    content: "";
    display: block;
    background-image: url(/img/common/arrow02_k.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.6rem;
    height: 1.858rem;
  }
  .nav_index:is(.js-navChildSwitch)::before, .nav_index:is(.js-navChildSwitch)::after {
    content: "";
    display: block;
    background: #141414;
    width: 2.6rem;
    height: 1px;
  }
  .nav_index:is(.js-navChildSwitch)::before {
    position: absolute;
    right: 0;
    transform: rotateZ(90deg);
  }
  .nav_index:is(.js-navChildSwitch).is-opened::before {
    display: none;
  }
}
@media (min-width: 769px) {
  .nav_index:hover::after {
    scale: 1 1;
  }
}
.nav_child {
  height: 0;
  transition: 0.2s linear;
  overflow: hidden;
}
@media (min-width: 769px) {
  .nav_child {
    position: fixed;
    background: #fdf002;
    left: 0;
    right: 0;
    top: 8rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .nav_child {
    position: relative;
  }
}
.nav_child_list {
  display: flex;
}
@media (min-width: 769px) {
  .nav_child_list {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 4rem;
    height: 8rem;
  }
}
@media (max-width: 768px) {
  .nav_child_list {
    flex-direction: column;
    row-gap: 3.2rem;
    padding-top: 5.6rem;
  }
}
.nav_child_list > li {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav_child_list > li {
    column-gap: 1.6rem;
  }
  .nav_child_list > li::before {
    content: "-";
    line-height: 0.667;
    font-size: 4.2rem;
    translate: 0 -10%;
    scale: 1 0.667;
  }
  .nav_child_list > li:has(a.top)::before {
    display: none;
  }
}
.nav_child_close {
  stroke: #141414;
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  right: 4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav_child_close {
    display: none !important;
  }
}
.nav_child_close:hover {
  opacity: 0.6;
}
.nav_link {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 700;
}
@media (min-width: 769px) {
  .nav_link {
    column-gap: 1rem;
    line-height: 1.25;
    font-size: 1.6rem;
  }
  .nav_link::after {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    left: 0;
    right: 1.9rem;
    bottom: 0.05rem;
    scale: 0 1;
    transform-origin: left center;
    transition: 0.2s linear;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .nav_link {
    line-height: 1.429;
    font-size: 2.8rem;
  }
}
.nav_link svg {
  stroke: #141414;
  fill: none;
  width: 0.9rem;
  height: 0.9rem;
}
@media (max-width: 768px) {
  .nav_link svg {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .nav_link:hover::after {
    scale: 1 1;
  }
}
.nav_member {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9bdcc3;
  border: solid 1px #282828;
  border-radius: 100vmax;
  font-weight: 700;
}
@media (min-width: 769px) {
  .nav_member {
    gap: 1rem;
    padding: 1rem 2rem;
    line-height: 1.334;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .nav_member {
    gap: 1.5rem;
    padding: 3rem 2rem;
    line-height: 1;
    font-size: 2.6rem;
  }
}
@media (min-width: 769px) {
  .nav_member .icon {
    width: 1.1rem;
    height: 1rem;
  }
}
@media (max-width: 768px) {
  .nav_member .icon {
    width: 2.4rem;
    height: 2rem;
  }
}
.nav_member_link {
  display: block;
}
.nav_member_link:hover {
  opacity: 0.6;
}
.nav_close {
  display: block;
  stroke: #141414;
  stroke-width: 0.15rem;
  width: 5rem;
  height: 5rem;
  margin-top: 12rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_close {
    display: none !important;
  }
}
.nav_switch {
  position: relative;
  width: 10.8rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_switch {
    display: none !important;
  }
}
.nav_switch::before {
  content: "";
  display: none;
  position: absolute;
  background-image: url(../img/nav_close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
}
.nav_switch.is-opened::before {
  display: block;
}
.nav_switch.is-opened img {
  opacity: 0;
}

.footer_outer {
  background: #fff;
}
@media (min-width: 769px) {
  .footer_outer {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .footer_outer {
    padding: 6.8rem 5rem 5.8rem;
  }
}
.footer_inner {
  display: grid;
  margin: 0 auto;
  grid-template-rows: auto auto;
}
@media (min-width: 769px) {
  .footer_inner {
    gap: 2.5rem;
    padding: 0 9rem;
  }
}
@media (max-width: 768px) {
  .footer_inner {
    gap: 6.5rem;
  }
}
.footer_top {
  display: grid;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .footer_top {
    grid-template-columns: 17rem auto;
  }
}
@media (max-width: 768px) {
  .footer_top {
    width: 24rem;
  }
}
.footer_bottom {
  display: grid;
  align-items: end;
}
@media (min-width: 769px) {
  .footer_bottom {
    justify-content: space-between;
    grid-template-columns: auto auto;
  }
}
.footer_nav {
  display: flex;
}
.footer_nav_list {
  display: flex;
  width: 100%;
}
@media (min-width: 769px) {
  .footer_nav_list {
    gap: 3.5rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_list {
    display: none;
  }
}
.footer_nav_list > li {
  font-weight: 700;
}
@media (min-width: 769px) {
  .footer_nav_list > li {
    line-height: 1.25;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_list > li {
    border-bottom: 1px solid #dcdcdc;
    padding: 3.6rem 2rem 4rem;
  }
}
.footer_nav_index {
  position: relative;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media (min-width: 769px) {
  .footer_nav_index {
    line-height: 1.375;
    font-size: 1.6rem;
  }
  .footer_nav_index::after {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0.2rem;
    scale: 0 1;
    transform-origin: left center;
    transition: 0.2s linear;
  }
}
@media (max-width: 768px) {
  .footer_nav_index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
    font-size: 3rem;
  }
  .footer_nav_index:not(.js-navChildSwitch)::after {
    content: "";
    display: block;
    background-image: url(/img/common/arrow02_k.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.6rem;
    height: 1.858rem;
  }
  .footer_nav_index:is(.js-navChildSwitch)::before, .footer_nav_index:is(.js-navChildSwitch)::after {
    content: "";
    display: block;
    background: #141414;
    width: 2.6rem;
    height: 1px;
  }
  .footer_nav_index:is(.js-navChildSwitch)::before {
    position: absolute;
    right: 0;
    transform: rotateZ(90deg);
  }
  .footer_nav_index:is(.js-navChildSwitch).is-opened::before {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer_nav_index:hover::after {
    scale: 1 1;
  }
}
.footer_nav_child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_nav_child {
    row-gap: 0.9rem;
    margin-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_child {
    row-gap: 3.2rem;
    height: 0;
    transition: 0.2s linear;
    overflow: hidden;
  }
}
.footer_nav_child > li {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .footer_nav_child > li {
    column-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_child > li {
    column-gap: 2rem;
  }
  .footer_nav_child > li:first-of-type {
    margin-top: 5.4rem;
  }
  .footer_nav_child > li:last-of-type {
    margin-bottom: 3.2rem;
  }
  .footer_nav_child > li:has(a.top)::before {
    display: none;
  }
}
.footer_nav_child > li::before {
  content: "-";
  display: block;
  color: #666;
  translate: 0 -10%;
  scale: 1 0.667;
}
@media (min-width: 769px) {
  .footer_nav_child > li::before {
    line-height: 0.667;
    font-size: 2.1rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_child > li::before {
    line-height: 0.667;
    font-size: 4.2rem;
  }
}
.footer_nav_link {
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #666;
}
@media (min-width: 769px) {
  .footer_nav_link {
    line-height: 1.429;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .footer_nav_link {
    line-height: 1.358;
    font-size: 2.8rem;
  }
}
.footer_nav_link::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  width: 100%;
  height: 0;
  left: 0;
  scale: 0 1;
  transform-origin: left center;
  transition: 0.2s linear;
}
@media (min-width: 769px) {
  .footer_nav_link::before {
    bottom: 0.2rem;
  }
}
@media (min-width: 769px) {
  .footer_nav_link[target=_blank]::before {
    width: calc(100% - 1.5rem);
  }
}
.footer_nav_link[target=_blank]::after {
  content: "";
  display: block;
  background-image: url(/img/common/blank01_gr.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 769px) {
  .footer_nav_link[target=_blank]::after {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
  }
}
@media (min-width: 769px) {
  .footer_nav_link:hover::before {
    scale: 1 1;
  }
}
.footer_outline {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_outline {
    grid-row: 2/3;
  }
}
@media (max-width: 768px) {
  .footer_outline {
    align-items: center;
    padding-top: 10rem;
  }
}
@media (min-width: 769px) {
  .footer_logo {
    width: 25rem;
  }
}
@media (max-width: 768px) {
  .footer_logo {
    width: 24rem;
  }
}
.footer_logo:hover {
  opacity: 0.6;
}
.footer_utility {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .footer_utility {
    padding-top: 3.5rem;
  }
}
@media (max-width: 768px) {
  .footer_utility {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2.4rem;
    width: 66rem;
    padding-top: 9.5rem;
  }
}
.footer_utility > li {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .footer_utility > li {
    padding: 0 1.3rem;
  }
  .footer_utility > li:first-of-type {
    padding-left: 0;
  }
  .footer_utility > li:first-of-type::before {
    display: none;
  }
  .footer_utility > li:last-of-type {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .footer_utility > li {
    padding: 0 3rem;
  }
  .footer_utility > li:nth-of-type(2n+1)::before {
    display: none;
  }
}
.footer_utility > li::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
}
@media (min-width: 769px) {
  .footer_utility > li::before {
    line-height: 2.231;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .footer_utility > li::before {
    line-height: 1.667;
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.footer_utility_link {
  position: relative;
  letter-spacing: 0.07em;
  color: #666;
}
@media (min-width: 769px) {
  .footer_utility_link {
    line-height: 2.231;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .footer_utility_link {
    line-height: 1.667;
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.footer_utility_link::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  width: 100%;
  height: 0;
  left: 0;
  scale: 0 1;
  transform-origin: left center;
  transition: 0.2s linear;
}
@media (min-width: 769px) {
  .footer_utility_link::after {
    bottom: 0.7rem;
  }
}
@media (max-width: 768px) {
  .footer_utility_link::after {
    bottom: 0.6rem;
  }
}
@media (min-width: 769px) {
  .footer_utility_link:hover::after {
    scale: 1 1;
  }
}
.footer_sns {
  display: flex;
}
@media (min-width: 769px) {
  .footer_sns {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .footer_sns {
    display: none;
    align-items: center;
    padding-top: 6rem;
  }
}
.footer_sns > li {
  display: flex;
}
.footer_sns_link {
  display: block;
}
@media (min-width: 769px) {
  .footer_sns_link {
    width: 2.6rem;
  }
}
.footer_sns_link:hover {
  opacity: 0.6;
}
@media (min-width: 769px) {
  .footer_sns_link.youtube {
    width: 4rem;
  }
}
@media (max-width: 768px) {
  .footer_sns_link.youtube {
    width: 9rem;
  }
}
@media (min-width: 769px) {
  .footer_copytight {
    line-height: 1;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .footer_copytight {
    line-height: 1;
    font-size: 2.2rem;
    text-align: center;
  }
}
.footer_relation {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_relation {
    grid-row: 2/3;
    justify-content: flex-end;
    row-gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .footer_relation {
    grid-row: 2/3;
    align-items: center;
    row-gap: 2rem;
    padding-top: 12rem;
  }
}
.footer_relation_link {
  background: #fff;
}
@media (min-width: 769px) {
  .footer_relation_link {
    border-radius: 1.1rem;
  }
}
@media (max-width: 768px) {
  .footer_relation_link {
    border-radius: 1.8rem;
    width: 64rem;
  }
}
.footer_relation_link:hover {
  opacity: 0.6;
}
.footer_caption {
  position: relative;
}
@media (min-width: 769px) {
  .footer_caption {
    grid-column: 1/3;
    grid-row: 3/4;
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .footer_caption {
    padding-top: 7rem;
  }
}
.footer_copyright {
  letter-spacing: 0.03em;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #666;
}
@media (min-width: 769px) {
  .footer_copyright {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .footer_copyright {
    font-size: 2rem;
    text-align: center;
  }
}

.btn_hover {
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 700;
  background-color: #fff;
  border: solid 2px #282828;
  border-radius: 100vmax;
  overflow: hidden;
}
@media (min-width: 769px) {
  .btn_hover {
    width: 32rem;
    margin: 0 auto;
    padding: 1.8rem;
    line-height: 1;
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .btn_hover {
    width: 49.6rem;
    margin: 0 auto;
    padding: 2.5rem;
    line-height: 1;
    font-size: 2.6rem;
    border-width: 0.2rem;
  }
}
.btn_hover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #282828;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn_hover .txt {
  position: relative;
}
.btn_hover:hover::before {
  transform: scaleY(1);
}
.btn_hover:hover .txt {
  color: #fff;
}
.btn_hover .icon {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .btn_hover .icon {
    right: 3.2rem;
    width: 1.9rem;
    height: 1.6rem;
  }
}
@media (max-width: 768px) {
  .btn_hover .icon {
    right: 4.5rem;
    width: 2.5rem;
    height: 2.2rem;
  }
}
.btn_hover:hover .icon {
  fill: #fff;
}
.btn_hover.back .icon {
  scale: -1 1;
  right: auto;
}
@media (min-width: 769px) {
  .btn_hover.back .icon {
    left: 2.8rem;
  }
}
@media (max-width: 768px) {
  .btn_hover.back .icon {
    left: 4.4rem;
  }
}

.kv {
  overflow: hidden;
  height: 58rem;
  background: url(../img/kv.png) repeat-x;
  background-position: 0 0;
  will-change: transform;
}
@media (min-width: 769px) {
  .kv {
    animation: bgroop 100s linear infinite;
    background-size: 363.6rem auto;
  }
}
@media (max-width: 768px) {
  .kv {
    animation: bgroop 80s linear infinite;
    background-size: 363.6rem auto;
  }
}
.kv_inr {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .kv_inr {
    width: 112rem;
    padding-top: 43.8rem;
  }
}
@media (max-width: 768px) {
  .kv_inr {
    width: 69rem;
    padding-top: 34.8rem;
  }
}
.kv_txt {
  position: relative;
  width: fit-content;
}
@media (min-width: 769px) {
  .kv_txt {
    border-radius: 1.4rem;
    overflow: hidden;
  }
}
@media (min-width: 769px) {
  .kv_txt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
.kv_txt.is-animated::before {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.4s;
}
.kv_txt .txt_wrap {
  position: relative;
}
@media (min-width: 769px) {
  .kv_txt .txt_wrap {
    padding: 1.5rem;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
    transition-property: clip-path;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt_wrap {
    display: grid;
    gap: 1.2rem;
  }
}
@media (min-width: 769px) {
  .kv_txt.is-animated .txt_wrap {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.8s;
  }
}
.kv_txt .txt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .kv_txt .txt {
    line-height: 1;
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt {
    position: relative;
    width: fit-content;
    padding: 1.5rem;
    border-radius: 1.4rem;
    line-height: 1;
    font-size: 4rem;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt:nth-child(2)::before {
    transition-delay: 0.8s;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt.is-animated::before {
    clip-path: inset(0 0 0 0);
  }
}
@media (max-width: 768px) {
  .kv_txt .txt > span {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
@media (max-width: 768px) {
  .kv_txt .txt.is-animated > span {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.5s;
  }
}
@media (max-width: 768px) {
  .kv_txt .txt:nth-child(2).is-animated > span {
    clip-path: inset(0 0 0 0);
    transition-delay: 1.3s;
  }
}

@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -363.6rem 0;
  }
}
.intro {
  background-color: #f4f4f4;
}
@media (min-width: 769px) {
  .intro {
    padding: 11rem 0 11.5rem;
  }
}
@media (max-width: 768px) {
  .intro {
    padding: 11rem 0 11rem;
  }
}
.intro_inr {
  position: relative;
}
@media (min-width: 769px) {
  .intro_inr {
    width: 92rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .intro_inr {
    padding: 0 5rem;
  }
}
.intro_top {
  display: grid;
}
@media (min-width: 769px) {
  .intro_top {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .intro_top {
    gap: 5rem;
  }
}
.intro_head {
  font-weight: 700;
}
@media (min-width: 769px) {
  .intro_head {
    line-height: 1.741;
    font-size: 5.4rem;
    writing-mode: vertical-rl;
  }
}
@media (max-width: 768px) {
  .intro_head {
    line-height: 1.587;
    font-size: 5.8rem;
  }
}
.intro_txt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .intro_txt {
    padding-top: 12rem;
    line-height: 2.5;
    font-size: 2rem;
  }
  .intro_txt > p {
    font: inherit;
  }
  .intro_txt > p:first-of-type {
    margin-top: -0.75em;
  }
  .intro_txt > p:last-of-type {
    margin-bottom: -0.75em;
  }
}
@media (max-width: 768px) {
  .intro_txt {
    line-height: 2;
    font-size: 2.8rem;
  }
  .intro_txt > p {
    font: inherit;
  }
  .intro_txt > p:first-of-type {
    margin-top: -0.5em;
  }
  .intro_txt > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media (min-width: 769px) {
  .intro_txt > * + * {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .intro_txt > * + * {
    margin-top: 0.8rem;
  }
}
.intro_elem01 {
  position: absolute;
}
@media (min-width: 769px) {
  .intro_elem01 {
    top: -18.6rem;
    right: -10.5rem;
    width: 26.5rem;
  }
}
@media (max-width: 768px) {
  .intro_elem01 {
    top: -16.6rem;
    right: 2.8rem;
    width: 26.5rem;
  }
}
.intro_elem02 {
  position: absolute;
}
@media (min-width: 769px) {
  .intro_elem02 {
    bottom: -13rem;
    left: -9.4rem;
    width: 29rem;
  }
}
@media (max-width: 768px) {
  .intro_elem02 {
    top: 66rem;
    right: 0rem;
    width: 29.4rem;
    overflow: hidden;
  }
  .intro_elem02 img {
    width: 36.8rem;
    max-width: inherit;
  }
}

.section_head {
  display: grid;
  grid-template-rows: auto auto;
  text-align: center;
}
@media (min-width: 769px) {
  .section_head {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .section_head {
    gap: 2.5rem;
  }
}
@media (min-width: 769px) {
  .section_head .en {
    line-height: 1;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .section_head .en {
    line-height: 1;
    font-size: 2.4rem;
  }
}
.section_head .jp {
  font-weight: 900;
}
@media (min-width: 769px) {
  .section_head .jp {
    line-height: 1;
    font-size: 4.3rem;
  }
}
@media (max-width: 768px) {
  .section_head .jp {
    line-height: 1;
    font-size: 5.2rem;
  }
}

.next_meeting {
  position: relative;
}
@media (min-width: 769px) {
  .next_meeting {
    width: 81.8rem;
    margin: 16rem auto 0;
  }
}
@media (max-width: 768px) {
  .next_meeting {
    margin-top: 20rem;
    padding: 0 5rem;
  }
}
.next_meeting_block {
  display: grid;
}
@media (min-width: 769px) {
  .next_meeting_block {
    grid-template-columns: 46.8rem auto;
    gap: 3rem;
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_block {
    gap: 4rem;
    margin-top: 4.2rem;
  }
}
.next_meeting_article {
  border: solid 2px #282828;
  background-color: #fff;
}
@media (min-width: 769px) {
  .next_meeting_article {
    padding: 6rem 6.2rem;
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article {
    padding: 5rem;
    border-radius: 3rem;
    border-width: 0.2rem;
  }
}
.next_meeting_article .head {
  position: relative;
  font-weight: 700;
  border-bottom: solid 2px #282828;
  text-align: center;
}
@media (min-width: 769px) {
  .next_meeting_article .head {
    line-height: 1.297;
    font-size: 2.7rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .head {
    width: fit-content;
    margin: 0 auto;
    line-height: 1.343;
    font-size: 3.8rem;
    border-width: 0.2rem;
  }
}
@media (min-width: 769px) {
  .next_meeting_article .txt {
    margin-top: 2rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .txt {
    margin-top: 4rem;
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
.next_meeting_article .date {
  display: block;
  font-weight: 700;
}
@media (min-width: 769px) {
  .next_meeting_article .date {
    margin-top: 2rem;
    line-height: 1.334;
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .date {
    margin-top: 3rem;
    line-height: 1;
    font-size: 3.8rem;
  }
}
.next_meeting_article .info {
  display: grid;
}
@media (min-width: 769px) {
  .next_meeting_article .info {
    grid-template-columns: 6.6rem auto;
    gap: 1rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .info {
    grid-template-columns: 10.6rem auto;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
.next_meeting_article .info > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #e95037;
}
@media (min-width: 769px) {
  .next_meeting_article .info > dt {
    padding: 0.5rem;
    line-height: 1;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .info > dt {
    padding: 0.5rem;
    line-height: 1;
    font-size: 2.6rem;
  }
}
@media (min-width: 769px) {
  .next_meeting_article .info > dd {
    line-height: 1;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_article .info > dd {
    line-height: 1;
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_img {
    width: 46rem;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .next_meeting .btn_hover {
    width: 42rem;
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .next_meeting .btn_hover {
    width: 49.6rem;
    padding: 3rem 0;
  }
}
@media (min-width: 769px) {
  .next_meeting_btn {
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_btn {
    margin-top: 5rem;
  }
}
.next_meeting_elem {
  position: absolute;
}
@media (min-width: 769px) {
  .next_meeting_elem {
    top: -1rem;
    right: -17.5rem;
    width: 13.8rem;
  }
}
@media (max-width: 768px) {
  .next_meeting_elem {
    top: 80rem;
    right: 0rem;
    width: 12.2rem;
    overflow: hidden;
  }
  .next_meeting_elem img {
    width: 18.4rem;
    max-width: inherit;
  }
}

.about {
  background-color: #ffcb70;
}
@media (min-width: 769px) {
  .about {
    scroll-margin-top: 8rem;
    padding: 11rem 0;
    border-top-left-radius: 11rem;
    border-top-right-radius: 11rem;
  }
}
@media (max-width: 768px) {
  .about {
    scroll-margin-top: 10rem;
    padding: 10rem 0;
    border-top-left-radius: 7rem;
    border-top-right-radius: 7rem;
  }
}
.about_inr {
  position: relative;
}
@media (min-width: 769px) {
  .about_inr {
    width: 110rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about_inr {
    padding: 0 5rem;
  }
}
.about_top {
  display: grid;
}
@media (min-width: 769px) {
  .about_top {
    grid-template-columns: 39rem auto;
    gap: 6rem;
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .about_top {
    gap: 4.5rem;
    margin-top: 6rem;
  }
}
.about_lead {
  text-align: justify;
}
@media (min-width: 769px) {
  .about_lead {
    line-height: 1.688;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .about_lead {
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
.about_point {
  display: grid;
}
@media (min-width: 769px) {
  .about_point {
    gap: 1rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .about_point {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4.5rem;
  }
}
.about_point > * {
  font-weight: 700;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 769px) {
  .about_point > * {
    padding: 1.6rem 0;
    line-height: 1;
    font-size: 1.8rem;
    border-radius: 100vmax;
  }
}
@media (max-width: 768px) {
  .about_point > * {
    padding: 2rem 0;
    line-height: 1.5;
    font-size: 2.4rem;
    border-radius: 2.4rem;
  }
}
.about_img {
  border: solid 2px #282828;
  overflow: hidden;
}
@media (min-width: 769px) {
  .about_img {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .about_img {
    border-width: 0.2rem;
    border-radius: 3rem;
  }
}
.about_elem {
  position: absolute;
}
@media (min-width: 769px) {
  .about_elem {
    top: -16.4rem;
    left: 5.5rem;
    width: 21.2rem;
  }
}
@media (max-width: 768px) {
  .about_elem {
    top: -17rem;
    left: 4.8rem;
    width: 25rem;
  }
}

.iframe_wrap {
  position: relative;
  aspect-ratio: 16/9;
}
@media (min-width: 769px) {
  .iframe_wrap {
    width: 95rem;
    margin: 8rem auto 0;
  }
}
@media (max-width: 768px) {
  .iframe_wrap {
    width: 65rem;
    margin: 6rem auto 0;
  }
}
.iframe_wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .regular_meeting {
    scroll-margin-top: 8rem;
    padding: 11rem 0;
  }
}
@media (max-width: 768px) {
  .regular_meeting {
    scroll-margin-top: 10rem;
    padding: 10rem 0;
  }
}
.regular_meeting_inr {
  position: relative;
}
@media (min-width: 769px) {
  .regular_meeting_inr {
    width: 110rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .regular_meeting_inr {
    padding: 0 5rem;
  }
}
.regular_meeting_top {
  display: flex;
}
@media (min-width: 769px) {
  .regular_meeting_top {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 6rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_top {
    flex-direction: column;
    gap: 4.5rem;
  }
}
.regular_meeting_slide {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .regular_meeting_slide {
    width: 65rem;
  }
}
.regular_meeting_slide_item {
  position: relative;
  height: auto;
  background-color: #fff;
  border: solid 2px #282828;
  overflow: hidden;
}
@media (min-width: 769px) {
  .regular_meeting_slide_item {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_slide_item {
    border-radius: 3rem;
    border-width: 0.2rem;
  }
}
.regular_meeting_slide_item_inr {
  height: 100%;
}
.regular_meeting_num {
  position: absolute;
  border: solid 2px #282828;
  background-color: #fdd260;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
@media (min-width: 769px) {
  .regular_meeting_num {
    top: 1.5rem;
    left: 1.5rem;
    width: 5.4rem;
    height: 5.4rem;
    line-height: 1;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_num {
    top: 1.5rem;
    left: 1.5rem;
    width: 7.2rem;
    height: 7.2rem;
    line-height: 1;
    font-size: 2.4rem;
    border-width: 0.2rem;
  }
}
.regular_meeting_info {
  border-top: solid 2px #282828;
}
@media (min-width: 769px) {
  .regular_meeting_info {
    padding: 2rem 3.5rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_info {
    padding: 3rem 5rem;
    border-width: 0.2rem;
  }
}
.regular_meeting_ttl {
  font-weight: 700;
}
@media (min-width: 769px) {
  .regular_meeting_ttl {
    line-height: 1.5;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_ttl {
    line-height: 1;
    font-size: 3rem;
  }
}
@media (min-width: 769px) {
  .regular_meeting_txt {
    line-height: 1.715;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_txt {
    margin-top: 1.5rem;
    line-height: 1.459;
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .regular_meeting_lead {
    margin-top: 4rem;
    line-height: 1.75;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_lead {
    margin-top: 6rem;
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
@media (min-width: 769px) {
  .regular_meeting_elem {
    width: 12.8rem;
    margin-top: 3rem;
    margin-left: 22.4rem;
  }
}
@media (max-width: 768px) {
  .regular_meeting_elem {
    position: absolute;
    top: -16.5rem;
    right: 4rem;
    width: 14.8rem;
  }
}
@media (min-width: 769px) {
  .regular_meeting .section_head {
    text-align: left;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: auto;
  bottom: auto;
}

.swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
}
@media (min-width: 769px) {
  .swiper-pagination {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .swiper-pagination {
    margin-top: 3rem;
  }
}

.swiper-pagination-bullet {
  border: solid 2px #282828;
  background-color: #fff;
  opacity: 1;
}
@media (min-width: 769px) {
  .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.swiper-pagination-bullet-active {
  background-color: #f7931e;
}

@media (min-width: 769px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.8rem;
  }
}
@media (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.7rem;
  }
}

.activity_details {
  background-color: #7ddcb9;
}
@media (min-width: 769px) {
  .activity_details {
    scroll-margin-top: 8rem;
    padding: 11rem 0;
    border-top-left-radius: 11rem;
    border-top-right-radius: 11rem;
  }
}
@media (max-width: 768px) {
  .activity_details {
    scroll-margin-top: 10rem;
    padding: 10rem 0;
    border-top-left-radius: 7rem;
    border-top-right-radius: 7rem;
  }
}
.activity_details_inr {
  position: relative;
}
@media (min-width: 769px) {
  .activity_details_inr {
    width: 116.6rem;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .activity_details_top {
    margin-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .activity_details_top {
    margin-top: 5rem;
  }
}
@media (min-width: 769px) {
  .activity_details_slide .swiper {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
}
@media (max-width: 768px) {
  .activity_details_slide .swiper {
    padding-top: 3.4rem;
    padding-bottom: 3.6rem;
  }
}
.activity_details_slide_item {
  height: auto;
  background-color: #fff;
  border: solid 2px #282828;
  overflow: hidden;
}
@media (min-width: 769px) {
  .activity_details_slide_item {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .activity_details_slide_item {
    border-width: 0.2rem;
    border-radius: 3rem;
  }
}
.activity_details_slide_item_inr {
  height: 100%;
}
@media (min-width: 769px) {
  .activity_details_info {
    padding: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .activity_details_info {
    padding: 3.5rem 5rem;
  }
}
.activity_details_date {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_details_date {
    line-height: 1;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .activity_details_date {
    line-height: 1;
    font-size: 2rem;
  }
}
.activity_details_ttl {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_details_ttl {
    line-height: 1.527;
    font-size: 1.9rem;
  }
}
@media (max-width: 768px) {
  .activity_details_ttl {
    margin-top: 1.5rem;
    line-height: 1.5;
    font-size: 2.8rem;
  }
}
@media (min-width: 769px) {
  .activity_details_txt {
    line-height: 1.643;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .activity_details_txt {
    margin-top: 1.5rem;
    line-height: 1.7;
    font-size: 2rem;
  }
}
.activity_details .swiper-slide {
  transition: transform 300ms ease;
  transform: scale(1);
}
.activity_details .swiper-slide-active {
  transform: scale(1.13);
  z-index: 10;
}
@media (min-width: 769px) {
  .activity_details_btn {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .activity_details_btn {
    margin-top: 3rem;
  }
}
.activity_details_elem {
  position: absolute;
}
@media (min-width: 769px) {
  .activity_details_elem {
    left: 12rem;
    bottom: -14.8rem;
    width: 13rem;
  }
}
@media (max-width: 768px) {
  .activity_details_elem {
    top: -33rem;
    left: 4.5rem;
    width: 16.2rem;
  }
}

@media (min-width: 769px) {
  .insta {
    padding: 11rem 0 10rem;
  }
}
@media (max-width: 768px) {
  .insta {
    padding: 10rem 0;
  }
}
@media (min-width: 769px) {
  .insta_inr {
    width: 110rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .insta_inr {
    padding: 0 5rem;
  }
}
.insta_list {
  display: grid;
}
@media (min-width: 769px) {
  .insta_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .insta_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
}

.contents_wrapper + .member {
  background-color: #96d7fa;
}
@media (min-width: 769px) {
  .contents_wrapper + .member {
    padding-top: 9rem;
  }
}
@media (max-width: 768px) {
  .contents_wrapper + .member {
    padding-top: 10rem;
  }
}
.contents_wrapper + .member .member_top {
  margin-top: 0;
}

@media (min-width: 769px) {
  .member {
    scroll-margin-top: 8rem;
    padding: 0 0 9rem;
    background: linear-gradient(to bottom, transparent 45.0980392157%, #2989d8 45.0980392157%, transparent 45.0980392157%, #96d7fa 45.0980392157%, #96d7fa 100%);
  }
}
@media (max-width: 768px) {
  .member {
    scroll-margin-top: 10rem;
    padding: 0 0 10rem;
    background: linear-gradient(to bottom, transparent 25.3036437247%, #2989d8 25.3036437247%, transparent 25.3036437247%, #96d7fa 25.3036437247%, #96d7fa 100%);
  }
}
.member_inr {
  position: relative;
}
@media (min-width: 769px) {
  .member_inr {
    width: 126.6rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .member_inr {
    padding: 0 5rem;
  }
}
.member_img {
  border: solid 2px #282828;
  overflow: hidden;
}
@media (min-width: 769px) {
  .member_img {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .member_img {
    border-radius: 3rem;
    border-width: 0.2rem;
  }
}
.member_top {
  display: grid;
}
@media (min-width: 769px) {
  .member_top {
    grid-template-columns: auto auto;
    gap: 8.8rem;
    width: 88rem;
    margin: 7.5rem auto 0;
  }
}
@media (max-width: 768px) {
  .member_top {
    gap: 5rem;
    margin: 5rem auto 0;
  }
}
@media (min-width: 769px) {
  .member .section_head {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .member .section_head .en {
    order: 1;
  }
  .member .section_head .jp {
    order: 2;
  }
}
@media (min-width: 769px) {
  .member_txt {
    line-height: 1.75;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .member_txt {
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
@media (min-width: 769px) {
  .member_btn {
    margin-top: 3.5rem;
  }
}
@media (max-width: 768px) {
  .member_btn {
    margin-top: 4rem;
  }
}
.member_elem {
  position: absolute;
}
@media (min-width: 769px) {
  .member_elem {
    right: -2.5rem;
    bottom: -8rem;
    width: 27.2rem;
  }
}
@media (max-width: 768px) {
  .member_elem {
    right: 5.5rem;
    bottom: -25.4rem;
    width: 32rem;
  }
}

@media (min-width: 769px) {
  .bread_crumb {
    margin-bottom: 5.5rem;
  }
}
@media (max-width: 768px) {
  .bread_crumb {
    display: none;
  }
}

.bread_crumb_list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .bread_crumb_list li {
    line-height: 1;
    font-size: 1.2rem;
  }
}
.bread_crumb_list li:not(:last-child)::after {
  content: ">";
  display: inline-block;
}
@media (min-width: 769px) {
  .bread_crumb_list li:not(:last-child)::after {
    margin: 0 0.5em;
  }
}

.contents_wrapper {
  background-color: #7ddcb9;
}
@media (min-width: 769px) {
  .contents_wrapper {
    padding: 3rem 0 9rem;
    border-top-left-radius: 8rem;
    border-top-right-radius: 8rem;
  }
}
@media (max-width: 768px) {
  .contents_wrapper {
    padding: 5.5rem 0 10rem;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
  }
}

.contents_wrapper_inr {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .contents_wrapper_inr {
    width: 110rem;
  }
}
@media (max-width: 768px) {
  .contents_wrapper_inr {
    width: 65rem;
  }
}

.activity_list {
  display: grid;
}
@media (min-width: 769px) {
  .activity_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .activity_list {
    gap: 3rem;
    margin-top: 5rem;
  }
}

.activity_list_item {
  overflow: hidden;
  border: solid 0.2rem #282828;
  background-color: #fff;
}
@media (min-width: 769px) {
  .activity_list_item {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .activity_list_item {
    border-radius: 3rem;
  }
}

@media (min-width: 769px) {
  .activity_list_item_info {
    padding: 2.2rem 2.8rem 2.5rem;
  }
}
@media (max-width: 768px) {
  .activity_list_item_info {
    padding: 4.5rem 4.8rem 5.5rem;
  }
}

.activity_list_item_date {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_list_item_date {
    line-height: 1;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .activity_list_item_date {
    line-height: 1;
    font-size: 2.5rem;
  }
}

.activity_list_item_head {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_list_item_head {
    margin-top: 1.2rem;
    line-height: 1.527;
    font-size: 1.9rem;
  }
  .activity_list_item_head > h2 {
    font: inherit;
  }
  .activity_list_item_head > h2:first-of-type {
    margin-top: -0.263em;
  }
  .activity_list_item_head > h2:last-of-type {
    margin-bottom: -0.263em;
  }
}
@media (max-width: 768px) {
  .activity_list_item_head {
    margin-top: 2rem;
    line-height: 1.389;
    font-size: 3.6rem;
  }
  .activity_list_item_head > h2 {
    font: inherit;
  }
  .activity_list_item_head > h2:first-of-type {
    margin-top: -0.194em;
  }
  .activity_list_item_head > h2:last-of-type {
    margin-bottom: -0.194em;
  }
}

@media (min-width: 769px) {
  .activity_list_item_txt {
    margin-top: 2rem;
    line-height: 1.643;
    font-size: 1.4rem;
  }
  .activity_list_item_txt > p {
    font: inherit;
  }
  .activity_list_item_txt > p:first-of-type {
    margin-top: -0.321em;
  }
  .activity_list_item_txt > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
@media (max-width: 768px) {
  .activity_list_item_txt {
    margin-top: 3rem;
    line-height: 1.6;
    font-size: 2.5rem;
  }
  .activity_list_item_txt > p {
    font: inherit;
  }
  .activity_list_item_txt > p:first-of-type {
    margin-top: -0.3em;
  }
  .activity_list_item_txt > p:last-of-type {
    margin-bottom: -0.3em;
  }
}

.activity_article {
  background-color: #fff;
  border: solid 0.2rem #282828;
  overflow: hidden;
}
@media (min-width: 769px) {
  .activity_article {
    padding: 8.8rem 9.8rem 9.8rem;
    border-radius: 3rem;
  }
}
@media (max-width: 768px) {
  .activity_article {
    padding: 6.8rem 4.8rem 7.8rem;
    border-radius: 3rem;
  }
}

.activity_article_date {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_article_date {
    line-height: 1;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .activity_article_date {
    line-height: 1;
    font-size: 2.5rem;
  }
}

.activity_article_head {
  font-weight: 700;
}
@media (min-width: 769px) {
  .activity_article_head {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
    line-height: 1.375;
    font-size: 3.2rem;
  }
  .activity_article_head > h1 {
    font: inherit;
  }
  .activity_article_head > h1:first-of-type {
    margin-top: -0.187em;
  }
  .activity_article_head > h1:last-of-type {
    margin-bottom: -0.187em;
  }
}
@media (max-width: 768px) {
  .activity_article_head {
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height: 1.389;
    font-size: 3.6rem;
  }
  .activity_article_head > h1 {
    font: inherit;
  }
  .activity_article_head > h1:first-of-type {
    margin-top: -0.194em;
  }
  .activity_article_head > h1:last-of-type {
    margin-bottom: -0.194em;
  }
}

@media (min-width: 769px) {
  .activity_article_body p {
    line-height: 1.875;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .activity_article_body p {
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
@media (min-width: 769px) {
  .activity_article_body p:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}
@media (max-width: 768px) {
  .activity_article_body p:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}
.activity_article_body figure {
  overflow: hidden;
}
@media (min-width: 769px) {
  .activity_article_body figure {
    margin-bottom: 4.5rem;
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .activity_article_body figure {
    margin-bottom: 4.5rem;
    border-radius: 3rem;
  }
}

@media (min-width: 769px) {
  .activity_article_btn {
    margin-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .activity_article_btn {
    margin-top: 5.5rem;
  }
}