@charset "UTF-8";
/*****************************
base
******************************/
body {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  opacity: 0;
  animation: pageFadeIn 1s ease-out forwards;
}
@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

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

img,
iframe {
  max-width: 100%;
  height: auto;
}

small {
  color: #ffffff;
}

/*****************************
layout
******************************/
.main {
  padding-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: 6.25rem;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 6.25rem 0;
  }
}
.section--orange {
  background-color: #fbf4ec;
}
.section--black {
  background-color: #333333;
}
.section__title {
  margin-bottom: 1.5rem;
}
.section__title--center {
  text-align: center;
}
.section__title--center .section__eng-title::before {
  display: none;
}
.section__eng-title {
  position: relative;
  display: inline-block;
  color: #fd6e09;
}
.section__eng-title::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 0.125rem;
  top: 50%;
  left: calc(100% + 0.5rem);
  transform: translateY(-50%);
  background-color: #fd6e09;
}
.section__ja-title {
  display: block;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .section__ja-title {
    font-size: 2.5rem;
  }
}
.section__desc {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .section__desc {
    margin-bottom: 4rem;
  }
}

/*****************************
layout - header
******************************/
.header {
  position: fixed;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1024px) {
  .header {
    height: 5rem;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  position: relative;
  z-index: 100;
  max-width: 120px;
}
.header__logo img {
  max-width: 100%;
}
.header__nav {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 0 0 3.5rem 3.5rem;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .header__nav-list {
    flex-direction: row;
  }
}
.header__nav-item a {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #333333;
  transition: color 0.3s ease;
}
.header__nav-item a:hover {
  color: #fd6e09;
}
.header__nav-item:last-child {
  width: auto;
}
.header__nav-item:last-child a {
  width: auto;
  padding: 0.5rem 2rem;
  color: #ffffff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, filter 0.3s ease, opacity 0.3s ease;
}
.header__nav-item:last-child a::after {
  display: none;
}
.header__toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #fd6e09;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #ffffff;
  transition: 0.4s;
}
.header__toggle span:first-child {
  top: calc(50% - 0.375rem);
}
.header__toggle span:last-child {
  top: calc(50% + 0.375rem);
}

/*****************************
layout - footer
******************************/
.footer {
  text-align: center;
  background-color: #000000;
  padding: 2.5rem 0 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer__logo img {
  max-width: 160px;
}
.footer__contact {
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    font-size: 0.875rem;
  }
}
.footer__name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
.footer__address {
  margin-bottom: 0.25rem;
}
.footer__tel a {
  color: #ffffff;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .footer__tel a {
    pointer-events: none;
  }
}
.footer__fax {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__fax {
    display: inline-block;
    margin-left: 1rem;
  }
}

