html {
  font-size: 100%;
}

@media screen and (max-width: 767.98px) {
  html {
    font-size: 3.8647342995vw;
  }
}

.wrap {
}

.wrap:before {
  content: "";
  background-image: url(../img/pc_bg.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}

.wrap__inner {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

:where(.wrap) img {
  width: 100%;
}

.pc-area {
  margin-right: 8.3%;
  white-space: nowrap;
}

.pc-area__logo {
  position: fixed;
  flex-shrink: 0;
  top: 0;
  left: 0;
  margin-left: 50px;
  margin-top: 50px;
  width: 250px;
  flex-shrink: 0;
}

.pc-area__item1 {
  width: 288px;
  width: 18rem;
  height: 230.35px;
  height: 14.396875rem;
  flex-shrink: 0;
  aspect-ratio: 288/230.35;
  bottom: 2%;
  left: 1%;
  position: fixed;
}

.pc-area__item1 img {
}

.pc-area__item2 {
  width: 312.709px;
  width: 19.5443125rem;
  height: 184.207px;
  height: 11.5129375rem;
  flex-shrink: 0;
  aspect-ratio: 312.71/184.21;
  position: fixed;
  right: 0%;
  top: 5%;
}

.pc-area__item2 img {
}

.pc-area__logo img {
}

.pc-area__menu {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
}

.pc-area__menu-list {
}

.pc-area__menu-item {
}

.pc-area__menu-item a,
.hamburger-menu__list-item a {
  color: #020021;
  font-family: "Noto Sans JP";
  font-size: 16.5px;
  font-size: 1.03125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 37.58px;
  line-height: 2.34875rem;
  letter-spacing: 1.815px;
  letter-spacing: 0.1134375rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.pc-area__menu-item a:before,
.hamburger-menu__list-item a:before {
  content: "";
  width: 5px;
  height: 20px;
  flex-shrink: 0;
  background: #00a0e9;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.content {
  /* max-width: 460px;
  /* max-width: 28.75rem;
  /* max-width: 460px;
  /* max-width: 28.75rem; */
  /* width: 100%; */
  /* flex: 1; */
  min-width: 416px;
  position: relative;
  /* height: 2000px;
  /* height: 125rem; */
  /* background-color: red; */
}

.content__inner {
  max-width: 416px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 0.625rem rgb(0 0 0 / 10%);
  position: relative;
}

.content__inner > * {
  position: relative;
}

.pc-area__qr {
  /* width: 400px;
  /* width: 25rem;
  /* width: 400px;
  /* width: 25rem; */
  margin-left: 10.2%;
}

.pc-area__qr-inner {
  position: sticky;
  top: 50vh;
  width: 158px;
  width: 12rem;
  height: auto;
  transform: translateY(-50%);
  text-align: center;
}

.pc-area__qr-inner p {
  white-space: nowrap;
  margin-bottom: 10px;
  font-size: 16px;
}


.pc-area__qr img {
  padding: 30px;
}

@media screen and (max-width: 1059.98px) {
  .pc-area,
  .pc-area__qr {
    display: none;
  }
}

.spcta {
  
  position: relative;
  padding: 11px 0 6px;
  padding: 0.6875rem 0 0.375rem;
  position: fixed;
  bottom: 0;
  /* left: 0; */
  width: 416px;
}


.spcta__pop img {
}

.spcta__close {
  width: 60px;
  width: 3.75rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-10%, -35%);
}

.spcta__close img {
}

.spcta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 5px;
}

.spcta__btn a {
}

.spcta__btn a img {
}

@media screen and (max-width: 767.98px) {
  .spcta {
    width: 100%;
  }
}


/* Header */
.header {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 15px;
  padding: 1.3125rem 0.9375rem;
  background-color: #fff; /* 必要に応じて背景色を設定 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* 必要に応じて影を設定 */
  z-index: 1000; /* メニューリストより手前に表示 */
}
.header__logo {
  width: 100.596px;
  width: 6.28725rem;
  flex-shrink: 0;
}
.header__logo img {
  /* height: 40px;
  /* height: 2.5rem; */ /* ロゴのサイズ調整 */
  /* width: auto; */
}

/* Hamburger Menu */
.hamburger-menu {
  /* position: fixed; は削除 */
  /* top: 20px;
  /* top: 1.25rem; は削除 */
  /* right: 20px;
  /* right: 1.25rem; は削除 */
  z-index: 1001; /* ヘッダーより手前に表示 */
  cursor: pointer;
  /* ヘッダー内で右寄せにする場合は header の flex 設定で調整 */
  display: none;
}

.hamburger-menu__line {
  position: relative;
  width: 30px;
  width: 1.875rem;
  height: 22px;
  height: 1.375rem;
  display: block;
}

.hamburger-menu__line span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu__line span:nth-child(1) {
  top: 0;
}

.hamburger-menu__line span:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}

