[data-browse-mode=P] .c-footer__info{
  background-color: #fff;
}


#this_feels_good {
  background-color: #000;
  background: url("../../img/usr/freepage/this-feels-good/main_visual.jpg") top center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top 30%;
  /* background-attachment: fixed; */
  transition: background-attachment 0.2s; /* スムーズ切替用（任意） */
}
#this_feels_good .inner {
    max-width: 1200px;
    margin: 0 auto;
}
#this_feels_good .contents-head {
  max-width: 1200px;
  padding: 150px 0 178px;
  margin: 0 auto;
  position: relative;
}
#this_feels_good .contents-head h1 {
  width: 65%;
  padding: 0;
  margin: 0 0 40px 0;
}
#this_feels_good .contents-head p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 2.4;
  letter-spacing: 0.15em;
}

/* ムービーモーダル */
#this_feels_good .movie_modal{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 100;
}
#this_feels_good .movie_modal_wrap{
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  /* margin-top: 20%; */
    margin-top: 100px;
}
#this_feels_good .movie_modal .modal_close{
  width: 100%;
  text-align: right;
  cursor: pointer;
  margin-bottom: 10px;
}
#this_feels_good .movie_modal .modal_close img{
  width: 33px;
  text-align: right;
  cursor: pointer;
}

.hacobune-app-container[data-v-0f4823bf]{
  padding: 10px 30px;
}

.hacobune-app-container[data-v-0f4823bf]{
  background-color: transparent;
}
.hacobune-app-container[data-v-06004ed0]{
  padding: 0;
}
.hacobune-unit-video-outline[data-v-5ee0864c]{
  display: none;
}



#this_feels_good .movie_modal {
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 100;

  display: flex;
  align-items: center;   /* 縦中央 */
  justify-content: center; /* 横中央 */
  flex-direction: column;
}

#this_feels_good .movie_modal_wrap {
  max-width: 900px;
  width: 100%;
  margin-top: 100px;
}


/* 矢印アニメーション */
#this_feels_good .arrow_down.fluffy {
  width: 40px;
  height: 50px;

  animation: fluffy 3s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translate(calc(-50% + 0px), calc(-50% + 100px));
  }
  50% {
    transform: translate(calc(-50% + 0px), calc(-50% + 50px));
  }
}


/* コンテンツのスライド表示 */
#this_feels_good .slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
    transform: translate(0,100%);
    visibility: hidden; /* 初期表示時は完全に非表示 */
  }
#this_feels_good .scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
    visibility: visible!important; /* 表示時にvisibilityも有効にする */
  }

/* 動画 */
#this_feels_good .content_movie{
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 240px;
}


/* View items */
#this_feels_good .content_more{
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 70px 0;
}
#this_feels_good .content_more .content_more_title{
  color: #fff;
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}
#this_feels_good .content_more .content_more_link{
  display: flex;
  justify-content: center;
  gap: 70px;
}
#this_feels_good .content_more .content_more_link a{
  color: #fff;
  text-align: center;
  font-size: 13px;
  position: relative;
}
#this_feels_good .content_more .content_more_link a::before{
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  right: -30px;
  top: 50%;
  transform: translate(-50%, -50%);
}
#this_feels_good .content_more .content_more_link a::after{
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: -18px;
  top: 30%;
  transform: rotate(45deg);
}

#this_feels_good .content_movie .btn{
  width: 285px;
  line-height: 53px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #fff;
  border-radius: 26px;
  padding: 0 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#this_feels_good .content_movie .btn img{
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media screen and (max-width: 650px) {

#this_feels_good {
  background-color: #000;
  background-size: auto 100%;
  -webkit-background-size:  auto 100%;
  background-position: 20% 0; /* 横20%、縦は上端 */
}

#this_feels_good .inner {
    max-width: 90%;
}
#this_feels_good .contents-head {
  padding: 60px 0 90px;
}
#this_feels_good .contents-head h1 {
  width: 70%;
  margin: 0 0 15px 0;
}
#this_feels_good .contents-head p {
  font-size: 12px;
  font-weight: normal;
  color: #fff;;
}

/* ムービーモーダル */
#this_feels_good .movie_modal_wrap{
  max-width: 90%;
}
#this_feels_good .movie_modal .modal_close{
  display: block;
  width: 100%;
}

.hacobune-app-container[data-v-0f4823bf]{
  padding: 10px 0;
}

.hacobune-app-container[data-v-0f4823bf]{
  background-color: transparent;
}
.hacobune-app-container[data-v-0f4823bf],
.hacobune-unit-video[data-v-0100fce1]{
  width: 100%;
  margin: 0;
}
.hacobune-unit-video-outline[data-v-0100fce1]{
  display: none;
}

/* 矢印アニメーション */
#this_feels_good .arrow_down.fluffy {
    position: static;      /* fixed を解除して通常のフローに */
    display: block;
    margin: 0 auto;        /* 横方向中央に */
    transform: none;       /* translateX(-50%) は不要 */
}

@keyframes fluffy {
  0%, 100% {
    transform: translate(calc(-50% + 0px), calc(-50% + 0px));
  }
  50% {
    transform: translate(calc(-50% + 0px), calc(-50% + 20px));
  }
}

/* コンテンツのスライド表示 */
#this_feels_good .slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
    transform: translate(0,100%);
    visibility: hidden; /* 初期表示時は完全に非表示 */
  }
#this_feels_good .scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
    visibility: visible!important; /* 表示時にvisibilityも有効にする */
  }

/* 動画 */
#this_feels_good .content_movie{
  text-align: center;
  margin-bottom: 25px;
}


/* View items */
#this_feels_good .content_more{
  margin-top: 110px;
  margin-bottom: 0px;
  padding: 20px 0;
}
#this_feels_good .content_more .content_more_title{
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 12px;
}
#this_feels_good .content_more .content_more_link{
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  justify-content: flex-start;
  gap: 14px 30px;
  margin: 0 auto;
  padding: 0 10px;

}
#this_feels_good .content_more .content_more_link li{
width:calc((100% / 2) - (30px / 2));
font-size: min(calc(13 * (100vw / 430)), 13px);
}
#this_feels_good .content_more .content_more_link a{
  color: #fff;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
#this_feels_good .content_more .content_more_link a::before{
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  right: -25px;
  top: 50%;
  transform: translate(-50%, -50%);
}
#this_feels_good .content_more .content_more_link a::after{
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: -13px;
  top: 30%;
  transform: rotate(45deg);
}

#this_feels_good .content_movie .btn{
  width: 240px;
  font-size: 13px;
  padding: 0 20px;
  line-height: 49px;
  margin: 0 auto;
}
#this_feels_good .content_movie .btn img{
  margin-right: 3px;
}

}


@media (max-width: 720px) {
    .hacobune-unit-video[data-v-5ee0864c] {
      margin: 0;
    }
}

.hacobune-unit-video-outline{
  display: none;
}

.hacobune-app-container[data-v-6230ae80]{
  padding: 0;
}

@media (max-width: 720px) {
  .hacobune-unit-video[data-v-1c72f55c]{
    margin: 0;
  }
}