/*-------------------- reset.css --------------------*/
html,
body,
main,
header,
section,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  font-size: 16px;
  color: #333;
  scroll-behavior: smooth;
}
article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
ol,
ul {
  list-style: none;
  list-style-type: none;
}
a {
  color: #333;
  display: block;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}
p {
  font-size: 1rem;
  line-height: 1.6;
}
img {
  display: block;
  width: 100%;
  pointer-events: none;
}
img,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
span,
em,
strong {
  user-select: none;
  -webkit-user-drag: none;
}
main {
  display: block;
}
/*-------------------- //reset.css --------------------*/
/*-------------------- common --------------------*/
@font-face {
 font-family: '02UtsukushiMincho';
 font-weight: 400;
 src: url('../font/02UtsukushiMincho.ttf');
}
body {
  color: #fff;
  background-color: #BE0E1B;
  -webkit-font-smoothing: antialiased;
}
main {
  padding: 5rem 0;
  margin: 0 auto;
  text-align: center;
font-family: "02UtsukushiMincho";
position: relative;
}
main::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
background: url('../images/forest.svg') no-repeat center bottom / contain;
  mix-blend-mode: overlay;
      z-index: -2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
      line-height: 1.2;
}
li {
      line-height: 1.6;
}
.sp_br {
  display: block;
}
.pc_br {
  display: none;
}
.all_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: url('../images/halftone_bg.png') no-repeat center / cover;
      z-index: -1;
}
.gb_deco {
  position: fixed;
}
.gb_deco.gb_l {
  position: fixed;
  top: 0;
  left: .25rem;
}
.gb_deco.gb_r {
  position: fixed;
  top: 0;
  right: .25rem;
}
.gb_deco img {
  width: .375rem;
  height: auto;
}
section {
    padding-top: 7.5rem;
}
section .sec_container {
    padding: 0 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}
.sec_tit {
  position: relative;
  margin-bottom: 1.875rem;
}
.sec_tit h2 {
  display: inline-block;
    position: relative;
}
.sec_tit h2 .h2_txt {
  font-size: 2.5rem;
  background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: .01em;
    position: relative;
}
.sec_tit h2 .fairy {
    width: 2.5rem;
    height: auto;
    position: absolute;
    top: -1.25rem;
    left: -2.5rem;
    filter: drop-shadow(0px 0px 2.5px #FFD279);
}
.sec_tit h2 .shooting_s {
    width: 10rem;
    height: auto;
    position: absolute;
    top: -4.175rem;
    left: .5rem;
    transform: rotate(15deg);
    filter: drop-shadow(0px 0px 2.5px #FFD279);
}
.sec_tit h2.deco_r .fairy {
    top: -1.25rem;
    right: -2.5rem;
    left: inherit;
 transform: scaleX(-1);
}
.sec_tit h2.deco_r .shooting_s {
  top: -4.175rem;
  right: .5rem;
  left: inherit;
  transform: rotate(-15deg) scaleX(-1);
}
.sec_tit p {
  font-size: 1rem;
  letter-spacing: .5em;
  font-weight: 100;
}
/*-------------------- //common --------------------*/
/*-------------------- header --------------------*/
.fix_tit {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
      width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 335px;
  margin: 0 auto;
  z-index: 1000;
}
.fix_tit span {
  flex: 3;
}
.fix_tit span.kv_logo {
  flex: 7;
}
/*-------------------- //header --------------------*/
/*-------------------- float_btn --------------------*/
#float_btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .3s, opacity .5s;
  pointer-events: none;
}
#float_btn.show {
  opacity: 1;
  transform: translateY(0px);
  transition: transform .3s, opacity .5s;
    pointer-events: inherit;
}
#float_btn.show:hover {
  transform: scale(1.1) translateY(0px);
  transition: transform .3s;
}
#float_btn .spin_star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 130%;
  height: 130%;
  z-index: 10;
  animation: spinStar 12s infinite ease-in-out;
  transform-origin: center center;
  pointer-events: none;
}
@keyframes spinStar {
  0%{transform: translate(-50%,-50%) rotate(0deg);}
  40%{transform: translate(-50%,-50%) rotate(0deg);}
  50%{transform: translate(-50%,-50%) rotate(180deg);}
  90%{transform: translate(-50%,-50%) rotate(180deg);}
  100%{transform: translate(-50%,-50%) rotate(360deg);}
}
#float_btn .btn_area a {
  width: 6.25rem;
  height: 6.25rem;
  background: rgba(162, 35, 39, .75);
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: .75rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  line-height: 1.6;
  transition: all .3s;
}
#float_btn .btn_area a:hover {
  background: rgba(162, 35, 39, 1);
  transition: all .3s;
}
#float_btn .btn_area a::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border の太さ */
  border-radius: 200px;
  background: linear-gradient(
    90deg,
    #BF9D5A 0%,
    #FFDB93 50%,
    #BF9D5A 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
#float_btn .btn_area a span {
  width: 1rem;
  height: 1rem;
}
/*-------------------- //float_btn --------------------*/
/*-------------------- top --------------------*/
#top {
  position: relative;
    overflow: hidden;
}
section#top {
  padding: 0;
}
#top::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('../images/forest.svg') no-repeat center bottom / contain;
  mix-blend-mode: overlay;
  z-index: -2;
}
#top .kv_img_area {
  width: 100%;
  height: auto;
  z-index: 10;
  position: relative;
      max-width: 640px;
    margin: 0 auto;
}
#top .kv_img_area .kv-content_mask {
  width: 80%;
  height: 80%;
    -webkit-mask: url(../images/kv_mask.svg) no-repeat center center;
    mask: url(../images/kv_mask.svg) no-repeat center center;
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#top .kv_img_area .slider_area {
  width: 100%;
    height: 100%;
