html {
  scroll-behavior: auto;
}
body {
  font-size: 100%;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: url(/img/bg02.png);
  background-position: center center;
  background-size: 360px;
  background-repeat: repeat;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
  display: block;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
p {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #040000;
  -webkit-font-smoothing: antialiased;
}
.wrapper {
  position: relative;
  overflow-x: clip;
}
.bread_list ul {
  display: flex;
  padding: 0 5% 47px;
}
.bread_list ul li {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  color: #818080;
  padding-right: 15px;
  font-size: 12px;
}

.red_ttl h1 {
  color: #e94746;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
}
.red_ttl p {
  font-size: 16px;
  color: #4f4d4d;
}
.pc_header a {
  position: relative;
}
.pc_header a:hover {
  color: #e94746;
  transition: all 0.4s;
}
.pc_header a::after {
  transform: scale(0, 1);
  background-color: #e94746;
  width: 100%;
  transition: all 0.4s;
  color: #e94746;
  transform-origin: left top;
  content: "";
  position: absolute;
  left: 0px;
  height: 1.2px;
  bottom: -5px;
}
.pc_header a:hover::after {
  transform: scale(1, 1);
}

.loading_videoArea {
  position: fixed;
  /*z-index: 100;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading_video {
  position: relative;
  width: 100%;
  height: 100%;
}

#loading {
  /* top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  overflow: hidden; */
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  transition: all 1s ease; /* フェードインのトランジション */
}

#loading video {
  /* max-width: 100%;
  max-height: 100%; */
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video_sp {
  display: none;
}

#content {
  display: block;
  opacity: 0;
  transition: opacity 1s ease; /* フェードインのトランジション */
}

.box-title {
  opacity: 0; /* 初期は透明 */
  transition: opacity 0.8s;
}

/* アクティブ状態 */
.box-title.active {
  opacity: 1;
}

.parallax-item {
  will-change: transform;
}

@media screen and (min-width: 820px) {
  .video_sp {
    display: none;
  }
  .video {
    display: block;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  body,
  html {
    height: auto;
    overflow: unset !important;
  }
  h2 {
    font-size: 32px;
  }
  p {
    font-size: 14px;
  }
  .bread_list ul li {
    font-size: 11px;
  }
  .red_ttl h1 {
    font-size: 28px;
  }
  .red_ttl p {
    font-size: 14px;
  }
}

/* ------------
ヘッダー
--------------*/
.sp {
  display: none;
}
.header {
  background: url(/img/header.png);
  background-size: 1440px;
  background-repeat: repeat-x;
  background-position: top left;
  height: 80px;
  position: absolute;
}
.nav {
  display: flex;
  align-items: center;
  padding: 15px 80px 0;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーション */
  z-index: 1000;
}

.nav_flex {
  width: 100%;
  height: 60px;
  transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーション */
  transform: translateY(-100%); /* 初期状態で隠す */
  opacity: 0;
  display: flex;
  justify-content: space-between;
}
.logo_img {
  width: 281px;
}
.logo_img.sp {
  transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーション */
  transform: translateY(-100%); /* 初期状態で隠す */
  opacity: 0;
}
.logo_img.sp.active {
  transform: translateY(0) !important; /* 元の位置に戻す */
  opacity: 1 !important; /* フェードイン */
}
.nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0px 5% 0 0;
}
.nav ul li {
  font-size: 14px;
}
.hamburger {
  position: absolute;
  width: 50px;
  height: 40px;
  top: 35%;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
}
.hamburger span {
  width: 48px;
  display: block;
  background-color: #000;
  position: absolute;
  height: 4px;
  transition: all 0.4s;
  font-size: 10px;
}
.hamburger span:first-of-type {
  top: 10px;
}
.hamburger span:nth-of-type(2) {
  top: 20px;
}
.hamburger:hover span:first-of-type,
.hamburger:hover span:nth-of-type(2) {
  top: 15px;
}

.hamburger.active span:first-of-type {
  transform: translate(-50%, -50%) rotate(30deg);
  top: 20px !important;
}

.hamburger.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-30deg);
  top: 20px !important;
}
.hamburger.active .hamburger:hover span {
  top: 30px;
}
.nav_ham ul {
  display: block;
  position: relative;
  z-index: 999;
  /*margin: 110px 0 0;*/
}
.nav_ham li {
  font-size: 24px !important;
  margin: 40px 120px 0;
}
.nav_ham li:first-of-type {
  margin-bottom: 71px;
}
.nav_ham li img {
  width: 144px;
}
.open {
  background: url(/img/sp/nav_bg.png) no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0 4%;
  width: 560px;
  position: absolute;
  padding: 93px 36px;
  height: 1080px;
  display: block;
  transition: all 0.4s linear;
  top: 0;
  right: 0;
  transform: translateX(100vw);
}

.open.active {
  display: block;
  height: 100vh;
  overflow: scroll;
  z-index: 9;
  padding: 50px 0 24px;
  transform: translateX(0vw);
}

