@charset "UTF-8";
/* Header */
/*==============================
ヘッダー
==============================*/
body {
  --header-height: 18.2rem;
  --header-logo-offset-top: 4rem;
  --header-logo-offset-left: 6rem;
  --header-logo-size: 9rem;
  --header-logo-area-height: calc(var(--header-logo-offset-top) + var(--header-logo-size));
  --header-content-offset: calc(var(--header-height) - var(--header-logo-area-height));
  position: relative;
}
@media only screen and (max-width: 767px) {
  body {
    --header-height: 3.75rem;
    --header-logo-area-height: 0;
    --header-content-offset: var(--header-height);
  }
}
@media only screen and (max-width: 767px) {
  body.is-header-scroll {
    --header-height: 3.5rem;
    --header-content-offset: var(--header-height);
  }
}

.header-logo-area {
  position: relative;
  z-index: 51;
  box-sizing: content-box;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--header-logo-size);
  padding: var(--header-logo-offset-top) 0 0 var(--header-logo-offset-left);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .header-logo-area {
    display: none;
    height: 0;
    padding: 0;
  }
}

.header-logo {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.header-logo a {
  display: block;
  line-height: 0;
  background: transparent;
  position: relative;
  transition: all 0.4s ease;
}
.header-logo a::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) {
  .header-logo a:hover img {
    opacity: 1;
    scale: 0.95;
  }
  .header-logo a:hover::before {
    opacity: 1;
  }
}
.header-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 9rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .header-logo img {
    width: 7rem;
  }
}

.l-header {
  --header-height: 18.2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .l-header {
    --header-height: 3.75rem;
  }
}
.l-header__inner {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4rem 6rem 2rem;
  gap: 1.9rem;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    display: contents;
    min-height: var(--header-height);
    padding: 0;
  }
}
.l-header.scroll {
  --header-height: 9rem;
  box-shadow: 0 2px 12px rgba(41, 41, 41, 0.06);
  background: #F2EAEA;
}
@media only screen and (max-width: 767px) {
  .l-header.scroll {
    --header-height: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-header.scroll .l-nav {
    min-height: 5.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-header.scroll .l-header__inner {
    display: flex;
  }
}
.l-header.scroll .l-header__inner {
  padding: 1.5rem 6rem;
}
@media only screen and (max-width: 767px) {
  .l-header.scroll .l-header__inner {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header.scroll ~ .nav-icon {
    height: 5.5rem;
    padding: 1.5rem 1.2rem 0.8rem;
  }
}

.l-nav {
  margin: 0 0 0 auto;
  font-size: 1.8rem;
  gap: 2.9rem;
  align-items: center;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .l-nav {
    width: 100%;
    font-size: 1rem;
    gap: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 1.5rem;
    min-height: 7rem;
  }
}
.l-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-list {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: stretch;
    top: var(--header-height);
    width: 100%;
    right: 0;
    left: 0;
    max-width: none;
    max-height: calc(100vh - var(--header-height));
    height: auto;
    overflow-y: auto;
    padding: 0;
    background: #fff;
    box-shadow: none;
  }
  .l-nav .nav-list a {
    padding-right: 4vw;
    color: #d60054;
    border-bottom: 1px solid #292929;
    background: url(../img/module/icon_arrow_03.svg) no-repeat right 2vw bottom 1vw/3.123vw 0.999vw;
    transition: all 0.4s ease;
  }
  .l-nav .nav-list a:hover {
    background-position: right 0 bottom 1vw;
  }
}
@media only screen and (min-width: 768px) {
  .l-nav .nav-item--has-child {
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-item--has-child {
    position: relative;
  }
}
.l-nav .nav-item--has-child::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 4rem;
  z-index: 48;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-item--has-child::after {
    display: none;
  }
}
.l-nav .nav-item--has-child .nav-child {
  position: absolute;
  top: calc(100% + 2rem);
  right: auto;
  left: 0;
  transform: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 52rem;
  min-height: 18rem;
  height: auto;
  margin: 0;
  padding: 4rem 4.2rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(215, 0, 74, 0.2);
  z-index: 49;
  box-sizing: border-box;
}
.l-nav .nav-item--has-child .nav-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 67%;
  height: 2rem;
  transform: none;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-item--has-child .nav-child::before {
    display: none;
  }
  .l-nav .nav-item--has-child .nav-child {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    display: block;
    flex-direction: initial;
    justify-content: initial;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 0 0 0.5rem;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
  }
}
.l-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-serif-en);
  color: #292929;
  transition: color 0.3s;
  white-space: nowrap;
}
.l-nav .nav-inner.is-open {
  color: #d60054;
}
.l-nav .nav-inner.is-open .nav-inner-plus {
  color: inherit;
}
@media (hover: hover) {
  .l-nav .nav-inner:hover {
    color: #d60054;
  }
  .l-nav .nav-inner:hover .nav-inner-plus {
    color: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-inner {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.6em 3.125%;
    cursor: pointer;
    text-align: left;
    white-space: normal;
  }
  .l-nav .nav-inner.is-open {
    color: #d60054;
  }
}
@media only screen and (max-width: 767px) {
  .l-nav a.nav-inner {
    margin: 0.5em 3.125% 0.8em;
    padding: 0.6em 0 0.2em;
    line-height: 1.35em;
  }
}
.l-nav button.nav-inner {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media only screen and (max-width: 767px) {
  .l-nav button.nav-inner {
    margin: 0.5em 3.125% 0;
    padding: 0.6em 0 0.2em;
    line-height: 1.35em;
  }
  .l-nav button.nav-inner:after {
    content: "";
    display: inline-block;
    width: 0.45em;
    height: 0.45em;
    margin-left: 0.5em;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
    vertical-align: 0.15em;
  }
  .l-nav button.nav-inner.is-open:after {
    transform: rotate(-135deg);
    vertical-align: 0;
  }
}
.l-nav .nav-inner-plus {
  margin-left: 0.45rem;
  font-size: 1.05em;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-inner-plus {
    display: none;
  }
}
.l-nav .nav-child {
  display: none;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child {
    flex-wrap: wrap;
  }
}
.l-nav .nav-child-ttl {
  margin: 0 0 1rem;
  padding: 0;
  width: 100%;
  text-align: start;
  color: #d60054;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-ttl {
    display: none;
  }
}
.l-nav .nav-headline-en {
  margin: 0;
  font-family: var(--font-serif-en);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: #d60054;
}
.l-nav .nav-headline-jp {
  font-family: var(--font-sans-jp);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #292929;
}
.l-nav .nav-headline-jp:before, .l-nav .nav-headline-jp:after {
  content: "/";
}
.l-nav .nav-headline-jp:before {
  padding-right: 0.5rem;
}
.l-nav .nav-headline-jp:after {
  padding-left: 0.5rem;
}
.l-nav .nav-child-body,
.l-nav .nav-child-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-nav .nav-child-body {
  margin-inline-start: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-body {
    display: block;
  }
}
.l-nav .nav-child-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem 2rem;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-list {
    display: block;
  }
}
.l-nav .nav-child-item {
  margin: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}
