@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
  scroll-padding: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  font-family: "YakuHanJP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳＰゴシック", "MS PGothic", sans-serif;
  position: relative;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
/*************************************************
footer
*************************************************/
/*************************************************
navi
*************************************************/
/*************************************************
top
*************************************************/
.pc_fv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -9999;
  background-image: url("../images/pc_fv_bg.png");
  background-size: cover; /* 画面いっぱいに広げる */
  background-position: center; /* 中央揃え */
  background-repeat: no-repeat; /* 繰り返しなし */
}

.wrapper_pc {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .wrapper_pc {
    width: 100%;
  }
}

.sp-header {
  position: fixed;
  top: 0;
  height: 60px;
  z-index: 1000;
  display: none;
  max-width: 467px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .sp-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 999px) {
  .sp-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
}
.sp-header.menu-open {
  background-color: transparent;
  box-shadow: none;
}

.hamburger-btn {
  position: relative;
  width: 20px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #331814;
  transition: all 0.3s ease;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 8px;
}
.hamburger-btn span:nth-child(3) {
  bottom: 0;
}
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

.sp-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  background-color: #f3f2f2;
  transition: left 0.3s ease;
  z-index: 998;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-menu {
    display: block;
  }
}
@media (max-width: 999px) {
  .sp-menu {
    display: block;
  }
}
.sp-menu.active {
  left: 0;
}
.sp-menu .kv_logo {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media (max-width: 999px) {
  .sp-menu .kv_logo {
    margin-top: 80px;
    margin-bottom: 30px;
  }
}
.sp-menu .kv_logo img {
  width: 260px;
  height: auto;
}
@media (max-width: 999px) {
  .sp-menu .kv_logo img {
    width: 200px;
  }
}
.sp-menu .day {
  margin-bottom: 52px;
}
@media (max-width: 999px) {
  .sp-menu .day {
    margin-bottom: 40px;
    padding: 0 45px;
  }
}
.sp-menu .day img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
.sp-menu .pc_navi {
  margin-bottom: 140px;
}
@media (max-width: 999px) {
  .sp-menu .pc_navi {
    margin-bottom: 60px;
    padding: 0 45px;
  }
}
.sp-menu .pc_navi ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: center;
}
.sp-menu .pc_navi ul:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_navi ul {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 999px) {
  .sp-menu .pc_navi ul {
    gap: 15px;
  }
}
.sp-menu .pc_navi li {
  position: relative;
  font-size: 20px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #331814;
}
@media (max-width: 999px) {
  .sp-menu .pc_navi li {
    font-size: 20px;
  }
}
.sp-menu .pc_navi li::after {
  position: absolute;
  content: "";
  background: #331814;
  width: 1px;
  height: 20px;
  right: -10px;
  top: 0;
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_navi li::after {
    display: none;
  }
}
.sp-menu .pc_navi li:last-child::after {
  display: none;
}
.sp-menu .pc_navi li a {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_navi li a {
    text-align: center;
    letter-spacing: 0.05rem;
  }
}
.sp-menu .pc_navi .active {
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_navi .active {
    font-weight: 500;
  }
}
.sp-menu .pc_navi .active::after {
  content: none;
}
.sp-menu .nav_line {
  position: absolute;
  bottom: 10%;
  display: block;
  width: 100%;
}
.sp-menu .sns {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .sp-menu .sns {
    display: none;
  }
}
@media (max-width: 999px) {
  .sp-menu .sns {
    margin-bottom: 40px;
  }
}
.sp-menu .sns ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
  gap: 20px;
}
.sp-menu .sns img {
  width: 22px;
  height: auto;
}
.sp-menu .pc_footer {
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_footer .link {
    display: none;
  }
}
.sp-menu .pc_footer .link ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-menu .pc_footer .link li {
  position: relative;
  font-size: 14px;
  color: #331814;
  letter-spacing: 0.02em;
  line-height: 18px;
}
.sp-menu .pc_footer .link li::after {
  position: absolute;
  content: "";
  background: #331814;
  width: 1px;
  height: 16px;
  right: -5px;
  top: 0;
}
.sp-menu .pc_footer .link li:last-child::after {
  display: none;
}
.sp-menu .pc_footer .link li a {
  text-decoration: none;
  color: inherit;
}
.sp-menu .pc_footer .copy p {
  font-size: 14px;
  font-weight: bold;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  font-style: normal;
  opacity: 0.5;
}
@media screen and (max-width: 599px) {
  .sp-menu .pc_footer .copy p {
    font-size: 8px;
    opacity: 1;
  }
}