.open.active::-webkit-scrollbar {
  display: none;
}
.nav_span {
  font-size: 12px;
}
.nav_contact {
  color: #fff;
  padding: 10px 20px;
  margin: 40px 90px 72px 90px !important;
  background-color: #000;
  position: relative;
  z-index: 1;
}
.nav_contact a {
  width: 100%;
  display: block;
}
.nav_contact a::after {
  background: #fd5e5e;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  z-index: -1;
}
.nav_contact a:hover::after {
  opacity: 1;
}
.nav_contact a:hover {
  color: #fff !important;
}

.nav_ham .nav_privacy,
.nav_copy {
  font-size: 12px !important;
}
.nav_ham a:hover,
.nav_privacy.nav_ham:hover {
  color: #fd5e5e;
  transition: all 0.3s;
}
.nav_copy {
  text-align: center;
  margin: 152px 0 0 0;
}
/* ヘッダーが表示されるときのスタイル */
.header-visible {
  transform: translateY(0) !important; /* 元の位置に戻す */
  opacity: 1 !important; /* フェードイン */
}
@media screen and (max-width: 820px) {
  .video_sp {
    display: block;
  }
  .video {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .header {
    background: url(/img/header.png);
    background-size: 375px 88px;
    background-position: top left;
    background-repeat: repeat-x;
    height: 50px;
  }
  .nav {
    display: block;
    padding: 15px 5%;
  }
  .nav ul {
    display: block;
    margin: 0 0px 0 80px;
  }
  .logo_img {
    width: 180px;
    position: relative;
    z-index: 9999;
  }
  .nav_flex {
    display: flex;
    padding: 20px 4%;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
    width: 100%;
  }
  .hamburger {
    right: 24px;
    top: 45%;
    width: 32px;
    height: 32px;
  }
  .hamburger span {
    width: 32px;
    height: 3px;
  }
  .hamburger span:first-of-type {
    top: -4px !important;
  }
  .hamburger span:nth-of-type(2) {
    top: 4px !important;
  }
  .nav_ham ul li {
    margin-bottom: 30px;
    font-size: 18px !important;
    margin: 0 0 32px;
  }
  .nav_span {
    font-size: 12px;
  }
  .open {
    height: 100vh;
    width: 100%;
    transition: all 0.2s linear;
  }
  .open.active {
    height: 100vh;
    padding: 86px 0 0px;
  }
  .nav_contact {
    margin: 0 -20px 56px !important;
    width: 237px;
  }
  .nav_privacy {
    font-size: 12px !important;
  }
  .nav_copy {
    font-size: 10px !important;

    text-align: center;
    margin: 145px 0 0 0;
  }
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hamburger.active span:first-of-type {
    top: 0px !important;
  }
  .hamburger.active span:nth-of-type(2) {
    top: 0px !important;
  }
}

@media screen and (min-height: 400px) and (max-height: 800px) {
  .nav_ham ul {
    transform: scale(0.9); /* 縮小 */
    transform-origin: top center; /* 上部を基準にスケール */
    transition: transform 0.3s ease; /* スムーズな縮小を適用 */
  }
}

/* -----------
フッター
--------------*/
.footer {
  overflow: clip;
}
.footer_wrapper {
  position: relative;
}
.footer_wrapper::before {
  background: url(/img/footer.png);
  background-size: 1440px 310px;
  background-repeat: repeat-x;
  background-position: bottom left;
  content: "";
  height: 240px;
  display: block;
  position: absolute;
  width: 2880px;
}
.footer_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
}
.footer_privacy p {
  font-size: 12px;
}
.footer_list {
  margin-bottom: 70px;
}
.footer_list img {
  width: 281px;
  margin: 0 0 50px auto;
}
.footer_list ul {
  display: flex;
  gap: 30px;
}
.footer_list li {
  font-size: 16px;
}
.fppter_pc {
  display: none;
}
.footer_hov a {
  position: relative;
}
.footer_hov a::after {
  position: absolute;
  background-color: #fd5e5e;
  width: 110%;
  height: 1.2px;
  bottom: -5px;
  left: -5px;
  content: "";
  transform: scale(0, 1);
  transition: all 0.4s;
  transform-origin: left top;
}
.footer_hov a:hover {
  color: #fd5e5e;
}
.footer_hov a:hover::after {
  transform: scale(1, 1);
}
.footer_privacy a {
  position: relative;
  transition: all 0.3s;
}
.footer_privacy a:hover {
  color: #fd5e5e;
}
.footer_privacy a::after {
  position: absolute;
  background-color: #fd5e5e;
  width: 110%;
  height: 1.2px;
  bottom: -5px;
  left: -5px;
  content: "";
  transform: scale(0, 1);
  transition: all 0.4s;
  transform-origin: left top;
}
.footer_privacy a:hover::after {
  transform: scale(1, 1);
}

.copy {
  text-align: right;
  position: relative;
  padding: 0 5% 24px;
}
.copy p {
  font-size: 12px;
  letter-spacing: 0.08rem;
}
.footer_privacy a {
  font-size: 12px;
}