.hamburger-menu__line span:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* Active state */
.hamburger-menu.is-active .hamburger-menu__line span:nth-child(1) {
  top: 10px;
  top: 0.625rem;
  transform: rotate(45deg);
}

.hamburger-menu.is-active .hamburger-menu__line span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active .hamburger-menu__line span:nth-child(3) {
  top: 10px;
  top: 0.625rem;
  transform: rotate(-45deg);
}

.hamburger-menu__list {
  position: fixed;
  top: 60px;
  top: 3.75rem; /* ヘッダーの高さ分下げる (headerのpaddingや高さに合わせて調整) */
  /* left: 0; */
  width: 100%;
  height: calc(100vh - 60px); /* ヘッダーの高さを引いた分 */
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999; /* ヘッダーよりは奥、コンテンツよりは手前 */
  text-align: left;
  width: 460px;
  width: 28.75rem;
}

/* JavaScriptでリスト自体に is-active を付与する前提のセレクタに変更 */
.hamburger-menu__list.is-active {
  opacity: 1;
  visibility: visible;
}

.hamburger-menu__list-item {
  margin: 4px 0;
  margin: 0.25rem 0;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.hamburger-menu__list-item a {
  color: #333;
  text-decoration: none;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* Hide on larger screens */
@media screen and (min-width: 1060px) {
  .header {
    /* PCではヘッダーごと非表示 */
    /* display: none; */
  }
  .hamburger-menu__list {
    /* PCではメニューリストも非表示 */
    display: none;
  }
  .content {
    /* PC表示用にpadding-topをリセット */
    padding-top: 0 !important; /* 既存のスタイルを上書き */
  }
}

/* SP表示でコンテンツがヘッダーに隠れないように調整 */
@media screen and (max-width: 1059.98px) {
  .pc-area__logo,
  .pc-area__item1,
  .pc-area__item2,
  .pc-area__qr {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }

  .content {
    /* padding-top: 60px;
    /* padding-top: 3.75rem; */ /* ヘッダーの高さ分 (headerのpaddingや高さに合わせて調整) */
  }
  .content__inner {
    /* .content__inner の margin-top も考慮 */
    /* 固定ヘッダーがあるので不要になる可能性 */
  }
}

@media screen and (max-width: 767.98px) {
  .content {
    padding-top: 0px;
    padding-top: 0rem;
    width: 100%;
    min-width: initial;
  }

  .wrap {
  }

  .wrap:before {
  }

  .wrap__inner {
    width: 100%;
  }

  :where(.wrap) img {
  }

  .pc-area {
  }

  .pc-area__logo {
  }

  .pc-area__item1 {
  }

  .pc-area__item1 img {
  }

  .pc-area__item2 {
  }

  .pc-area__item2 img {
  }

  .pc-area__logo img {
  }

  .pc-area__menu {
  }

  .pc-area__menu-list {
  }

  .pc-area__menu-item {
  }

  .pc-area__menu-item a,
  .hamburger-menu__list-item a {
  }

  .pc-area__menu-item a:before,
  .hamburger-menu__list-item a:before {
  }

  .content {
  }

  .content__inner {
    width: 100%;
    max-width: initial;
    border: none;
  }

  .content__inner > * {
  }

  .pc-area__qr {
  }

  .pc-area__qr-inner {
  }

  .pc-area__qr img {
  }

  @media screen and (max-width: 1059.98px) {
    .pc-area,
    .pc-area__qr {
    }
  }

  .spcta {
  }

  .spcta__pop {
  }

  .spcta__pop img {
  }

  .spcta__close {
  }

  .spcta__close img {
  }

  .spcta__btn {
  }

  .spcta__btn a {
  }

  .spcta__btn a img {
  }

  @media screen and (max-width: 767.98px) {
    .spcta {
    }
  }

  /* Header */
  .header {
  }

  .header__logo img {
  }

  /* Hamburger Menu */
  .hamburger-menu {
    display: block;
  }

  .hamburger-menu__line {
  }

  .hamburger-menu__line span {
  }

  .hamburger-menu__line span:nth-child(1) {
  }

  .hamburger-menu__line span:nth-child(2) {
  }

  .hamburger-menu__line span:nth-child(3) {
  }

  /* Active state */
  .hamburger-menu.is-active .hamburger-menu__line span:nth-child(1) {
  }

  .hamburger-menu.is-active .hamburger-menu__line span:nth-child(2) {
  }

  .hamburger-menu.is-active .hamburger-menu__line span:nth-child(3) {
  }

  .hamburger-menu__list {
    width: 100%;
    left: 0;
  }

  /* JavaScriptでリスト自体に is-active を付与する前提のセレクタに変更 */
  .hamburger-menu__list.is-active {
  }

  .hamburger-menu__list-item {
  }

  .hamburger-menu__list-item a {
  }
}

.s01 {
}
.s01 img {
}
.s02 {
}
.s02 img {
}
.s03 {
}
.s03 img {
}
.s04 {
}
.s04 img {
}
.s05 {
}
.s05 img {
}
.s06 {
}
.s06 img {
}
.s07 {
}
.s07 img {
}
.s08 {
}
.s08 img {
}
.s09 {
  position: relative;
}
.s09 img {
}
.s09__cta {
  position: absolute;
  bottom: 50px;
  bottom: 3.125rem;
  width: 87%;
  left: 50%;
  transform: translateX(-50%);
}
.cta {
}
.s09__cta a {
  margin: 10px 0;
  margin: 0.625rem 0;
  display: block;
}
.s09__cta a img {
}
.s10 {
}
.s10 img {
}
.s11 {
}
.s11 img {
}
.s12 {
}
.s12 img {
}
.s13 {
}
.s13 img {
}
.s14 {
}
.s14 img {
}
.s15 {
}
.s15 img {
}
.s16 {
}
.s16 img {
}
.s17 {
}
.s17 img {
}
.s18 {
}
.s18 img {
}
.s20 {
}
.s20 img {
}
.s21 {
}
.s21 img {
}
.s22 {
}
.s22 img {
}
.s23 {
}
.s23 img {
}
.s24 {
}
.s24 img {
}
.s25 {
}
.s25 img {
}
.s26 {
}
.s26 img {
}
.s27 {
  position: relative;
}
.s27 img {
}
.s27__video {
  position: absolute;
  bottom: 96px;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 15px;
  border-radius: 0.9375rem;
  overflow: hidden;
}
.s27__video video {
}
.s28 {
}
.s28 img {
}
.s29 {
}
.s29 img {
}
.s30 {
}
.s30 img {
}
.s31 {
}
.s31 img {
}
.s32 {
}
.s32 img {
}
.s33 {
}
.s33 img {
}
.s34 {
}
.s34 img {
}
.s35 {
}
.s35 img {
}
.s36 {
  position: relative;
}
.s36 img {
}
.s37 {
}
.s37 img {
}
.s38 {
}
.s38 img {
}
.s39 {
}
.s39 img {
}
.s40 {
}
.s40 img {
}
.footer {
}
.footer a {
}
.footer small {
}

.footer {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.footer a {
  color: #848484;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  text-decoration: none;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  border-bottom:1px solid #848484;

}

.footer small {
  color: #848484;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  padding-top: 10px;
} 