/*****************************
component - btn
******************************/
.btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 17.5rem;
  border-radius: 100px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, filter 0.3s ease, opacity 0.3s ease;
}
.btn:active {
  transform: scale(0.97) translateY(0.0625rem);
}
.btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease, right 0.3s ease;
}
.btn--primary {
  color: #ffffff;
  background-color: #fd6e09;
  border: 2px solid #fd6e09;
}
.btn--primary::after {
  background: url(../images/arrow-right-w.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .btn--primary:hover {
    filter: brightness(1.15);
  }
  .btn--primary:hover::after {
    right: 1rem;
  }
}
.btn--secondary {
  color: #333333;
  background-color: #ffffff;
  border: 2px solid #333333;
}
.btn--secondary::after {
  background: url(../images/arrow-right-k.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .btn--secondary:hover {
    opacity: 0.7;
  }
  .btn--secondary:hover::after {
    right: 1rem;
  }
}

/*****************************
project - hero
******************************/
.hero {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .hero {
    margin-bottom: 6.25rem;
  }
}
.hero__inner {
  padding: 2.5rem 0 3rem;
}
@media screen and (min-width: 1024px) {
  .hero__inner {
    padding-bottom: 6rem;
  }
}
.hero__tagline {
  text-align: center;
}
.hero__label {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  rotate: -5deg;
  background-color: #fd6e09;
  padding: 0.35em 0.5em;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  color: #ffffff;
}
.hero__label::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0.5rem;
  left: 0.5rem;
  border-radius: 8px;
  border: 2px dotted #fd6e09;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .hero__label {
    margin-bottom: 1rem;
  }
}
.hero__title {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
}
.hero__desc {
  font-weight: 700;
  color: #7c7a7a;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .hero__desc {
    font-size: 1.25rem;
    margin-bottom: 4rem;
  }
}
.hero__action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .hero__action {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.hero__gallery {
  width: 100%;
  overflow: hidden;
}
.hero__track {
  display: flex;
  width: max-content;
  animation: scrollGallery 35s linear infinite;
}
.hero__list {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1024px) {
  .hero__list {
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
}
.hero__item img {
  width: 17.5rem;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero__item img {
    width: 30rem;
    border-radius: 1rem;
  }
}
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*****************************
project - concept
******************************/
.concept {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  right: -2.5rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: radial-gradient(rgba(253, 110, 9, 0.1) 20%, transparent 20%);
  background-size: 1.25rem 1.25rem;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .concept::before {
    top: 2.5rem;
    right: -3.75rem;
    width: 18.75rem;
    height: 18.75rem;
    background-size: 1.5rem 1.5rem;
  }
}
.concept::after {
  content: "";
  position: absolute;
  bottom: -3.75rem;
  left: -3.75rem;
  width: 15rem;
  height: 15rem;
  background-color: rgba(253, 110, 9, 0.03);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .concept::after {
    bottom: -6.25rem;
    left: -6.25rem;
    width: 31.25rem;
    height: 31.25rem;
  }
}
.concept__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .concept__list {
    max-width: 36.25rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .concept__list {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.concept__item {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(124, 122, 122, 0.25);
  text-align: center;
}
.concept__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem auto;
}
.concept__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.concept__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fd6e09;
}
@media screen and (min-width: 1024px) {
  .concept__title {
    font-size: 1.5rem;
  }
}
.concept__item:nth-child(2) .concept__title {
  color: #20d3a4;
}
.concept__item:nth-child(3) .concept__title {
  color: #3382ff;
}
.concept__desc {
  text-align: left;
  font-size: 0.9375rem;
}

/*****************************
project - event
******************************/
.event__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .event__list {
    max-width: 36.25rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .event__list {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.event__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(124, 122, 122, 0.25);
  cursor: pointer;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .event__item:not(.is-nolink):hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 14px rgba(124, 122, 122, 0.35);
  }
  .event__item:not(.is-nolink):hover .event__img img {
    transform: scale(1.05);
  }
}
.event__item::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-color: #fd6e09;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-size: 0.875rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
.event__item.is-nolink {
  cursor: default;
}
.event__item.is-nolink::after {
  display: none;
}
.event__item.is-nolink .event__body {
  padding-bottom: 1.5rem;
}
.event__img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  border-bottom: 1px solid rgba(124, 122, 122, 0.35);
}
.event__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.3s ease;
}
.event__body {
  padding: 1.5rem;
  padding-bottom: 4rem;
}
.event__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.event__box {
  display: flex;
  flex-direction: column;
}
.event__date, .event__time {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  color: #20d3a4;
  padding-left: 1.25rem;
  white-space: nowrap;
}
.event__date::before, .event__time::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.event__date::before {
  background-image: url(../images/icon-calendar.svg);
}
.event__time::before {
  background-image: url(../images/icon-clock.svg);
}
.event__tag {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #20d3a4;
  padding: 0.25em 1em;
  border-radius: 6.25rem;
  color: #ffffff;
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.event__tag--gray {
  background-color: #7c7a7a;
}
.event__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

/*****************************
project - video
******************************/
.video__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .video__list {
    max-width: 40rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .video__list {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.video__item {
  border-radius: 1rem;
  overflow: hidden;
  line-height: 0;
  background-color: #333333;
}
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}

/*****************************
project - past-event
******************************/
.past-event {
  position: relative;
  z-index: 1;
}
.past-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(32, 211, 164, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 211, 164, 0.08) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .past-event::before {
    background-size: 2.5rem 2.5rem;
  }
}
.past-event .section__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .past-event .section__title {
    margin-bottom: 4rem;
  }
}
.past-event__slider {
  padding-bottom: 3rem;
}
.past-event__list {
  padding-bottom: 1rem;
}
.past-event__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(124, 122, 122, 0.25);
  cursor: pointer;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .past-event__item:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 14px rgba(124, 122, 122, 0.35);
  }
  .past-event__item:hover .past-event__img img {
    transform: scale(1.05);
  }
}
.past-event__item::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: #20d3a4;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-size: 0.875rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
.past-event__img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0.75rem 0.75rem 0 0;
}
.past-event__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.3s ease;
}
.past-event__body {
  padding: 1rem;
  padding-bottom: 3.5rem;
}
.past-event__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
.past-event .swiper-button-next,
.past-event .swiper-button-prev {
  color: #20d3a4;
  background-color: rgba(255, 255, 255, 0.8);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 35%;
}
.past-event .swiper-button-next::after,
.past-event .swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: bold;
}
.past-event .swiper-button-next:hover,
.past-event .swiper-button-prev:hover {
  background-color: #ffffff;
}
.past-event .swiper-pagination {
  bottom: 0;
}
.past-event .swiper-pagination-bullet {
  background-color: #7c7a7a;
  opacity: 0.4;
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.375rem !important;
  transition: background-color 0.3s, opacity 0.3s;
}
.past-event .swiper-pagination-bullet-active {
  background-color: #20d3a4;
  opacity: 1;
}