.l-nav .nav-child-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-item {
    width: 100%;
    margin: 0;
  }
}
.l-nav .nav-child-item a {
  display: flex;
  align-items: center;
  padding: 0;
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--font-sans-en);
  color: #292929;
  border-bottom: 0;
  background: none;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .l-nav .nav-child-item a:hover {
    color: #d60054;
  }
  .l-nav .nav-child-item a:hover .nav-child-icon {
    scale: 1.1;
  }
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-item a {
    display: flex;
    width: 100%;
    padding: 0.4rem 1vw;
    padding-right: 4vw;
    color: #d60054;
    border-bottom: 1px solid #292929;
    background: none;
  }
}
.l-nav .nav-child-icon {
  flex-shrink: 0;
  margin-right: 0.5rem;
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../img/svg/ic-arrow.svg), linear-gradient(135deg, #f3515e 0%, #ea8183 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 1.1rem 1.1rem, 100% 100%;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    background-size: 0.55rem 0.55rem, 100% 100%;
  }
}
.l-nav .nav-child-label {
  display: inline-block;
  text-align: left;
}
.l-nav .nav-child-label small {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}
@media only screen and (max-width: 767px) {
  .l-nav .nav-child-label small {
    display: inline;
  }
}
.l-nav .header-entry {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.l-nav .header-entry-anchor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  width: 16.3rem;
  padding: 1rem;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: var(--font-serif-en);
  color: #fff;
  background: #d60054;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  box-shadow: inset 0 0 0 1px #fff;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .l-nav .header-entry-anchor {
    height: auto;
    width: auto;
    min-width: 7.7rem;
    min-height: 4rem;
    padding: 0.5rem 0.7rem;
    font-size: 1.5rem;
    border-radius: 0.4rem;
    border: 1px solid #ffffff;
    box-shadow: none;
  }
}
.l-nav .header-entry-anchor::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) {
  .l-nav .header-entry-anchor:hover::before {
    opacity: 1;
  }
}
.l-nav .header-entry-anchor span {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  body.is-nav-open {
    overflow: hidden;
  }
}