position: relative;
}
#top .kv_img_area .slider_area .swiper-slide {
    width: 150%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 100;
  opacity: 0;
  transition: opacity 1s;
  will-change: transform, opacity;
  }
  #top .kv_img_area .slider_area .swiper-slide.active {
    opacity: 1;
    animation: kvZoom 4s linear forwards; /* active時だけ走らせる */
}
@keyframes kvZoom {
  0%{transform: translate(-50%, -50%) scale(1.1);}
  100%{transform: translate(-50%, -50%) scale(1);}
}
  #top .kv_img_area .kv_sub_tit-pc span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 107%;
    height: auto;
    display: none;
}
  #top .kv_img_area .kv_star-pc span {
    position: absolute;
    transform: translateY(-50%);
    width: 7%;
    height: auto;
    animation: kvStar 8s infinite ease-in-out;
}
@keyframes kvStar {
  0%{transform: rotateY(0deg);}
  50%{transform: rotateY(180deg);}
  100%{transform: rotateY(360deg);}
}
  #top .kv_img_area .kv_star-pc span:first-child {
    top: 50%;
    left: -20%;
}
  #top .kv_img_area .kv_star-pc span:last-child {
    top: 50%;
    right: -20%;
}

#top .sub_tit_sp {
  margin-top: 2.5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top .sub_tit_sp p {
  font-size: 1.75rem;
  font-family: "yu-mincho-pr6n", sans-serif;
font-weight: 400;
font-style: normal;
  background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: .01em;
}
#top .sub_tit_sp .sub_tit_line {
  width: .5px;
  height: 40px;
background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
  margin-top: 1.25rem;
  /* animation: scrollLine 3s infinite linear; */
}
/* @keyframes scrollLine {
  0%{transform: scaleY(0); transform-origin: top;}
  25%{transform: scaleY(0); transform-origin: top;}
  45%{transform: scaleY(1); transform-origin: top;}
  50%{transform: scaleY(1); transform-origin: bottom;}
  70%{transform: scaleY(0); transform-origin: bottom;}
  100%{transform: scaleY(0); transform-origin: bottom;}
} */
/*-------------------- //top --------------------*/
/*-------------------- lead --------------------*/
#lead {
  padding-top: 5rem;
  padding: 4rem 1.25rem;
  position: relative;
}
#lead::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  mix-blend-mode: overlay;
  z-index: -2;
}
#lead .lead_line.top {
  display: block;
  width: 100%;
  height: 1.5rem;
  background: url('../images/lead_line-sp.png') no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#lead .lead_line.bottom {
  display: block;
  width: 100%;
  height: 1.5rem;
  background: url('../images/lead_line-sp.png') no-repeat center / contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