/*****************************
project - information
******************************/
.info .section__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .info .section__title {
    margin-bottom: 4rem;
  }
}
.info__box {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .info__box {
    padding: 3.5rem 4rem;
  }
}
.info__list {
  margin-top: 2rem;
  border-top: 1px solid #e5e5e5;
}
.info__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .info__item {
    flex-direction: row;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .info__item {
    padding: 2rem 0;
  }
}
.info__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fd6e09;
}
@media screen and (min-width: 768px) {
  .info__title {
    width: 12.5rem;
    flex-shrink: 0;
  }
}
.info__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/*****************************
project - CTA
******************************/
.cta {
  color: #ffffff;
}
.cta .section__desc {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .cta .section__desc {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.cta__box {
  background-color: #444444;
  color: #333333;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .cta__box {
    padding: 4rem 2.5rem;
    max-width: 45rem;
    margin-inline: auto;
  }
}
.cta__desc {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #a5a5a5;
}

/*****************************
utility - フォント
******************************/
.fw-b {
  font-weight: 600;
}

.fs-sm {
  font-size: 0.85rem;
}

/*****************************
utility - スペース
******************************/
.mb-sm {
  margin-bottom: 1rem;
}

/*****************************
utility - レスポンシブ
******************************/
.md {
  display: none;
}
@media screen and (min-width: 768px) {
  .md {
    display: block;
  }
}

/*****************************
utility - テキストグラデーション
******************************/
.clr-gradation {
  background: linear-gradient(135deg, #fd6e09 0%, #ffd000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/*****************************
utility - ハンバーガーメニュー開閉
******************************/
.overlay {
  display: none;
}

.is-stop {
  overflow: hidden;
}
.is-stop .hero__track {
  animation-play-state: paused;
}

.is-show {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.6);
  z-index: 80;
}

.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.is-active {
  background-color: transparent;
}
.is-active span {
  background-color: #333333;
}
.is-active span:first-child {
  top: 50%;
  rotate: -135deg;
}
.is-active span:nth-child(2) {
  opacity: 0;
}
.is-active span:last-child {
  top: 50%;
  rotate: 135deg;
}

.js-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/*****************************
utility - トップに戻る
******************************/
.page-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #fd6e09;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.page-top svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

body.is-stop .page-top {
  opacity: 0 !important;
  visibility: hidden !important;
}

/*****************************
modal
******************************/
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.modal__container {
  position: relative;
  width: 90%;
  max-width: 40rem;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 100;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.modal__img {
  aspect-ratio: 16/10;
  flex-shrink: 0;
}
.modal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__content {
  padding: 1.5rem;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .modal__content {
    padding: 2.5rem;
  }
}
.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.modal__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333333;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.modal__close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__btn {
  text-align: center;
  margin-top: 1.5rem;
}/*# sourceMappingURL=style.css.map */