@charset "UTF-8";
/*==============================
フッター
==============================*/
.l-footer {
  position: relative;
  overflow: hidden;
  max-width: 120rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    max-width: 100%;
    margin: 7rem auto 0;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
}

.footer-main {
  width: 100%;
  margin: 0 auto;
  padding-inline: 5.5rem 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-main {
    flex-direction: column;
    padding-inline: 0;
  }
}

.footer-left {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 9.3rem 1fr;
  align-items: start;
  justify-content: start;
  gap: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 3.8rem 3rem;
    gap: 0;
  }
}

.footer-logo {
  padding-top: 1.2rem;
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  position: relative;
  transition: all 0.4s ease;
}
.footer-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  background-color: #F3515E;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .footer-logo:hover img {
    opacity: 1;
    scale: 0.95;
  }
  .footer-logo:hover::before {
    opacity: 1;
  }
}
.footer-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .footer-logo {
    width: 7rem;
    padding-top: 0;
  }
}

.footer-nav-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.3rem;
}
@media only screen and (max-width: 767px) {
  .footer-nav-area {
    width: 100%;
    gap: 1.7rem;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-nav {
    padding-right: 2rem;
    gap: 0.7rem;
  }
}

.footer-nav-top a,
.footer-nav-item a {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: #292929;
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer-nav-top a:hover,
  .footer-nav-item a:hover {
    color: #d60054;
  }
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-flow: row;
  gap: 1.5rem 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer-nav-list {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 0.6rem 0;
  }
}

.footer-nav-label {
  font-family: var(--font-sans-en);
  font-size: 1.2rem;
  font-weight: 500;
  color: currentColor;
  line-height: 1.7;
}

.footer-nav-name {
  font-family: var(--font-serif-en);
  font-size: 1.8rem;
  font-weight: 400;
  color: currentColor;
  line-height: 1.5;
}

.footer-sub {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

.footer-sub-link {
  font-family: var(--font-sans-jp);
  font-size: 1.2rem;
  font-weight: 500;
  color: #646464;
  text-decoration: none;
  transition: color 0.3s;
  margin-right: 2.5rem;
}
@media (hover: hover) {
  .footer-sub-link:hover {
    color: #d60054;
  }
}
.footer-sub-link:nth-last-child(2) {
  margin-right: 1rem;
}
.footer-sub-link:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer-sub-link {
    margin-right: 0;
  }
}

.footer-sub-corp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .footer-sub-corp {
    gap: 0;
  }
}
.footer-sub-corp img {
  width: 1.6rem;
  height: auto;
  display: block;
}
@media (hover: hover) {
  .footer-sub-corp:hover img {
    opacity: 1;
  }
}

.footer-sub-instagram {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.7rem;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .footer-sub-instagram {
    margin-top: 1rem;
  }
}
@media (hover: hover) {
  .footer-sub-instagram:hover {
    background-color: #d60054;
  }
  .footer-sub-instagram:hover img {
    filter: brightness(0) invert(1);
  }
}
.footer-sub-instagram img {
  width: 1.8rem;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  transition: all 0.4s ease;
}

.footer-cv {
  width: 43.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 3rem 0 0;
}
@media only screen and (max-width: 767px) {
  .footer-cv {
    order: -1;
    width: 100%;
    padding: 0 3.8rem 3.8rem;
  }
}

.footer-cv-row {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-cv-row {
    gap: 0.8rem;
  }
}

.footer-cv-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  text-align: center;
}
.footer-cv-btn .cv-en {
  font-family: var(--font-serif-en);
  font-size: 1.8rem;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 1.4;
}
.footer-cv-btn .cv-jp {
  font-family: var(--font-sans-en);
  font-size: 1.2rem;
  font-weight: 500;
  color: #f1f1f1;
  line-height: 1.7;
}

.footer-cv-btn--info,
.footer-cv-btn--reserve {
  position: relative;
  flex: 1;
  height: 8rem;
  background: #292929;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .footer-cv-btn--info,
  .footer-cv-btn--reserve {
    height: 7.7rem;
  }
}
.footer-cv-btn--info::before,
.footer-cv-btn--reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, #f3515e 0%, #ea8183 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .footer-cv-btn--info:hover::before,
  .footer-cv-btn--reserve:hover::before {
    opacity: 1;
  }
}
.footer-cv-btn--info .cv-en,
.footer-cv-btn--info .cv-jp,
.footer-cv-btn--reserve .cv-en,
.footer-cv-btn--reserve .cv-jp {
  position: relative;
  z-index: 1;
}

.footer-cv-btn--entry {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 8rem;
  background: #d60054;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .footer-cv-btn--entry {
    height: 7.7rem;
  }
}
.footer-cv-btn--entry::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, #f3515e 0%, #ea8183 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .footer-cv-btn--entry:hover::before {
    opacity: 1;
  }
  .footer-cv-btn--entry:hover .footer-cv-arrow img {
    opacity: 1;
  }
}
.footer-cv-btn--entry .cv-en,
.footer-cv-btn--entry .cv-jp {
  position: relative;
  z-index: 1;
}
.footer-cv-btn--entry .cv-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-cv-btn--entry .footer-cv-arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cv-btn--entry .footer-cv-arrow img {
  width: 1.4rem;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
}

.footer-copyright {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-block: 2.5rem 3.5rem;
  padding-left: 4.2rem;
}
@media only screen and (max-width: 767px) {
  .footer-copyright {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
}

.footer-copyright-text {
  margin: 0;
  font-family: var(--font-serif-en);
  font-size: 10.5rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .footer-copyright-text {
    font-size: 6.5rem;
    transform: rotate(90deg);
    transform-origin: 27rem 19.5rem;
    letter-spacing: -0.015em;
    text-align: end;
    z-index: -1;
  }
}/*# sourceMappingURL=footer.css.map */