#lead h1 {
  font-size: 1.875rem;
  background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
#lead p {
  font-size: .875rem;
  line-height: 2.5;
  margin-top: 1rem;
}
/*-------------------- //lead --------------------*/
/*-------------------- products --------------------*/
#products {
  position: relative;
    overflow: hidden;
}
#products::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #000 0%, #000 85%, rgba(102, 102, 102, 0) 100%);
  mix-blend-mode: overlay;
  z-index: -2;
}
#products .jk_img {
      width: 90%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
#products .jk_img > img {
  filter: drop-shadow(0px 0px 10px #FFD279);
  border: solid 1px;
  border-image: linear-gradient(
  90deg,
  #BF9D5A 0%,
  #FFDB93 50%,
  #BF9D5A 100%
  ) 1;
}
#products .kanzen .jk_img .train {
  width: 170%;
  height: auto;
  position: absolute;
  bottom: -40%;
  right: -25vw;
  mix-blend-mode: overlay;
    opacity: .25;
  z-index: -1;
}
#products .tsujo {
  margin: 80px auto;
}
#products .products_content .products_txt_area {
      width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
#products .tsujo .jk_img span {
    width: 170%;
  height: auto;
  position: absolute;
  bottom: -40%;
    left: -25vw;
  mix-blend-mode: overlay;
  opacity: .25;
  z-index: -1;
      transform: rotateY(180deg);
}

#products .products_name {
  margin-top: 2.5rem;
}
#products .products_name h3 {
      display: inline-block;
    font-size: 1.5rem;
    background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
      -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 0px 2px #FFD47E);
}
#products .products_name h3 span {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url('../images/w_star.png') no-repeat center / contain;
}
#products .products_name p.price {
    font-size: 1.25rem;
  font-family: "yu-mincho-pr6n", sans-serif;
      margin-top: .25rem;
      display: flex;
      align-items: center;
      justify-content: center;
}
#products .products_name p.price span {
    font-size: .875rem;
    font-family: '02UtsukushiMincho';
    margin-left: .5rem;
}
#products .products_name p.p_num {
    font-size: .875rem;
    margin-top: .25rem;
}
#products .products_name p.p_num span {
    font-size: .875rem;
    font-family: "yu-mincho-pr6n", sans-serif;
}
#products .products_benefits {
    margin-top: 2rem;
    text-align: left;
}
#products .products_benefits h4 {
    font-size: 1rem;
    position: relative;
    padding-bottom: .25rem;
}
#products .products_benefits h4::before {
    content: "";
    width: 100%;
    height: .5px;
    position: absolute;
    background: linear-gradient(150deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%);
    bottom: 0;
    left: 0;
    opacity: .7;
}
#products .products_benefits .benefits_list {
    margin-top: .5rem;
}
#products .products_benefits .benefits_list li {
    font-size: .875rem;
}
#products .products_benefits .benefits_list li span {
    font-size: .75rem;
    line-height: 1.5;
    display: block;
}

#products .btn_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1000;
}
#products .reserve_btn {
  display: inline-block;
  background: url('../images/btn_bg.svg') no-repeat center / cover;
  transition: transform .5s;
}
#products .reserve_btn:hover {
  transform: scale(1.05);
  transition: transform .5s;
}
#products .reserve_btn a {
    background: linear-gradient(0deg, #A58340 0%, #E09500 50%, #A58340 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 1.5rem 2.5rem;
    width: 280px;
    display: inline-block;
        letter-spacing: .05em;
}
/*-------------------- //products --------------------*/
/*-------------------- track_list --------------------*/
#track_list .track_content {
    padding: 1.875rem 0;
