/*layer*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@layer foundation, vendor, layout, component, project, page, utilities;
/*foundation*/
@layer foundation {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  dl,
  dt,
  dd,
  ol,
  ul,
  figure {
    all: unset;
    display: revert;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
}
@layer foundation {
  html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 1.1224489796vw;
  }
  @media screen and (max-width: 767px) {
    html {
      scroll-padding-top: 21.3333333333vw;
      font-size: var(--sp-base-fs);
    }
  }
  body {
    text-size-adjust: 100%;
    font-family: var(--sans-serif);
    line-height: 1.8;
    min-width: 320px;
    color: var(--main);
    background: var(--base);
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  :focus-visible {
    outline: 2px solid blue;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.5;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    letter-spacing: 0;
    font-size: 12px;
    height: auto;
  }
  a {
    text-decoration: none;
    word-break: break-all;
    color: currentColor;
  }
  @media screen and (min-width: 768px) {
    a[href^="tel:"] {
      display: inline-block;
      pointer-events: none;
    }
  }
  small {
    font-size: 80%;
  }
  button,
  input[type=button],
  input[type=submit] {
    cursor: pointer;
    font: inherit;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    cursor: pointer;
    display: inline-block;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.5;
  }
  summary::-webkit-details-marker {
    display: none;
  }
  summary {
    list-style: none;
    display: block;
    cursor: pointer;
    user-select: none;
  }
}
:root {
  --sans-serif: "Zen Kaku Gothic New", sans-serif;
  --sp-base-fs: calc(22/740*100vw);
}

/*layout*/
@layer layout {}
@layer layout {
  .l-footer {
    background: #fff;
    padding-bottom: 3.125rem;
  }
  .l-footer__logo {
    margin: 0 auto;
    width: 21.125rem;
  }
  @media screen and (min-width: 768px) {
    .l-footer__logo {
      margin-bottom: -1.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__logo {
      width: 48vw;
      margin-bottom: -4.8vw;
    }
  }
  .l-footer__copyright {
    display: block;
    text-align: center;
    font-size: 0.75rem;
  }
  @media screen and (max-width: 767px) {
    .l-footer__copyright {
      font-size: 2.4vw;
    }
  }
}
@layer layout {
  .l-header {
    position: fixed;
    width: 100%;
    z-index: 100;
    pointer-events: none;
  }
  .l-header__inner {
    pointer-events: none;
    padding: 5.3333333333vw 25.3333333333vw 5.3333333333vw 5.3333333333vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  @media screen and (min-width: 768px) {
    .l-header__inner {
      padding: 3.75rem;
    }
  }
  .l-header__inner * {
    pointer-events: fill;
  }
  .l-header__logo {
    width: 10.0625rem;
  }
  @media screen and (max-width: 767px) {
    .l-header__logo {
      width: 32.6666666667vw;
    }
  }
  .l-header__logo img {
    width: 100%;
  }
}
@layer layout {}
@layer layout {
  @media screen and (min-width: 768px) {
    .l-nav {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav.is-expanded .l-nav__body {
      visibility: visible;
      right: 0;
    }
  }
  .l-nav__btn {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    background: #fff;
    border: 0;
    font-size: 1.0625rem;
    line-height: 1.1;
    border-left: 1px solid #262624;
    border-bottom: 1px solid #262624;
  }
  @media screen and (min-width: 768px) {
    .l-nav__btn {
      display: none;
    }
  }
  .l-nav__btn[aria-expanded=true] {
    background: #000;
    color: #fff;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line {
    stroke: #fff;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-1 {
    opacity: 0;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-2 {
    rotate: 35deg;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-3 {
    opacity: 0;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-4 {
    rotate: -35deg;
  }
  .l-nav__btn svg {
    width: 2.25rem;
    height: 2.25rem;
  }
  .l-nav__line {
    transform-origin: center center;
    transition-property: opacity, rotate;
    transition-duration: 0.25s;
    stroke: #000;
    stroke-width: 4px;
  }
  @media screen and (max-width: 767px) {
    .l-nav__body {
      background: url("../img/slash.png") 0 0/3.2vw auto;
      width: 53.3333333333vw;
      max-height: 100%;
      display: block;
      visibility: hidden;
      position: fixed;
      top: 0;
      right: -100%;
      overflow: auto;
      overscroll-behavior-y: contain;
      transition: 0.3s linear;
      z-index: 99;
      padding-top: 21.3333333333vw;
      border-left: 1px solid #262624;
    }
  }
  @media screen and (min-width: 768px) {
    .l-nav__list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.125rem;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__list {
      background: #fff;
      border: 1px solid #262624;
      border-left: 0;
    }
  }
  .l-nav__item {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .l-nav__item {
      background: url("../img/nav_bg.svg") 0 0/contain no-repeat;
      font-weight: bold;
      width: 10.625rem;
      height: 3.125rem;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__item:not(:last-child) {
      background: url("../img/dotte.svg") 0 100%/auto 1px repeat-x;
    }
  }
  @media screen and (min-width: 768px) {
    .l-nav__item::before {
      content: "";
      display: block;
      width: 0px;
      height: 0px;
      background: rgba(255, 221, 51, 0.9);
      border-radius: 100px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      transition-property: width, height;
      transition-duration: 0.5s;
      pointer-events: none;
      filter: blur(2rem);
      mix-blend-mode: hard-light;
    }
  }
  @media (hover: hover) {
    .l-nav__item:hover::before {
      width: 8rem;
      height: 8rem;
    }
  }
  .l-nav__link {
    position: relative;
    z-index: 2;
  }
  @media screen and (min-width: 768px) {
    .l-nav__link {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__link {
      display: block;
      padding: 4.8vw 1.3333333333vw;
      text-align: center;
    }
  }
  .l-nav__sns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.3333333333vw;
  }
  @media screen and (min-width: 768px) {
    .l-nav__sns {
      gap: 0.625rem;
    }
  }
}
@layer layout {
  .l-page {
    background: #E6D68A;
  }
  .l-page__main {
    overflow: hidden;
  }
}
/*component*/
@layer component {
  .c-btn {
    cursor: pointer;
    position: relative;
    display: inline-block;
    line-height: 1.1;
    text-decoration: none;
    user-select: none;
    border: 0;
  }
  .c-btn:hover {
    text-decoration: none;
  }
}
@layer component {
  .c-container {
    width: 80rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@layer component {
  .c-icon {
    position: relative;
    display: inline-block;
    background: 50% 50% no-repeat;
    background-size: contain;
    vertical-align: top;
    line-height: 1;
    font-style: normal;
  }
}
/*project*/
@layer project {
  .p-btn-totop {
    width: 7.25rem;
    height: 7.25rem;
    background: #fff;
    border: 1px solid #000;
    border-radius: 6.25rem;
    position: fixed;
    z-index: 20;
    right: 3.125rem;
    bottom: 3.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    transform: translateX(200%);
    transition: 0.4s transform;
  }
  @media screen and (max-width: 767px) {
    .p-btn-totop {
      gap: 1.0666666667vw;
      width: 14.6666666667vw;
      height: 14.6666666667vw;
      font-size: 2.4vw;
      right: 6.6666666667vw;
      bottom: 6.6666666667vw;
    }
  }
  .p-btn-totop.is-show {
    transform: translateX(0%);
  }
  .p-btn-totop div {
    width: 1.75rem;
  }
  @media screen and (max-width: 767px) {
    .p-btn-totop div {
      width: 3.7333333333vw;
    }
  }
  .p-btn-totop img {
    rotate: 180deg;
  }
  .p-btn-sns {
    width: 2.875rem;
    height: 2.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-btn-sns {
      width: 12vw;
      height: 12vw;
    }
  }
  .p-btn-sns img {
    width: 100%;
  }
}
@layer project {
  .p-icon-toggle {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
  }
  .p-icon-toggle::before, .p-icon-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transform: translateY(50%);
    border-radius: 10px;
  }
  .p-icon-toggle::before {
    transition: 0.25s transform;
    transform: rotate(90deg);
  }
  .p-icon-toggle::after {
    transform: rotate(0);
  }
  details[open] .p-icon-toggle::before {
    transform: rotate(0);
  }
}
@layer project {}
@keyframes bound {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes baan {
  0% {
    transform: scale(0, 0);
  }
  60% {
    transform: scale(1.4, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes yey {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes yey2 {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  60% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(-96%);
    opacity: 1;
  }
}
@layer page {
  .lp-mv {
    position: relative;
    padding: 20px;
  }
  @media screen and (max-width: 767px) {
    .lp-mv {
      padding: 2.6666666667vw;
    }
  }
  .lp-mv__inner {
    height: calc(100vh - 40px);
    background: url("../img/mv_moon.webp") 100% 0/114.625vh no-repeat, url("../img/mv_bg.webp") 50% 50%/cover no-repeat;
    display: flex;
  }
  @media screen and (min-width: 768px) {
    .lp-mv__inner {
      overflow: hidden;
      flex-direction: row;
      justify-content: flex-end;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mv__inner {
      background: url("../img/mv_bg_sp.webp") 50% 50%/cover no-repeat;
      flex-direction: column;
      justify-content: flex-end;
      height: 157.3333333333vw;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-mv__logo {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translate(0, -50%);
    }
  }
  @media screen and (orientation: portrait) and (min-width: 768px) {
    .lp-mv__logo {
      top: inherit;
      transform: translate(0, 0);
      bottom: 2%;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mv__logo {
      text-align: center;
      margin-top: -13.3333333333vw;
      margin-bottom: -13.3333333333vw;
    }
  }
  .lp-mv__logo img {
    width: 53.125vw;
  }
  @media screen and (max-width: 767px) {
    .lp-mv__logo img {
      width: 80vw;
    }
  }
  .lp-mv__photo {
    height: 100%;
  }
  @media (orientation: portrait) {
    .lp-mv__photo {
      height: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mv__photo {
      width: 89.3333333333vw;
      margin: 0 auto;
    }
  }
  .lp-mv__photo img {
    width: auto;
    height: 100%;
  }
  @media screen and (min-width: 768px) {
    .lp-mv__photo img {
      max-width: none;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mv__photo img {
      height: auto;
    }
  }
  .lp-mv__scroll {
    width: 7.25rem;
    height: 7.25rem;
    background: #fff;
    border: 1px solid #000;
    border-radius: 6.25rem;
    position: absolute;
    right: 3.125rem;
    bottom: 3.125rem;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.875rem;
  }
  @media screen and (max-width: 767px) {
    .lp-mv__scroll {
      gap: 0.2666666667vw;
      width: 14.6666666667vw;
      height: 14.6666666667vw;
      font-size: 2.4vw;
      right: 6.6666666667vw;
      bottom: -6.6666666667vw;
    }
  }
  .lp-mv__scroll div {
    width: 1.75rem;
  }
  @media screen and (max-width: 767px) {
    .lp-mv__scroll div {
      width: 3.7333333333vw;
    }
  }
  .lp-mv__scroll img {
    animation: bound 2s infinite;
  }
  .lp-about {
    background: url("../img/bg.webp") 100% 100%/auto 60rem no-repeat;
  }
  @media screen and (max-width: 767px) {
    .lp-about {
      background-size: 100% auto;
      padding-bottom: 12.5333333333vw;
    }
  }
  .lp-sec__ttl {
    margin-bottom: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .lp-sec__ttl img {
      height: 14.6666666667vw;
    }
  }
  .lp-sec__sttl {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: #000;
    line-height: 1.2;
    font-weight: bold;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__sttl {
      transform: translate(-50%, -1em);
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__sttl {
      transform: translate(4vw, -1em);
    }
  }
  .lp-sec__sttl::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #000;
    position: absolute;
    left: 3px;
    top: 3px;
  }
  .lp-sec__sttl span {
    word-break: break-all;
    box-sizing: content-box;
    display: block;
    padding: 0.4em 0.6em;
    background: #000;
    position: relative;
    z-index: 1;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__sttl span {
      padding: 0.8em 0.6em;
      width: 1em;
    }
  }
  .lp-sec__row-1 {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__row-1 {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      min-height: 36.25rem;
    }
  }
  .lp-sec__wtext-1 {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #262624;
    padding: 8.8vw 8vw;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__wtext-1 {
      padding: 3.125rem;
      width: 37.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__wtext-1 {
      margin-left: 8vw;
      margin-right: 8vw;
      margin-bottom: -5.3333333333vw;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-sec__img-1 {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-58.75rem, -5.625rem);
      width: 75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__img-1 {
      position: relative;
      z-index: 3;
      width: 177.3333333333vw;
      left: 50%;
      transform: translate(-49%, 0);
      margin-bottom: -42.6666666667vw;
    }
  }
  .lp-sec__img-1::before {
    content: "";
    background: url("../img/img_0_bg.webp") 50% 0/56.25rem auto no-repeat;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0%;
    top: 1.25rem;
    transform: scale(0);
  }
  @media screen and (min-width: 768px) {
    .lp-sec__img-1::before {
      height: 56.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__img-1::before {
      background-size: 120vw auto;
      height: 120vw;
    }
  }
  .lp-sec__img-1 img {
    position: relative;
    z-index: 2;
  }
  .lp-sec__img-1 .is-king {
    transform: translateY(20px);
    opacity: 0;
    filter: brightness(6000%);
    transition: 0.3s all;
  }
  .lp-sec__img-1 .is-kaguta {
    position: absolute;
    left: 50%;
    top: 18.75rem;
    z-index: 3;
    width: 14.8125rem;
    opacity: 0;
    transform: scale(0);
    transform-origin: left top;
    transition: all 0.5s;
    transition-delay: 1.2s;
  }
  @media screen and (max-width: 767px) {
    .lp-sec__img-1 .is-kaguta {
      top: 44vw;
      width: 31.6vw;
    }
  }
  .lp-sec__img-1.is-fire::before {
    animation: baan 0.4s forwards;
    animation-delay: 0.4s;
    animation-timing-function: cubic-bezier(0.5, 2, 1, 1);
  }
  .lp-sec__img-1.is-fire .is-king {
    filter: brightness(100%);
    opacity: 1;
    transform: translateY(0px);
  }
  .lp-sec__img-1.is-fire .is-kaguta {
    opacity: 1;
    transform: scale(1);
  }
  .lp-sec__row-2 {
    position: relative;
    z-index: 8;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__row-2 {
      display: flex;
      align-items: center;
      min-height: 41.875rem;
      padding-bottom: 4.375rem;
    }
  }
  .lp-sec__wtext-2 {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #262624;
    padding: 8.8vw 8vw;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__wtext-2 {
      padding: 3.125rem;
      width: 38.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__wtext-2 {
      margin-left: 8vw;
      margin-right: 8vw;
    }
  }
  .lp-sec__img-2 {
    position: relative;
  }
  .lp-sec__img-2::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/img_1_bg.webp") 0 0/contain no-repeat;
    opacity: 0;
    filter: brightness(1000%);
    transition: all 0.4s;
  }
  .lp-sec__img-2.is-fire::before {
    opacity: 1;
    filter: brightness(100%);
  }
  .lp-sec__img-2.is-fire .is-img-kaguya img {
    animation: yey 0.5s forwards;
    animation-delay: 0.4s;
    animation-timing-function: cubic-bezier(0.3, 1.4, 0.9, 1);
  }
  @media screen and (min-width: 768px) {
    .lp-sec__img-2 {
      position: absolute;
      left: 40.625rem;
      top: 0.25rem;
      width: 38.75rem;
      height: 38.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-sec__img-2 {
      position: relative;
      z-index: 2;
      width: 82.6666666667vw;
      height: 78.9333333333vw;
      margin: 0 auto;
      margin-top: 13.3333333333vw;
    }
  }
  .lp-sec__img-kaguya {
    pointer-events: none;
    position: absolute;
    width: 90.6666666667vw;
    left: -5.6vw;
    top: -17.6vw;
    -webkit-mask-image: url("../img/mask.png");
    mask-image: url("../img/mask.png");
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0rem 0;
    mask-position: 0rem 0;
  }
  @media screen and (min-width: 768px) {
    .lp-sec__img-kaguya {
      max-width: none;
      width: 42.5rem;
      left: -1.875rem;
      top: -6.25rem;
    }
  }
  .lp-sec__img-kaguya img {
    transform: translateY(120%);
  }
  .lp-profile {
    background: url("../img/tans.webp") 0 0/90rem auto repeat;
    color: #fff;
  }
  .lp-profile .splide__arrows {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  .lp-profile .splide__arrow {
    padding: 0;
    border: 0;
    background: url("../img/next.svg") 0 0/contain no-repeat;
    width: 5rem;
    height: 5rem;
    transform: translateX(100%);
  }
  .lp-profile .splide__arrow svg {
    display: none;
  }
  .lp-profile .splide__arrow--prev {
    background-image: url("../img/prev.svg");
    transform: translateX(-100%);
  }
  .lp-profile__main {
    background: url("../img/profile_bg_sp.webp") 50% 0/100% auto no-repeat;
    min-height: 260.5333333333vw;
  }
  @media screen and (min-width: 768px) {
    .lp-profile__main {
      background: url("../img/profile_bg.webp") 50% 0/90rem auto no-repeat;
      padding: 2.875rem 5rem 0 0rem;
      min-height: 48.125rem;
      margin-bottom: -2.25rem;
    }
  }
  .lp-profile__wtext {
    padding-top: 7.5rem;
  }
  @media screen and (min-width: 768px) {
    .lp-profile__wtext {
      width: 38.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__wtext {
      padding: 0 16vw;
    }
  }
  .lp-profile__ttl {
    margin-bottom: 2.25rem;
  }
  @media screen and (max-width: 767px) {
    .lp-profile__ttl {
      text-align: center;
      margin-top: 4vw;
      margin-bottom: 8vw;
    }
  }
  .lp-profile__ttl img {
    width: 17.625rem;
  }
  @media screen and (max-width: 767px) {
    .lp-profile__ttl img {
      width: 37.6vw;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__row {
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
      padding-right: 3.75rem;
      padding-left: 1.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__row {
      display: flex;
      flex-direction: column-reverse;
    }
  }
  .lp-profile__photo-items {
    background: url("../img/profile_photo_bg.webp") 50% 50%/30rem auto no-repeat;
  }
  @media screen and (min-width: 768px) {
    .lp-profile__photo-items {
      padding-top: 1.25rem;
      min-height: 44.5rem;
      width: 35rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__photo-items {
      margin: 0 auto;
      background-size: contain;
      background-position: 50% 50%;
      width: 68vw;
    }
  }
  .lp-profile__photo {
    margin: 0 auto;
  }
  @media screen and (min-width: 768px) {
    .lp-profile__photo {
      width: 25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__photo {
      width: 55.2vw;
    }
  }
  .lp-profile__content {
    display: flex;
    flex-direction: column;
  }
  @media screen and (max-width: 767px) {
    .lp-profile__content {
      border-bottom: 2px solid #fff;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__prop {
      border-top: 2px dotted #fff;
      padding: 1.125rem;
      display: grid;
      grid-template-columns: 9.375rem 1fr;
      align-items: center;
      gap: 1.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__prop {
      border-top: 2px solid #fff;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__label {
      border-right: 4px solid #fff;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__label {
      padding: 1.8666666667vw;
      text-align: center;
      border-bottom: 1px dotted #fff;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__value {
      padding: 2.6666666667vw 0;
      text-align: center;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__items {
      position: relative;
      z-index: 2;
      background: url("../img/profile_bg2.webp") 50% 0/90rem auto no-repeat;
      min-height: 41.75rem;
      margin-bottom: -4px;
      padding-top: 1.375rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__items {
      min-height: 156vw;
      background: url("../img/profile_bg2_sp.webp") 0% 0/100% auto no-repeat;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__list > li {
      display: grid;
      align-items: center;
      grid-template-columns: 41.3333333333vw 1fr;
      padding: 2.1333333333vw 14.6666666667vw 0 9.3333333333vw;
      height: 46.6666666667vw;
      gap: 0vw;
    }
    .lp-profile__list > li:nth-child(2) {
      padding-top: 10.9333333333vw;
    }
    .lp-profile__list > li:nth-child(3) {
      padding-top: 14.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__item-img {
      width: 38.6666666667vw;
    }
    .lp-profile__item-img.is {
      overflow: hidden;
      height: 34.6666666667vw;
    }
    .lp-profile__item-img.is img {
      margin-top: -4.5333333333vw;
    }
  }
  .lp-profile__item-name {
    font-size: 1.5rem;
    font-weight: bold;
  }
  @media screen and (min-width: 768px) {
    .lp-profile__item-name {
      text-align: center;
      margin: 0 0 1rem 0;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-profile__item-name {
      font-size: 4vw;
      margin-bottom: 2.6666666667vw;
    }
  }
  @media screen and (min-width: 768px) {
    .lp-profile__item-text {
      padding: 0 2.8125rem;
    }
  }
  .lp-mokuiku {
    padding: 3.75rem 0;
    background: #fff;
  }
  @media screen and (max-width: 767px) {
    .lp-mokuiku {
      padding: 12vw 8vw 0 8vw;
    }
  }
  .lp-mokuiku__row {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .lp-mokuiku__row {
      gap: 6.25rem;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 55rem;
    }
  }
  .lp-mokuiku__ttl {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .lp-mokuiku__ttl {
      margin-bottom: 4vw;
      font-size: 5.0666666667vw;
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mokuiku__wtext {
      padding: 0 4vw 10.6666666667vw 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-mokuiku__text {
      font-size: 3.0666666667vw;
    }
  }
  .lp-mokuiku__img img {
    max-width: none;
    width: 45rem;
  }
  .lp-infrormation {
    text-align: center;
    padding: 5.625rem 0 0 0;
    background: #fff url("../img/info_bg.webp") 0 0/11.25rem auto repeat;
  }
  @media screen and (max-width: 767px) {
    .lp-infrormation {
      padding: 10.6666666667vw 5.3333333333vw 0 5.3333333333vw;
    }
  }
  .lp-infrormation iframe {
    width: 100%;
  }
  .lp-infrormation__ttl {
    margin-bottom: 3.125rem;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .lp-infrormation__ttl {
      margin-bottom: 5.3333333333vw;
    }
  }
  .lp-infrormation__ttl img {
    width: 14.375rem;
  }
  @media screen and (max-width: 767px) {
    .lp-infrormation__ttl img {
      width: 30.6666666667vw;
    }
  }
  .lp-infrormation__row {
    position: relative;
  }
  .lp-infrormation__row.is-fire::after {
    animation: yey2 0.8s forwards;
  }
  .lp-infrormation__row::after {
    content: "";
    display: block;
    position: absolute;
    left: 3.125rem;
    top: 0;
    width: 18.75rem;
    height: 18.75rem;
    background: url("../img/info_img.webp") 0% 0%/contain no-repeat;
    transform: translateY(120%);
    opacity: 0;
  }
  @media screen and (max-width: 767px) {
    .lp-infrormation__row::after {
      left: -5.3333333333vw;
      width: 29.3333333333vw;
      height: 29.3333333333vw;
    }
  }
  .lp-infrormation__cal {
    position: relative;
    z-index: 10;
  }
  @media screen and (min-width: 768px) {
    .lp-infrormation__cal {
      width: 61.25rem;
      margin-left: auto;
      margin-right: auto;
    }
  }
  .lp-flash {
    background: url("../img/flash_bg.webp") 0% 0%/cover no-repeat;
    margin-top: -13.3333333333vw;
  }
  @media screen and (min-width: 768px) {
    .lp-flash {
      margin-top: -8.75rem;
    }
  }
  .lp-flash__row {
    display: flex;
  }
  @media screen and (min-width: 768px) {
    .lp-flash__row {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      height: 36.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-flash__row {
      flex-direction: column-reverse;
      height: 117.3333333333vw;
    }
  }
  .lp-flash__row.is-fire .lp-flash__img {
    filter: brightness(100%);
    transform: translateX(0%);
    opacity: 1;
  }
  .lp-flash__row.is-fire .lp-flash__text {
    filter: brightness(100%);
    transform: translateX(-10%);
    opacity: 1;
  }
  .lp-flash__img {
    filter: brightness(1000%);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s;
    transition-delay: 0.3s;
  }
  @media screen and (max-width: 767px) {
    .lp-flash__img {
      position: relative;
      z-index: 2;
      margin: 0 auto;
      width: 89.3333333333vw;
      transition-delay: 0.6s;
    }
  }
  .lp-flash__img img {
    width: auto;
  }
  @media screen and (min-width: 768px) {
    .lp-flash__img img {
      height: 36.25rem;
    }
  }
  .lp-flash__text {
    filter: brightness(1000%);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.35s;
    transition-delay: 0.3s;
  }
  @media screen and (min-width: 768px) {
    .lp-flash__text {
      width: 37.5rem;
      padding-top: 5rem;
      margin-left: -6rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-flash__text {
      position: relative;
      z-index: 1;
      margin: 0 auto -17.6vw auto;
      width: 80vw;
    }
  }
  .lp-bnr {
    padding: 0 0 1.875rem 0;
  }
  .lp-bnr__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  @media screen and (min-width: 768px) {
    .lp-bnr__list {
      display: grid;
      grid-template-columns: repeat(3, 15.5625rem);
      gap: 1rem;
    }
  }
  @media screen and (max-width: 767px) {
    .lp-bnr__list > li {
      gap: 3.4666666667vw;
      width: 40vw;
    }
  }
  .lp-tran {
    opacity: 0;
    filter: brightness(1000%);
    transform: translateY(20px);
    transition: all 0.4s;
  }
  .lp-tran.is-fire,
  .is-fire .lp-tran {
    opacity: 1;
    transform: translateY(0px);
    filter: brightness(100%);
  }
}
/*utility*/
.u-hide {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-hidden-ltSP {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-gtTAB {
    display: none;
  }
}

.u-screen-reader {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}