@media screen and (max-width: 820px) {
  .footer_wrapper::before {
    background: url(/img/sp/footer.png);
    background-size: 375px 392px;
    background-repeat: repeat-x;
    background-position: bottom left;
    content: "";
    height: 306px;
    display: block;
    position: absolute;
    width: 2880px;
    bottom: 0;
  }

  .footer_flex {
    display: block;
    padding: 100px 56px 0;
  }
  .footer_list img {
    width: 240px;
    margin: 0 0 40px;
  }
  .footer_list ul {
    display: block;
  }
  .footer_list li {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .footer_sp {
    display: none;
  }
  .footer_pc {
    font-size: 12px;
  }
  .footer_privacy_sp a {
    font-size: 12px;
  }
  .copy {
    text-align: center;
  }
  .copy p {
    font-size: 10px;
    letter-spacing: unset;
  }
}

/* ------------
ページ共通
---------------*/
.ttl h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.ttl p {
  font-size: 16px;
  color: #4f4d4d;
  font-weight: 500;
}

.button01 {
  position: relative;
  background-color: #fd5e5e;
  width: 280px;
  border-radius: 50px;
  height: 65px;
  padding: 24px 0;
  margin: 40px 0 0 auto;
  font-size: 24px;
  display: block;
  border: #fd5e5e solid 2px;
  transition: all 0.3s;
  z-index: 3;
}
.button01_area p {
  font-family: "Krona One", sans-serif;
  font-size: 14px;
}
.button01_area {
  display: flex;
  justify-content: center;
  font-size: 16px;
  align-items: center;
  position: relative;
}
.button01 img {
  position: absolute;
  right: 34px;
  transition: all 0.3s;
}
.button01:hover {
  background: #fff;
}
.button01:hover img {
  right: 29px;
}

.button02 {
  position: relative;
  background-color: #d9d9d9;
  width: 280px;
  border-radius: 50px;
  height: 65px;
  padding: 24px 0;
  margin: 24px auto 200px;
  font-size: 24px;
  display: block;
  transition: all 0.3s;
  z-index: 3;
}
.button02_area p {
  font-family: "Krona One", sans-serif;
  font-size: 14px;
}
.button02_area {
  display: flex;
  justify-content: center;
  font-size: 16px;
  align-items: center;
  position: relative;
}
.button02 img {
  position: absolute;
  left: 40px;
  transition: all 0.3s;
  width: 15px;
  top: 3px;
}
.button02:hover img {
  left: 35px;
}
.button03 {
  position: relative;
  background-color: #fd5e5e;
  width: 280px;
  border-radius: 50px;
  height: 64px;
  padding: 20px 0;
  margin: 40px auto 200px;
  font-size: 14px;
  display: block;
  border: #fd5e5e solid 2px;
  transition: all 0.3s;
  z-index: 3;
  text-align: center;
  letter-spacing: 1rem;
}
.button03::after {
  content: "";
  background: url(/img/icn_arrow.png) no-repeat;
  position: absolute;
  top: 40%;
  right: 10%;
  width: 18px;
  height: 12px;
}

.button04 {
  position: relative;
  background-color: #fd5e5e;
  width: 280px;
  border-radius: 50px;
  height: 64px;
  padding: 20px 0;
  font-size: 16px;
  display: block;
  border: #fd5e5e solid 2px;
  transition: all 0.3s;
  z-index: 3;
  text-align: center;
  letter-spacing: 1rem;
  position: relative;
}
.button04::after {
  content: "";
  background: url(/img/icn_arrow.png) no-repeat;
  position: absolute;
  top: 40%;
  right: 10%;
  width: 18px;
  height: 12px;
}
.button05 {
  position: relative;
  background-color: #d9d9d9;
  width: 280px;
  border-radius: 50px;
  height: 64px;
  padding: 24px 0;
  font-size: 14px;
  display: block;
  transition: all 0.3s;
  z-index: 3;
  text-align: center;
}
.button05::before {
  content: "";
  background: url(/img/icn_arrowL.png) no-repeat;
  position: absolute;
  top: 32%;
  left: 10%;
  width: 19px;
  height: 20px;
}
.contact_confirmation_button {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 200px;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none !important;
  }
  .text-sp {
    display: none;
  }
  .ttl h1 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .ttl p {
    font-size: 14px;
  }
  .button01 {
    width: 233px;
    height: 56px;
    padding: 19px 0;
  }
  .button01_area {
    font-size: 13px;
  }
  .button01_area img {
    width: 15px;
    top: 2.5px;
    right: 24px;
  }
  .button01_area p {
    padding-right: 11px;
  }
  .button02 {
    width: 233px;
    font-size: 13px;
    height: 56px;
    padding: 22px 0;
    margin: 56px auto 160px;
  }
  .button02 img {
    left: 20px;
    top: 2px;
  }
  .contact_confirmation_button {
    flex-direction: column-reverse;
    gap: 32px;
    margin-bottom: 160px;
  }
  .button04,
  .button05 {
    width: 233px;
    height: 56px;
    font-size: 13px;
    margin: 0 auto;
    padding: 22px 0;
  }
  .button04::after,
  .button05::before {
    width: 14px;
    height: 20px;
    background-size: contain;
    top: 44%;
  }
}