max-width: 800px;
margin: 0 auto;
position: relative;
}
#track_list .track_content::before {
content: "";
width: 100%;
height: .5px;
position: absolute;
top: 0;
left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 0) 0%, #FFDB93 50%, rgba(191, 157, 90, 0) 100%);
}
#track_list .track_content::after {
content: "";
width: 100%;
height: .5px;
position: absolute;
bottom: 0;
left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 0) 0%, #FFDB93 50%, rgba(191, 157, 90, 0) 100%);
}
#track_list .track_content h3 {
font-size: 1.5rem;
text-align: center;
line-height: 1.6;
}
#track_list .track_content p {
font-size: .875rem;
margin-top: .5rem;
}
#track_list .track_content .track_list_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
      gap: .5rem;
}
#track_list .track_content ul.track_list {
display: flex;
flex-direction: column;
gap: .5rem;
flex: 1;
padding: 0 1.25rem;
}
#track_list .track_content ul.track_list.list_3 {
  margin-top: 1rem;
}
#track_list .track_content ul.track_list li {
font-size: .875rem;
text-align: left;
}
/*-------------------- //track_list --------------------*/
/*-------------------- image --------------------*/
#image .image_content .image_area01 ul {
    display: grid;
  grid-template-columns: repeat(1, minmax(0, 300px));
    gap: 2.5rem;
      justify-content: center;
}
#image .image_content .image_area01 ul li .image_details h4 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}
#image .image_content .image_area01 ul li .image_details .image_details_items {
  margin-top: .75rem;
}
#image .image_content .image_area01 ul li .image_details .image_details_items p {
  font-size: .875rem;
  text-align: left;
  line-height: 2;
}
#image .image_content .image_area01 ul li .image_details .image_details_items p span {
  display: block;
  line-height: 1.4;
  font-size: .75rem;
}
#image .image_content .image_area02 {
  margin-top: 6.25rem;
}
#image .image_content .image_area02 h3 {
  font-size: 1.5rem;
  letter-spacing: .3em;
}
#image .image_content .image_area02 ul {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 300px));
  gap: 2.5rem;
  justify-content: center;
}
#image .image_content .image_area02 ul li .image_details {
text-align: left;
margin-top: .5rem;
}
#image .image_content .image_area02 ul li .image_details small {
font-size: .75rem;
}
#image .image_content .image_area02 ul li .image_details h4 {
font-size: 1rem;
}
#image .image_content .image_area02 ul li .image_r_btn {
  display: inline-block;
  background: url('../images/btn_bg.svg') no-repeat center / cover;
  margin-top: 1.25rem;
  transition: transform .5s;
}
#image .image_content .image_area02 ul li .image_r_btn:hover {
  transform: scale(1.05);
  transition: transform .5s;
}
#image .image_content .image_area02 ul li .image_r_btn a {
    background: linear-gradient(0deg, #A58340 0%, #E09500 50%, #A58340 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 1.625rem 2.5rem;
    width: 300px;
    display: inline-block;
    line-height: 1;
        letter-spacing: .05em;
}
#image .image_content .image_notes {
  margin-top: 6.25rem;
}
#image .image_content .image_notes h5 {
  font-size: 1rem;
}
#image .image_content .image_notes ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
#image .image_content .image_notes ul li {
  text-align: left;
  font-size: .75rem;
}
/*-------------------- //image --------------------*/
/*-------------------- movie --------------------*/
#movie .sec_container {
  padding: 0rem;
  max-width: none;
}
#movie .sec_tit {
  margin-bottom: .625rem;
}
.movie-play {
  width: 17%;
  height: auto;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;border: none;
    cursor: pointer;
  }