.nav-icon {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 5.8rem;
    height: 6rem;
    padding: 2rem 1.2rem 0.8rem;
    gap: 0.7rem;
    background-color: #292929;
    border-radius: 0 0 0 1rem;
    cursor: pointer;
    z-index: 50;
    transition: top 0.3s ease, right 0.3s ease, background-color 0.2s ease 0.3s, border-radius 0.2s ease 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon .nav-icon-inner {
    position: relative;
    width: 2rem;
    height: 0.8rem;
    margin: 0;
    transition: all 0.4s ease 0s;
    display: block;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon .nav-icon-inner span {
    display: block;
    transition: all 0.4s ease 0s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f2eaea;
  }
  .nav-icon .nav-icon-inner span:nth-of-type(1) {
    top: 0;
  }
  .nav-icon .nav-icon-inner span:nth-of-type(2) {
    bottom: 0;
  }
}
.nav-icon .nav-icon-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nav-icon .nav-icon-label {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 1.2rem;
    font-weight: 400;
    color: #f2eaea;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon.open .nav-icon-inner span {
    top: 50%;
    bottom: auto;
    margin-top: -0.05rem;
  }
  .nav-icon.open .nav-icon-inner span:nth-of-type(1) {
    transform: translate(-0.2rem, -0.5rem) rotate(-45deg);
  }
  .nav-icon.open .nav-icon-inner span:nth-of-type(2) {
    transform: translate(0.3rem, 0.1rem) rotate(-45deg);
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon.open .nav-icon-label {
    font-size: 0;
  }
  .nav-icon.open .nav-icon-label::after {
    content: "CLOSE";
    font-size: 1.2rem;
    font-family: var(--font-serif-en);
    font-weight: 400;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon.open {
    top: 2.8rem;
    right: 2.8rem;
    background-color: transparent;
    border-radius: 0;
    z-index: 101;
    transition: background-color 0.2s ease, top 0.3s ease 0.2s, right 0.3s ease 0.2s, border-radius 0.2s ease 0.2s;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon.open .nav-icon-inner {
    transition-delay: 0.2s;
  }
}
@media only screen and (max-width: 767px) {
  .nav-icon.open .nav-icon-inner span {
    transition-delay: 0.2s;
  }
}

/* SP Menu Overlay ============================= */
.sp-menu-overlay {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 4rem;
    right: 0;
    min-height: 62rem;
    background: #292929;
    border-bottom-left-radius: 1rem;
    z-index: 100;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .sp-menu-overlay.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.sp-menu-close {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-menu-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: absolute;
    top: 3rem;
    right: 2rem;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .sp-menu-close__icon {
    position: relative;
    width: 2rem;
    height: 0.8rem;
    transform: rotate(-135deg);
  }
  .sp-menu-close__icon span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f2eaea;
  }
  .sp-menu-close__icon span:nth-of-type(1) {
    top: 0;
  }
  .sp-menu-close__icon span:nth-of-type(2) {
    bottom: 0;
  }
  .sp-menu-close__label {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f2eaea;
  }
}

.sp-menu-content {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 14rem;
    left: 5rem;
    width: 26rem;
  }
}

@media only screen and (max-width: 767px) {
  .sp-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .sp-menu-grid__item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .sp-menu-grid__spacer {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .sp-menu-jp {
    display: block;
    font-family: var(--font-sans-en);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    color: #f2eaea;
  }
}

@media only screen and (max-width: 767px) {
  .sp-menu-en {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f2eaea;
  }
}

@media only screen and (max-width: 767px) {
  .sp-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sp-menu-btns__row {
    display: flex;
    gap: 0.8rem;
    width: 100%;
  }
}

.sp-menu-btn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 8rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .sp-menu-btn__en {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f2eaea;
    text-align: center;
  }
  .sp-menu-btn__jp {
    display: block;
    font-family: var(--font-sans-jp);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    color: #f2eaea;
    text-align: center;
  }
  .sp-menu-btn--border {
    flex: 1;
    background: #292929;
    border: 1px solid #fff;
  }
  .sp-menu-btn--entry {
    position: relative;
    width: 100%;
    background: #d60054;
  }
  .sp-menu-btn--entry .sp-menu-btn__arrow {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
    height: auto;
  }
  .sp-menu-btn--entry .sp-menu-btn__arrow img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}/*# sourceMappingURL=header.css.map */