.pc_menu {
  position: fixed;
  max-width: 467px;
  width: 100%;
  height: 100vh;
  top: 0;
  padding: 40px 40px 20px 40px;
}
@media screen and (max-width: 599px) {
  .pc_menu {
    display: none;
  }
}
@media (max-width: 999px) {
  .pc_menu {
    display: none;
  }
}
.pc_menu .pc_menu_wrap {
  width: 100%;
  position: absolute;
  top: 6.5104166667vw;
  left: 50%;
  transform: translateX(-50%);
}
.pc_menu .pc_menu_wrap .kv_logo {
  width: 100%;
  margin: 0 auto 50px;
}
.pc_menu .pc_menu_wrap .kv_logo a img {
  max-width: 330px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.pc_menu .pc_menu_wrap .day {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 3.90625vw;
}
.pc_menu .pc_menu_wrap .day img {
  width: 100%;
  display: block;
}
.pc_menu .pc_menu_wrap .pc_navi {
  width: 100%;
  padding: 0 40px;
}
.pc_menu .pc_menu_wrap .pc_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.pc_menu .pc_menu_wrap .pc_navi ul li {
  position: relative;
  list-style: none;
  font-size: 20px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #331814;
}
.pc_menu .pc_menu_wrap .pc_navi ul li::after {
  position: absolute;
  content: "";
  background: #331814;
  width: 1px;
  height: 20px;
  right: -10px;
  top: 0;
}
.pc_menu .pc_menu_wrap .pc_navi ul li:last-child::after {
  display: none; /* 最後の要素の下線を非表示 */
}
.pc_menu .pc_menu_wrap .pc_navi ul li a {
  display: block;
  letter-spacing: 0.05rem;
}
.pc_menu .pc_menu_wrap .pc_navi ul .active {
  font-weight: 700;
}
.pc_menu .pc_menu_wrap .pc_navi ul .active::after {
  content: none;
}
.pc_menu .sns {
  position: absolute;
  bottom: 7.8125vw;
  left: 50%;
  transform: translateX(-50%);
}
.pc_menu .sns ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.pc_menu .sns ul li {
  margin-right: 20px;
}
.pc_menu .sns ul li img {
  width: 22px;
}
.pc_menu .link ul {
  display: flex;
  justify-content: center;
}
.pc_menu .link ul li {
  position: relative;
  font-size: 14px;
  color: #523D24;
  letter-spacing: 0.02em;
  line-height: 18px;
  margin-right: 10px;
}
.pc_menu .link ul li::after {
  position: absolute;
  content: "";
  background: #331814;
  width: 1px;
  height: 16px;
  right: -5px;
  top: 0;
}
.pc_menu .link ul li:last-child::after {
  display: none; /* 最後の要素の下線を非表示 */
}
.pc_menu .pc_footer {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.pc_menu .pc_footer .copy p {
  font-size: 14px;
  font-weight: bold;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  font-style: normal;
  opacity: 0.5;
}

.wrapper_content {
  background-color: #fff;
  max-width: 467px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin-left: 533px;
  z-index: 10;
}
.wrapper_content img {
  max-width: 100%;
}
.wrapper_content main {
  color: #523D24;
}
@media (max-width: 999px) {
  .wrapper_content {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_content {
    width: 100%;
    margin-left: 0;
  }
}

.howto_area.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .howto_area.is_sp {
    display: block;
    position: fixed;
    right: 0;
    top: 50vh;
    transform: translateY(-50%);
    padding: 2rem 0.25rem;
    border: 1px solid #523D24;
    border-right: none;
    box-sizing: border-box;
    z-index: 10;
    width: 1.875rem;
    min-width: 28px;
    max-width: 35px;
  }
  .howto_area.is_sp a {
    display: block;
  }
  .howto_area.is_sp a img {
    display: block;
    width: 0.9375rem;
    min-width: 14px;
    max-width: 18px;
    height: auto;
  }
}

.sns_area {
  position: fixed;
  left: 15px !important;
  z-index: 9999;
  width: 15px;
  top: 48vh;
}
.sns_area ul li {
  margin-bottom: 5px;
}
.sns_area ul li a img {
  display: block;
  width: 100%;
}

header {
  padding-top: 35px;
  padding-left: 37px;
  padding-right: 37px;
  position: relative;
  overflow: hidden;
}
header .background-area {
  position: absolute;
  inset: 0;
  z-index: 0;
}
header .bg-line {
  position: absolute;
  top: 0;
  right: -5px;
  width: 100%;
  height: 120px;
  background-image: url("../images/line_01.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 47% auto;
}
@media screen and (min-width: 1025px) {
  header .bg-line {
    background-size: 43% auto;
  }
}
header .mask-box {
  position: absolute;
  inset: 0;
  background: white;
  animation: revealMask 1s forwards;
}
header .foreground-area {
  position: relative;
  z-index: 1; /* 背景より上に表示 */
}
@keyframes revealMask {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
header .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 共通の星の初期状態 */
  /* 星それぞれの位置とアニメーション遅延 */
  /* 星のフェードインアニメーション */
}
header .stars .star {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  animation: fadeInStar 0.5s forwards;
}
header .stars .star-1 {
  top: 2.0182291667vw;
  right: 4.8177083333vw;
  width: 1.5625vw;
  height: 1.5625vw;
  animation-delay: 1.5s;
}
@media screen and (max-width: 599px) {
  header .stars .star-1 {
    width: 24px;
    height: 24px;
    right: 74px;
    top: 31px;
  }
}
header .stars .star-2 {
  top: 3.7760416667vw;
  right: 3.5807291667vw;
  width: 0.5859375vw;
  height: 0.5859375vw;
  animation-delay: 1.8s;
}
@media screen and (max-width: 599px) {
  header .stars .star-2 {
    width: 9px;
    height: 9px;
    right: 55px;
    top: 50px;
  }
}
header .stars .star-3 {
  top: 3.9713541667vw;
  right: 2.9296875vw;
  width: 1.1067708333vw;
  height: 1.1067708333vw;
  animation-delay: 2.1s;
}
@media screen and (max-width: 599px) {
  header .stars .star-3 {
    width: 17px;
    height: 17px;
    right: 45px;
    top: 61px;
  }
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
header img {
  display: block;
}

.introduction {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
}
.introduction .ribbon {
  width: 80px;
  text-align: center;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1025px) {
  .introduction .ribbon {
    width: 100px;
  }
}
.introduction .center {
  text-align: center;
  line-height: 20px;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: #523D24;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .introduction .center {
    font-size: 14px;
  }
}
.introduction .day {
  margin: 0 auto;
  margin-bottom: 23px;
}
.introduction .day img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .introduction .day {
    width: 100%;
  }
}
.introduction .bold {
  font-size: 10px;
  font-weight: bold;
  color: #523D24;
  letter-spacing: 0.02em;
  line-height: 18px;
}
@media screen and (min-width: 1025px) {
  .introduction .bold {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.introduction .body {
  margin-top: 18px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  .introduction .body {
    margin-top: 25px;
  }
}
.introduction .body p {
  font-size: 10px;
  letter-spacing: 0.01em;
  line-height: 18px;
  margin-bottom: 3px;
}
@media screen and (min-width: 1025px) {
  .introduction .body p {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.introduction .image img {
  box-shadow: 5px 5px 0px #e5e5e5;
}

.mark-animate {
  background: linear-gradient(transparent 60%, #d8e6dd 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  display: inline;
}

@keyframes markHighlight {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
.mark-animate.animate-start {
  animation: markHighlight 0.6s ease forwards;
}

.line_area_01 {
  position: relative;
  overflow: hidden;
  padding: 40px;
  margin-top: -15px;
  z-index: -9999;
}
.line_area_01 .bg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73px;
  background-image: url("../images/line_02.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% auto;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .line_area_01 .bg-line {
    height: 80px;
  }
}
.line_area_01 .mask-box {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 1;
  transform: translateX(0%);
  transition: transform 1s ease;
}
.line_area_01.active .mask-box {
  transform: translateX(-100%);
  transition-delay: 0.3s;
}
.line_area_01 .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.line_area_01 .stars .star {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}
.line_area_01 .stars .star-1 {
  bottom: 0;
  right: 5.4036458333vw;
  width: 0.78125vw;
  height: 0.78125vw;
}
@media screen and (max-width: 599px) {
  .line_area_01 .stars .star-1 {
    width: 12px;
    height: 12px;
    right: 83px;
    bottom: 0px;
  }
}
.line_area_01 .stars .star-2 {
  bottom: 1.1067708333vw;
  right: 4.2317708333vw;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (max-width: 599px) {
  .line_area_01 .stars .star-2 {
    width: 16px;
    height: 16px;
    bottom: 17px;
    right: 65px;
  }
}
.line_area_01 .stars .star-3 {
  bottom: 1.7578125vw;
  right: 0.9765625vw;
  width: 0.6510416667vw;
  height: 0.6510416667vw;
}
@media screen and (max-width: 599px) {
  .line_area_01 .stars .star-3 {
    width: 10px;
    height: 10px;
    bottom: 27px;
    right: 15px;
  }
}
.line_area_01 .star.show {
  animation: fadeInStar 0.5s forwards;
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

.present {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
  margin-top: -25px;
}
.present h2 {
  margin-bottom: 10px;
}
.present h2 img {
  width: 87px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .present h2 img {
    width: 120px;
  }
}
.present p {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: #523D24;
}
@media screen and (min-width: 1025px) {
  .present p {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.present p .red {
  color: #e12f29;
  font-weight: bold;
}
.present .present_image {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.present .present_image img {
  width: 230px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .present .present_image img {
    width: 80%;
  }
}
.present .bg_gray_box {
  background-color: #f3f2f2;
  padding: 12px 15px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1025px) {
  .present .bg_gray_box {
    padding: 20px;
  }
}
.present .bg_gray_box h4 {
  color: #523D24;
  font-size: 10px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  .present .bg_gray_box h4 {
    font-size: 14px;
    font-weight: bold;
  }
}
.present .bg_gray_box ul {
  list-style-position: inside;
}
.present .bg_gray_box ul li {
  list-style-type: disc;
  color: #523D24;
  font-size: 10px;
  line-height: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1025px) {
  .present .bg_gray_box ul li {
    font-size: 14px;
    line-height: 1.5rem;
    margin-bottom: 10px;
  }
  .present .bg_gray_box ul li:last-of-type {
    margin-bottom: 0;
  }
}
.present .bg_gray_box ul li::marker {
  font-size: 0.5em;
}
.present .remarks ul li {
  color: #523D24;
  font-size: 10px;
  line-height: 20px;
}
@media screen and (min-width: 1025px) {
  .present .remarks ul li {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.present .remarks ul li::before {
  content: "＊"; /* 任意の文字や記号を指定 */
  margin-right: 0.5em;
}

.fadein-trigger {
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.fadein-trigger.is-inview {
  opacity: 1;
  filter: blur(0);
}

.line_area_02 {
  position: relative;
  overflow: hidden;
  padding: 55px;
  margin: 0 auto;
  margin-top: -60px;
  margin-bottom: 30px;
  max-width: 467px;
  width: 100%;
  height: 102px;
  z-index: 1;
}
.line_area_02 .bg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background-image: url("../images/line_03.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 467px auto;
  z-index: 1;
}
.line_area_02 .mask-box {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: white;
  z-index: 1;
  transform: translateX(0%);
  transition: transform 1s ease;
}
.line_area_02.active .mask-box {
  transform: translateX(100%);
  transition-delay: 0.3s;
}
.line_area_02 .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.line_area_02 .stars .star {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}
.line_area_02 .stars .star-1 {
  top: 5.2083333333vw;
  left: 1.953125vw;
  width: 0.5859375vw;
  height: 0.5859375vw;
}
@media screen and (max-width: 599px) {
  .line_area_02 .stars .star-1 {
    width: 9px;
    height: 9px;
    left: 30px;
    top: 100px;
  }
}
.line_area_02 .stars .star-2 {
  top: 3.90625vw;
  left: 2.9296875vw;
  width: 0.9114583333vw;
  height: 0.9114583333vw;
}
@media screen and (max-width: 599px) {
  .line_area_02 .stars .star-2 {
    width: 14px;
    height: 14px;
    left: 45px;
    top: 80px;
  }
}
.line_area_02 .stars .star-3 {
  top: 0.9114583333vw;
  right: 4.6875vw;
  width: 1.1067708333vw;
  height: 1.1067708333vw;
}
@media screen and (max-width: 599px) {
  .line_area_02 .stars .star-3 {
    width: 17px;
    height: 17px;
    right: 72px;
    top: 14px;
  }
}
.line_area_02 .stars .star-4 {
  top: 1.5625vw;
  right: 4.4921875vw;
  width: 0.6510416667vw;
  height: 0.6510416667vw;
}
@media screen and (max-width: 599px) {
  .line_area_02 .stars .star-4 {
    width: 10px;
    height: 10px;
    right: 69px;
    top: 24px;
  }
}
.line_area_02 .stars .star-5 {
  top: 2.7994791667vw;
  right: 2.4088541667vw;
  width: 2.4739583333vw;
  height: 2.4739583333vw;
}
@media screen and (max-width: 599px) {
  .line_area_02 .stars .star-5 {
    width: 38px;
    height: 38px;
    right: 37px;
    top: 43px;
  }
}
.line_area_02 .star.show {
  animation: fadeInStar 0.5s forwards;
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

.howto {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
}
.howto h2 {
  margin-bottom: 20px;
}
.howto h2 img {
  width: 150px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .howto h2 img {
    width: 190px;
  }
}
.howto h3 {
  margin-bottom: 5px;
}
.howto h3 img {
  width: 90px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .howto h3 img {
    width: 120px;
  }
}
.howto .step {
  margin-bottom: 10px;
}
.howto .step p {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: #523D24;
}
@media screen and (min-width: 1025px) {
  .howto .step p {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.howto .step p.smale {
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  .howto .step p.smale {
    font-size: 13px;
    line-height: 1.5rem;
  }
}
.howto .sns_box {
  list-style: none;
  position: relative;
  padding: 20px 0;
}
.howto .sns_box ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
}
.howto .sns_box ul li a {
  display: inline-block;
}
.howto .sns_box ul li a img {
  width: 80%;
}
@media screen and (min-width: 1025px) {
  .howto .sns_box ul li a img {
    width: 90%;
  }
}
.howto .sns_box .follow_iamge {
  position: absolute;
  content: "";
  height: 30px;
  width: 74px;
  right: 8px;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .howto .sns_box .follow_iamge {
    height: auto;
    width: 100px;
    right: 16px;
    top: 0;
  }
}
.howto .howto_image {
  margin-top: 20px;
  margin-bottom: 30px;
}
.howto .serach_box {
  text-align: center;
  margin: 20px 0;
}
.howto .serach_box a {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #523D24;
  text-align: center;
  background-color: #e8e6e5;
  padding: 10px 35px 10px 50px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .howto .serach_box a {
    font-size: 16px;
  }
}
.howto .serach_box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../images/icon_serch.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.howto .remarks ul li {
  color: #523D24;
  font-size: 10px;
  line-height: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
.howto .remarks ul li::before {
  content: "＊"; /* 任意の文字や記号を指定 */
  margin-right: 0.5em;
}
@media screen and (min-width: 1025px) {
  .howto .remarks ul li {
    font-size: 12px;
    line-height: 1.3rem;
  }
}
.howto .step3_box {
  display: flex;
  justify-content: space-between;
}
.howto .step3_box .left {
  flex-basis: 73%;
}
.howto .step3_box .left .tag_image {
  width: 140px;
  padding-top: 25px;
}
@media screen and (min-width: 1025px) {
  .howto .step3_box .left .tag_image {
    width: 80%;
  }
}
.howto .step3_box .left .tag_copy {
  margin-top: 20px;
}
.howto .step3_box .left .tag_copy p {
  display: inline-block;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  color: #523D24;
  text-align: center;
  background-color: #e8e6e5;
  padding: 10px 25px 10px 40px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .howto .step3_box .left .tag_copy p {
    font-size: 14px;
  }
}
.howto .step3_box .left .tag_copy p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../images/icon_copy.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.howto .step3_box .right {
  flex-basis: 37%;
}
.howto .step3_box .right img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .howto .step3_box .right img {
    width: 90%;
  }
}

.mobile_area {
  height: 104px; /* 高さを100pxに設定 */
  background-image: url("../images/howto_mobile.png"); /* ← 画像パスを指定 */
  background-repeat: no-repeat; /* 繰り返しなし */
  background-size: 100% auto; /* 横幅100%、縦は自動 */
  background-position: -265px center; /* 中央寄せ（任意） */
  background-size: cover;
  position: relative;
  margin-top: -15px;
}
@media screen and (min-width: 1025px) {
  .mobile_area {
    background-position: -210px center;
  }
}
.mobile_area .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mobile_area .stars .star {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}
.mobile_area .stars .star-1 {
  top: 4.2317708333vw;
  left: 2.6041666667vw;
  width: 0.9765625vw;
  height: 0.9765625vw;
}
.mobile_area .stars .star-2 {
  top: 2.6041666667vw;
  left: 3.90625vw;
  width: 0.8463541667vw;
  height: 0.8463541667vw;
}
.mobile_area .stars .star-3 {
  top: 3.2552083333vw;
  left: 8.6588541667vw;
  width: 0.6510416667vw;
  height: 0.6510416667vw;
}
.mobile_area .star.show {
  animation: fadeInStar 0.5s forwards;
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

.voice {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
  margin-bottom: 50px;
}
.voice h2 {
  margin-bottom: 20px;
  text-align: center;
}
.voice h2 img {
  width: 133px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .voice h2 img {
    width: 180px;
  }
}
.voice .comment h3 {
  margin-bottom: 10px;
}
.voice .comment h3 img {
  width: 135px;
}
@media screen and (min-width: 1025px) {
  .voice .comment h3 img {
    width: 170px;
  }
}
.voice .comment p {
  font-size: 10px;
  color: #523D24;
  letter-spacing: 0.02em;
  line-height: 18px;
}
@media screen and (min-width: 1025px) {
  .voice .comment p {
    font-size: 14px;
    line-height: 1.8rem;
  }
}
.voice .comment .oggi {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .voice .comment .oggi {
    margin-bottom: 30px;
  }
}
.voice .comment .staff {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .voice .comment .staff {
    margin-bottom: 30px;
  }
}
.voice .comment .staff h3 {
  text-align: right;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 150px; /* スライダー全体の高さは任意 */
}
@media screen and (min-width: 1025px) {
  .slider {
    height: 200px;
  }
}

.slide-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scroll-left 20s linear infinite; /* ← 追加 */
}

.slide {
  width: 100px;
  height: 125px;
  flex-shrink: 0;
  margin: 0 5px;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  transition: margin 1s ease;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 1025px) {
  .slide {
    width: 125px;
    height: 156px;
  }
}

/* スライド画像サイズ調整 */
.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px; /* 任意：角丸などあれば */
}

/* 横スライドアニメーション */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 表示領域に入ったときに上下ズレる */
.slide.is-visible:nth-child(odd) {
  transform: translateY(0px);
}

.slide.is-visible:nth-child(even) {
  transform: translateY(20px);
}

.check {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
  margin-top: 40px;
}
.check h2 {
  margin-bottom: 20px;
}
.check h2 img {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .check h2 img {
    width: 100px;
  }
}
.check .check_list {
  margin-bottom: 30px;
}
.check .check_list ul {
  list-style-position: inside;
}
.check .check_list ul li {
  list-style-type: disc;
  color: #523D24;
  font-size: 12px;
  line-height: 20px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .check .check_list ul li {
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.check .check_list ul li::marker {
  font-size: 0.5em;
}
.check .oubo_box {
  background-color: #f3f2f2;
  padding: 18px 12px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box {
    padding: 20px;
  }
}
.check .oubo_box h3 {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box h3 {
    font-size: 16px;
  }
}
.check .oubo_box h3 span {
  font-weight: normal;
  font-size: 10px;
  margin-left: 8px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box h3 span {
    font-size: 12px;
  }
}
.check .oubo_box .inner {
  height: 140px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin; /* Firefox用 */
  scrollbar-color: #fff transparent; /* Firefox用 */
}
@media screen and (min-width: 1025px) {
  .check .oubo_box .inner {
    height: 180px;
  }
}
.check .oubo_box .inner p {
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box .inner p {
    font-size: 12px;
    line-height: 1.5rem;
  }
}
.check .oubo_box .inner p:last-of-type {
  margin-bottom: 0px;
}
.check .oubo_box .inner a {
  text-decoration: underline;
}
.check .oubo_box .inner h4 {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box .inner h4 {
    font-size: 14px;
    line-height: 1.6;
  }
}
.check .oubo_box .inner h4:first-child {
  margin-top: 0;
}
.check .oubo_box .inner ul,
.check .oubo_box .inner ol {
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  padding-left: 20px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box .inner ul,
  .check .oubo_box .inner ol {
    font-size: 12px;
    line-height: 1.5rem;
    padding-left: 25px;
  }
}
.check .oubo_box .inner ul {
  list-style-type: disc;
}
.check .oubo_box .inner ul li::marker {
  font-size: 0.5em;
}
.check .oubo_box .inner li {
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .check .oubo_box .inner li {
    margin-bottom: 10px;
  }
}
.check .oubo_box .inner li:last-child {
  margin-bottom: 0;
}
.check .oubo_box .inner ol {
  counter-reset: item;
}
.check .oubo_box .inner ol li {
  display: block;
}
.check .oubo_box .inner ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: bold;
}

/* Chrome, Edge, Safari 用 */
.oubo_box .inner::-webkit-scrollbar {
  width: 5px; /* スクロールバーの幅 */
}

.oubo_box .inner::-webkit-scrollbar-track {
  background: transparent; /* スクロールバーの背景（トラック部分） */
}

.oubo_box .inner::-webkit-scrollbar-thumb {
  background-color: #fff; /* スクロールつまみ部分 */
  border-radius: 3px;
}

.mark-animate_02 {
  background: linear-gradient(transparent 60%, #fad9d1 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  display: inline;
}

@keyframes markHighlightRed {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
.mark-animate_02.animate-start {
  animation: markHighlightRed 0.6s ease forwards;
}

.line_area_04 {
  position: relative;
  overflow: hidden;
  padding: 65px;
  margin-top: -75px;
  z-index: -9999;
}
@media screen and (min-width: 1025px) {
  .line_area_04 {
    padding: 60px;
  }
}
.line_area_04 .bg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url("../images/line_04.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% auto;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .line_area_04 .bg-line {
    height: 105px;
  }
}
.line_area_04 .mask-box {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 1;
  transform: translateX(0%);
  transition: transform 1s ease;
}
.line_area_04.active .mask-box {
  transform: translateX(-100%);
  transition-delay: 0.3s;
}
.line_area_04 .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.line_area_04 .stars .star {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}
.line_area_04 .stars .star-1 {
  top: -23px;
  right: 1.3020833333vw;
  width: 1.3020833333vw;
  height: 1.3020833333vw;
}
@media screen and (max-width: 599px) {
  .line_area_04 .stars .star-1 {
    width: 20px;
    height: 20px;
    right: 20px;
    top: 0;
  }
}
.line_area_04 .stars .star-2 {
  bottom: 0.3255208333vw;
  left: 5.859375vw;
  width: 1.1067708333vw;
  height: 1.1067708333vw;
}
@media screen and (max-width: 599px) {
  .line_area_04 .stars .star-2 {
    width: 18px;
    height: 18px;
    left: 90px;
    bottom: 5px;
  }
}
.line_area_04 .stars .star-3 {
  bottom: 1.3020833333vw;
  left: 3.90625vw;
  width: 0.6510416667vw;
  height: 0.6510416667vw;
}
@media screen and (max-width: 599px) {
  .line_area_04 .stars .star-3 {
    width: 10px;
    height: 10px;
    left: 60px;
    bottom: 20px;
  }
}
.line_area_04 .star.show {
  animation: fadeInStar 0.5s forwards;
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

.faq {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
  margin-top: 25px;
  position: relative;
}
.faq h2 {
  margin-bottom: 20px;
}
.faq h2 img {
  width: 44px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .faq h2 img {
    width: 3.515625vw;
  }
}

.qa_list {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 30px 0;
  line-height: 20px;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: #523D24;
}
@media screen and (min-width: 1025px) {
  .qa_list {
    font-size: 14px;
    line-height: 1.5rem;
  }
}

.qa_item {
  margin-bottom: 16px;
}

.qa_item dt,
.qa_item dd {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.qa_item dt {
  margin-bottom: 6px;
}

.qa_item dt img,
.qa_item dd img {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  margin-top: 1px;
}
@media screen and (min-width: 1025px) {
  .qa_item dt img,
  .qa_item dd img {
    width: 24px;
  }
}

.faq_flower {
  position: absolute;
  content: "";
  top: -30px;
  right: 45px;
  width: 85px;
  height: 85px;
}
@media screen and (min-width: 1025px) {
  .faq_flower {
    top: -20px;
    width: 100px;
    height: 100px;
  }
}

.contact {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
  margin-top: 25px;
  position: relative;
}
.contact .contact_box {
  text-align: center;
  margin: 20px 0;
}
.contact .contact_box a {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #523D24;
  text-align: center;
  background-color: #e8e6e5;
  padding: 10px 35px 10px 50px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .contact .contact_box a {
    font-size: 16px;
  }
}
.contact .contact_box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../images/icon_mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .contact .contact_box a::before {
    width: 18px;
    height: 18px;
  }
}
.contact .remarks ul li {
  color: #523D24;
  font-size: 10px;
  line-height: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1025px) {
  .contact .remarks ul li {
    font-size: 12px;
    line-height: 1.5rem;
  }
}
.contact .remarks ul li::before {
  content: "＊"; /* 任意の文字や記号を指定 */
  margin-right: 0.5em;
}

.tegaki_area {
  height: 95px;
  background-image: url("../images/tegaki_bg.png"); /* ← 画像パスを指定 */
  background-repeat: no-repeat; /* 繰り返しなし */
  background-size: 100% auto; /* 横幅100%、縦は自動 */
  background-position: -90px center; /* 中央寄せ（任意） */
  background-size: cover;
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .tegaki_area {
    background-position: -40px center;
  }
}
.tegaki_area .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tegaki_area .stars .star {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}
.tegaki_area .stars .star-1 {
  top: 2.2786458333vw;
  left: 1.7578125vw;
  width: 0.8463541667vw;
  height: 0.8463541667vw;
}
@media screen and (max-width: 599px) {
  .tegaki_area .stars .star-1 {
    width: 13px;
    height: 13px;
    left: 27px;
    top: 35px;
  }
}
.tegaki_area .stars .star-2 {
  top: 0.9114583333vw;
  left: 3.0598958333vw;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (max-width: 599px) {
  .tegaki_area .stars .star-2 {
    width: 16px;
    height: 16px;
    left: 47px;
    top: 14px;
  }
}
.tegaki_area .star.show {
  animation: fadeInStar 0.5s forwards;
}
@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

footer {
  margin: 0 auto;
  width: 100%;
  max-width: 467px;
  padding: 0 45px;
}
footer .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  footer .content {
    margin-top: 30px;
  }
}
footer .content .left {
  flex-basis: 30%;
}
footer .content .left img {
  width: 100%;
  height: auto;
}
footer .content .right {
  flex-basis: 63%;
}
footer .content .right .sns {
  margin-bottom: 10px;
}
footer .content .right .sns ul {
  display: flex;
  align-items: center;
  list-style: none;
}
footer .content .right .sns ul li {
  margin-right: 20px;
}
footer .content .right .sns ul li img {
  width: 22px;
}
footer .content .right .link {
  font-size: 10px;
  color: #523D24;
  letter-spacing: 0.02em;
  line-height: 18px;
}
@media screen and (min-width: 1025px) {
  footer .content .right .link {
    font-size: 12px;
    line-height: 1.5rem;
  }
}

.copy p {
  text-align: center;
  font-size: 8px;
  color: #523D24;
  letter-spacing: 0.02em;
  line-height: 18px;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  padding: 8px 0;
}
@media screen and (min-width: 1025px) {
  .copy p {
    font-size: 10px;
  }
}

.svg-wrapper {
  width: 100%;
  position: absolute;
  opacity: 0;
  bottom: 9.765625vw;
}
.svg-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
  visibility: hidden;
}
.svg-wrapper path,
.svg-wrapper g {
  opacity: 0;
}
.svg-wrapper.is-loaded {
  opacity: 1;
}
.svg-wrapper.is-loaded svg {
  visibility: visible;
}
.svg-wrapper.is-loaded path,
.svg-wrapper.is-loaded g {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.svg-wrapper.is-animated {
  clip-path: inset(0 100% 0 0);
  animation: revealLine 2s ease-out forwards;
}

@keyframes revealLine {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.sparkle-1,
.sparkle-2,
.sparkle-3,
.sparkle-4,
.sparkle-5,
.sparkle-6 {
  opacity: 0;
  transform-origin: center;
}

.sparkle-1 {
  animation: sparkleRotate 3s ease-in-out infinite;
  animation-delay: 2.2s;
}

.sparkle-2 {
  animation: sparkleScale 2.5s ease-in-out infinite;
  animation-delay: 2.5s;
}

.sparkle-3 {
  animation: sparklePulse 2.8s ease-in-out infinite;
  animation-delay: 2.7s;
}

.sparkle-4 {
  animation: sparkleRotate 3.2s ease-in-out infinite;
  animation-delay: 2.9s;
}

.sparkle-5 {
  animation: sparkleScale 2.6s ease-in-out infinite;
  animation-delay: 3.1s;
}

.sparkle-6 {
  animation: sparklePulse 2.4s ease-in-out infinite;
  animation-delay: 3.3s;
}

@keyframes sparkleRotate {
  0%, 100% {
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
}
@keyframes sparkleScale {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes sparklePulse {
  0%, 100% {
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.3;
  }
}
.control-button {
  display: block;
  margin: 50px auto;
  padding: 14px 40px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-family: sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.control-button:hover {
  background-color: #fff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.control-button:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.svg-wrapper.reset .sparkle-1,
.svg-wrapper.reset .sparkle-2,
.svg-wrapper.reset .sparkle-3,
.svg-wrapper.reset .sparkle-4,
.svg-wrapper.reset .sparkle-5,
.svg-wrapper.reset .sparkle-6 {
  animation: none !important;
  opacity: 0 !important;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background-color: #fff;
}
#loading .loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}
@media (min-width: 768px) {
  #loading .loading-bg {
    background-image: url("../images/pc_fv_bg.png");
  }
}
@media (max-width: 999px) {
  #loading .loading-bg {
    background-image: url("../images/sp_fv_bg.png");
  }
}
#loading .loading-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  #loading .loading-logo {
    top: 45%;
  }
}
@media (max-width: 999px) {
  #loading .loading-logo {
    top: 40%;
  }
}
#loading .loading-logo img {
  width: 300px;
  height: auto;
  filter: blur(4px);
  transition: filter 1.5s ease-out;
}
@media (max-width: 999px) {
  #loading .loading-logo img {
    width: 200px;
  }
}
#loading.logo-show .loading-logo {
  opacity: 1;
}
#loading.logo-show .loading-logo img {
  filter: blur(0);
}
#loading.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

#main-content {
  opacity: 0;
  transition: opacity 1s ease-out;
}
#main-content.show {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-in-up:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-in-up:nth-child(3) {
  transition-delay: 0.6s;
}

.leaves-container {
  display: none;
}
@media screen and (max-width: 599px) {
  .leaves-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
  }
}

@media screen and (max-width: 599px) {
  .leaf {
    position: absolute;
    width: 25px;
    height: 25px;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
  }
  .leaf img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .leaf.small {
    width: 15px;
    height: 15px;
  }
  .leaf.medium {
    width: 25px;
    height: 25px;
  }
  s .leaf.large {
    width: 30px;
    height: 30px;
  }
  .leaf.animating {
    animation: fall var(--fall-duration) linear forwards;
  }
  .leaf.animating img {
    animation: sway var(--sway-duration) ease-in-out infinite, spin var(--spin-duration) linear infinite;
  }
}

@media screen and (max-width: 599px) {
  @keyframes fall {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
      opacity: 0;
    }
    5% {
      opacity: 1;
    }
    95% {
      opacity: 1;
    }
    100% {
      transform: translateY(var(--end-y)) translateX(var(--end-x)) rotate(var(--rotation));
      opacity: 0;
    }
  }
  @keyframes sway {
    0%, 100% {
      transform: translateX(0px);
    }
    33% {
      transform: translateX(var(--sway-amount-1));
    }
    66% {
      transform: translateX(var(--sway-amount-2));
    }
  }
  @keyframes spin {
    from {
      transform: rotateZ(0deg);
    }
    to {
      transform: rotateZ(360deg);
    }
  }
}
/* アニメーション開始時間をずらす修飾子 */
.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

.delay-4 {
  animation-delay: 2s;
}

.delay-5 {
  animation-delay: 2.5s;
}

.delay-6 {
  animation-delay: 3s;
}

.delay-7 {
  animation-delay: 3.5s;
}

.delay-8 {
  animation-delay: 4s;
}

.delay-9 {
  animation-delay: 4.5s;
}

.delay-10 {
  animation-delay: 5s;
}

/* アニメーション速度の修飾子 */
.speed-slow {
  animation-duration: 4s;
}

.speed-normal {
  animation-duration: 2.5s;
}

.speed-fast {
  animation-duration: 1.5s;
}

/* パターン1: 点滅 */
.sparkle-blink {
  animation: sparkle-blink 2s ease-in-out infinite;
}

@keyframes sparkle-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
/* パターン2: 脈動 */
.sparkle-pulse {
  animation: sparkle-pulse 3s ease-in-out infinite;
}

@keyframes sparkle-pulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.2);
    filter: brightness(1.5);
  }
}
/* パターン4: ランダム明滅 */
.sparkle-random {
  animation: sparkle-random 2.5s ease-in-out infinite;
}

@keyframes sparkle-random {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  20% {
    opacity: 0.7;
    filter: brightness(1.2);
  }
  40% {
    opacity: 1;
    filter: brightness(0.8);
  }
  60% {
    opacity: 0.5;
    filter: brightness(1.4);
  }
  80% {
    opacity: 0.9;
    filter: brightness(1.1);
  }
}
/* パターン5: 輝きの波 */
.sparkle-shine {
  animation: sparkle-shine 3s ease-in-out infinite;
}

@keyframes sparkle-shine {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
  }
}