.movie-play img {
width: 100%;
height: auto;
}
#movie .yt_btn {
  margin-top: 1rem;
  display: inline-block;
  background: url('../images/btn_bg.svg') no-repeat center / cover;
  transition: transform .5s;
}
#movie .yt_btn:hover {
    transform: scale(1.05);
  transition: transform .5s;
}
#movie .yt_btn a {
    background: linear-gradient(0deg, #A58340 0%, #E09500 50%, #A58340 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
padding: 1.65rem 1.5rem;
    width: 300px;
    display: inline-block;
        letter-spacing: .05em;
}
#movie .mv_coming {
    padding: 2.5rem 0;
}
#movie .mv_coming p {
    font-size: 1.125rem;
    letter-spacing: 0.2em;
}
/*-------------------- movie slick --------------------*/
.slick-slider {
      padding: 20px 0;
    overflow: hidden;
}
.slick-list {
  overflow: visible;
}
.slick-track {
  display: flex;
}
.slick-slide .slide_inner {
aspect-ratio: 16 / 9;
transform: scale(.85);
transition: transform .5s;
position: relative;
}
.slick-slide.slick-center .slide_inner {
  transform: scale(1);
  filter: drop-shadow(0px 0px 4px #FFD279);
  border: solid 1px;
  border-image: linear-gradient(90deg, #BF9D5A 0%, #FFDB93 50%, #BF9D5A 100%) 1;
  transition: transform .5s, filter .3s, border .3s;
}
.slide--movie {
  position: relative;
  height: auto;
}
.movie-thumb {
  width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: no-repeat center / 100%;
}
.slick-slide.slick-center .slide_inner .movie-thumb {
  background-size: 100%;
  transition: background-size .5s;
}
.slick-slide.slick-center .slide_inner .movie-thumb:hover {
  background-size: 105%;
  transition: background-size .5s;
}
.slick-slide.slick-center .openModalBtn .movie-thumb {
  background-size: 100%;
  transition: background-size .5s;
}
.slick-slide.slick-center .openModalBtn:hover .movie-thumb {
  background-size: 105%;
  transition: background-size .5s;
}
/*-------------------- //movie slick --------------------*/
/* -------------------- movie_modal -------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}
.modal-content {
  width: 90%;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close {
  color: #fff;
  float: right;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 5px;
  cursor: pointer;
}
.modal-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#myModal1 .close, #myModal2 .close, #top_banner_Modal1 .close {
    position: absolute;
    right: -.25rem;
    top: -2rem;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: 80%;
    max-width: 800px;
  }
  #myModal1 .close,#myModal2 .close,#top_banner_Modal1 .close {
    right: -5%;
    top: -10%;
}
.close {
    font-size: 36px;
}
}
/* -------------------- //movie_modal -------------------- */
/*-------------------- //movie --------------------*/


@media (min-width: 700px) {
  #image .image_content .image_area01 ul {
  grid-template-columns: repeat(2, minmax(0, 300px));
      gap: 2.5rem 2.25rem;
  }
  #image .image_content .image_area02 ul {
  grid-template-columns: repeat(2, minmax(0, 300px));
      gap: 2.5rem 2.25rem;
  }
}

@media (min-width: 768px) {
  main {
    padding: 7.5rem 0;
}
section {
    padding-top: 2.5rem;
}
section#products {
    padding-top: 7.5rem;
}
  section .sec_container {
  padding: 5rem 2.5rem;
}
  .sp_br {
  display: none;
}
.pc_br {
  display: block;
}
.fix_tit {
    position: absolute;
    top: 2.5rem;
    gap: 7vw;
    width: 80%;
    max-width: 600px;
}
.sec_tit {
    margin-bottom: 3.75rem;
}
.sec_tit h2 .h2_txt {
    font-size: 5rem;
}
.sec_tit h2 .fairy {
    width: 5rem;
    top: -2rem;
    left: -6.25rem;
}
.sec_tit h2 .shooting_s {
  width: 13.5rem;
  top: -5.75rem;
  left: -.75rem;
}
.sec_tit h2.deco_r .fairy {
  top: -2rem;
  right: -6.25rem;
  left: inherit;
  transform: scaleX(-1);
}
.sec_tit h2.deco_r .shooting_s {
    top: -5.75rem;
    right: -0.75rem;
    left: inherit;
    transform: rotate(-15deg) scaleX(-1);
}
.sec_tit p {
    font-size: 1.5rem;
}
#top .kv_img_area {
    margin: 1px auto 5rem;
}
  #top .kv_img_area .kv_sub_tit-pc span {
    display: block;
}
#top .sec_container {
  display: none;
}
#top .sub_tit_sp {
  display: none;
}
#lead .sec_container {
      padding: 3.75rem 2.5rem;
  }
#lead h1 {
    font-size: 2.5rem;
        line-height: 1.8;
}
#lead p {
    font-size: 1.25rem;
    line-height: 3;
    margin-top: 2rem;
}
#lead .lead_line.top,
#lead .lead_line.bottom {
    height: 3.75rem;
    background: url('../images/lead_line-pc.png') no-repeat center / contain;
}
#float_btn {
    right: 2rem;
    bottom: 2rem;
}
#float_btn .btn_area a {
    width: 9.25rem;
    height: 9.25rem;
    font-size: 1rem;
}
#float_btn .btn_area a span {
    width: 1.5rem;
    height: 1.5rem;
}
#products .btn_area {
  flex-direction: row;
}
#track_list .track_content {
    padding: 3.75rem 0;
}
#track_list .track_content h3 {
    font-size: 2.5rem;
}
#track_list .track_content p {
    font-size: 1.5rem;
}
#track_list .track_content .track_list_wrapper {
  flex-direction: row;
  margin-top: 4rem;
}
#track_list .track_content ul.track_list {
    padding: 0 0.75rem;
}
#track_list .track_content ul.track_list li {
    font-size: 1.125rem;
}
#track_list .track_content ul.track_list.list_3 {
    margin-top: 2rem;
}
#image {
    padding-top: 2.5rem;
}
#image .image_content .image_area01 ul li .image_details .image_details_items p {
    font-size: 1rem;
}
#image .image_content .image_area01 ul li .image_details .image_details_items p span {
  font-size: .8125rem;
}
#image .image_content .image_notes h5 {
text-align: left;
}
#image .image_content .image_area02 ul {
    margin-top: 3.75rem;
}
#image .image_content .image_notes ul li {
    font-size: .875rem;
}
#movie .sec_container {
    padding: 5rem 0;
    max-width: none;
}
#movie .sec_tit {
    margin-bottom: 2.5rem;
}
}

@media (min-width: 1100px) {
  #products .sec_tit {
        margin-bottom: 7.5rem;
    }
  #products .products_content {
  display: flex;
  margin-left: 60px;
  position: relative;
}
#products .products_content.tsujo {
  flex-direction: row-reverse;
  margin: 120px auto;
}
  #products .products_content.kanzen::before {
    content: "";
    width: 100%;
    height: .5px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 1) 0%, #FFDB93 50%, rgba(191, 157, 90, 0) 100%);
}
  #products .products_content.kanzen::after {
    content: "";
    width: 100%;
    height: .5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 1) 0%, #FFDB93 50%, rgba(191, 157, 90, 0) 100%);
}
  #products .products_content.tsujo::before {
    content: "";
    width: 100%;
    height: .5px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 0) 0%, #FFDB93 50%, rgba(191, 157, 90, 1) 100%);
}
  #products .products_content.tsujo::after {
    content: "";
    width: 100%;
    height: .5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(150deg, rgba(191, 157, 90, 0) 0%, #FFDB93 50%, rgba(191, 157, 90, 1) 100%);
}
#products .products_content .jk_img {
  flex: 1;
  transform: translate(-60px, -60px);
}
#products .kanzen .jk_img .train {
    width: 220%;
    bottom: -10%;
    right: -150%;
}
#products .tsujo .jk_img .train {
    width: 220%;
    bottom: -8%;
    left: -155%;
}
#products .products_content.tsujo .jk_img {
        flex: 1;
        transform: translate(60px, -60px);
    }
#products .products_content .products_txt_area {
  flex: 1;
padding: 3.75rem 0;
}
#products .products_content .products_txt_area .txt_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}
#products .products_content.tsujo .products_txt_area .txt_inner {
    left: 0%;
    margin-left: 60px;
}
#products .products_name {
  margin: 0;
  text-align: left;
}
#products .products_name h3 {
    font-size: 2.5rem;
}
#products .products_name h3 span {
    top: -3.75rem;
    right: -3.75rem;
    width: 3.75rem;
    height: 3.75rem;
}
#products .products_name p.price {
    font-size: 1.5rem;
    margin-top: 1rem;
    justify-content: flex-start;
}
#products .products_name p.price span {
    font-size: 1rem;
}
#products .products_name p.p_num {
    font-size: 1rem;
    margin: .25rem 0 0 -.5rem;
}
#products .products_benefits h4 {
    font-size: 1.25rem;
    padding-bottom: .5rem;
}
#products .products_benefits h4::before {
    height: 1px;
}
#products .products_benefits .benefits_list li {
    font-size: 1.125rem;
}
#products .products_benefits .benefits_list li span {
  display: block;
    font-size: .875rem;
    line-height: 1.6;
}
#image .image_content .image_area01 ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.75rem 3.125rem;
}
#image .image_content .image_area02 ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.75rem 3.125rem;
}
#movie .mv_coming {
    padding: 5rem 0;
}
#movie .mv_coming p {
    font-size: 1.5rem;
}
}




/*-------------------- footer --------------------*/
.l-footer {
  background-color: #000;
  padding: 50px 40px;
}
.l-footer li {
line-height: inherit;
}
@media screen and (max-width: 959px) {
  .l-footer {
    padding: 45px 20px 51px;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .l-footer__inner {
    display: block;
  }
}
.l-footer__links-list {
  display: flex;
}
@media screen and (max-width: 959px) {
  .l-footer__links-list {
    justify-content: center;
  }
}
.l-footer__links-list-item + .l-footer__links-list-item {
  margin-left: 28px;
}
@media screen and (max-width: 959px) {
  .l-footer__links-list-item + .l-footer__links-list-item {
    margin-left: 20px;
  }
}
.l-footer__links-list-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: inline-block;
  vertical-align: baseline;
  padding-right: 20px;
  position: relative;
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: color 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}
@media (hover: hover) {
  .l-footer__links-list-item a:hover {
    color: #BE0E1B;
  }
  .l-footer__links-list-item a:hover::before {
    background-color: #BE0E1B;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__links-list-item a {
    padding-right: 16px;
    font-size: 15px;
  }
}
.l-footer__links-list-item a::before {
  content: "";
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask: url(../images/arrow02.png) no-repeat center center;
  mask: url(../images/arrow02.png) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: background 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}
@media screen and (max-width: 959px) {
  .l-footer__links-list-item a::before {
    width: 9px;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__sns {
    margin-top: 28px;
  }
}
.l-footer__sns-list {
  display: flex;
}
@media screen and (max-width: 959px) {
  .l-footer__sns-list {
    justify-content: center;
  }
}
.l-footer__sns-list-item {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__sns-list-item + .l-footer__sns-list-item {
  margin-left: 10px;
}
.l-footer__sns-list-item a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .l-footer__sns-list-item a:hover .l-footer__sns-list-icon svg {
    fill: #BE0E1B;
  }
}
.l-footer__sns-list-item svg {
  fill-rule: evenodd;
  clip-rule: evenodd;
  width: 100%;
  height: 100%;
  transition: fill 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}
.l-footer__sns-list-item svg .none {
  fill: none;
}
.l-footer__sns-list-icon {
  margin: 0 auto;
  width: 57%;
}
.l-footer__copy {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3px;
  margin-top: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0.5;
}
@media screen and (max-width: 959px) {
  .l-footer__copy {
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/*-------------------- //footer --------------------*/

/* -------------------- 雪のアニメーション --------------------*/
.snow_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
}
.snow_wrapper span {
  display: block;
  width: 5px;
  height: 5px;
  filter: blur(.5px);
  position: absolute;
  top: 0%;
  left: 0%;
  background: url('../images/snow_01.png') no-repeat center / contain;
  animation: fallsnow01 16s infinite linear;
  transform: translateX(var(--randomX)); /* 左右の動き */
  z-index: 0;
  opacity: .8;
}
.s_wrapper01 span {
  animation: fallsnow01 16s infinite linear;
  width: 28px;
  height: 28px;
}
@keyframes fallsnow01 {
  0% {transform: translate(-20px,-500px) rotate(0deg);opacity: 0;}
  20% {transform: translate(-10px,-300px) rotate(72deg);opacity: .2;}
  40% {transform: translate(0px,-100px) rotate(144deg);opacity: .2;}
  60% {transform: translate(10px,100px) rotate(216deg);opacity: .2;}
  80% {transform: translate(0px,300) rotate(288deg);opacity: .2;}
  100% {transform: translate(-20px,500px) rotate(360deg);opacity: 0;}
}
.s_wrapper02 span {
  animation: fallsnow02 22s infinite linear;
  width: 36px;
  height: 36px;
  background: url('../images/snow_02.png') no-repeat center / contain;
}
@keyframes fallsnow02 {
  0% {transform: translate(-15px,-500px) rotate(-0deg);opacity: 0;}
  10% {transform: translate(-5px,-400px) rotate(-36deg);opacity: .2;}
  20% {transform: translate(5px,-300px) rotate(-72deg);opacity: .2;}
  30% {transform: translate(-5px,-200px) rotate(-108deg);opacity: .2;}
  40% {transform: translate(-15px,-100px) rotate(-144deg);opacity: .2;}
  50% {transform: translate(-5px,0) rotate(-180deg);opacity: .2;}
  60% {transform: translate(0px,100px) rotate(-216deg);opacity: .2;}
  70% {transform: translate(-5px,200px) rotate(-252deg);opacity: .2;}
  80% {transform: translate(-15px,300) rotate(-288deg);opacity: .2;}
  90% {transform: translate(-25px,400px) rotate(-324deg);opacity: .2;}
  100% {transform: translate(-15px,500px) rotate(-360deg);opacity: 0;}
}
/* -------------------- //雪のアニメーション --------------------*/

/* -------------------- inview --------------------*/
.js-fadeKv {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}
.js-fadeKv.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}
.js-slideIn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.js-slideIn.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}
.js-fadeSnow {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.js-fadeSnow.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}
.js-starGrad {
  opacity: 0;
}
.js-starGrad.is-inview {
  opacity: 0;
  animation: .5s starGrad linear 1 forwards;
  animation-delay: 1s;
}
@keyframes starGrad {
  0% {clip-path: inset(0 100% 0 0); opacity: 0;}
50% { opacity: 1;}
100% {clip-path: inset(0 0 0 0); opacity: .8;}
}
.js-h2Shadow {
    transition: all 1s;
}
.js-h2Shadow.is-inview {
  transition: all 1s;
  transition-delay: 1s;
  filter: drop-shadow(0px 0px 2.5px #FFD279);
}
@media (min-width: 768px) {
.js-h2Shadow.is-inview {
        filter: drop-shadow(0px 0px 5px #FFD279);
    }
}
.js-fairyFade {
  opacity: 0;
  transition: all 1s;
  transform: translate(-40px,-40px);
}
.js-fairyFade.is-inview {
  opacity: 1;
  transform: translate(0,0);
  transition: all 1s;
}
.sec_tit h2.deco_r .fairy.js-fairyFade {
  opacity: 0;
  transition: all 1s;
  transform: translate(40px,-40px) scaleX(-1);
}
.sec_tit h2.deco_r .fairy.js-fairyFade.is-inview {
  opacity: 1;
  transform: translate(0,0) scaleX(-1);
  transition: all 1s;
}
.kanzen .js-trainFade {
  opacity: 0;
  transition: all 1s;
  transform: translate(-50px,-20px);
}
.kanzen .js-trainFade.is-inview {
  opacity: .25;
  transition: all 1s;
  transform: translate(0,0);
  transition-delay: .5s;
}
#products .tsujo .jk_img .train {
  opacity: 0;
  transition: all 1s;
  transform: rotateY(180deg) translate(-50px,-20px);
}
#products .tsujo .jk_img .train.is-inview {
  opacity: .25;
  transition: all 1s;
  transition-delay: .5s;
  transform: rotateY(180deg) translate(0,0);
}

/* -------------------- //inview --------------------*/