@charset "UTF-8";
main {
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 0;
    max-width: 430px;
    border-radius: 0;
    overflow: hidden;
  }
}

img {
  display: block;
  border: none;
  outline: none;
}

/*==================================================
ヘッダー
===================================*/
.bl-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0 375px; /* 左右の余白 */
  z-index: -1;
  pointer-events: none; /* 背景扱いにする場合 */
  background-image: url("../img/pc_bg.webp"); /* CSS背景 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 各カラム調整 */
.bl-header__left,
.bl-header__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bl-header__left img {
  width: 40%;
  max-width: 243px;
  height: auto;
  object-fit: contain;
}

.bl-header__right img {
  width: 25%;
  max-width: 229px;
  height: auto;
  object-fit: contain;
  padding-top: 10px;
}

.bl-header__right p {
  font-family: "Noto Sans JP";
  font-weight: 300;
  padding-top: 10px;
  font-size: calc(100vw / 80);
  letter-spacing: 2.5%;
  line-height: calc(100vw / 83.478);
  color: #ffff
}

.container {
  z-index: 10; /* 背景より前面に */
  pointer-events: auto; /* 操作可能にする */
  text-align: center;
}

/* スマホ非表示 */
/* @media screen and (max-width: 750px) {
  .bl-header {
    display: none;
  }
} */


/*==================================================
body
===================================*/

body {
  font-family: "A1ゴシック M", "A1ゴシック B", "Noto Sans JP";
  color: #3a2525;
  background-color: silver;
}
body.is-active {
  height: 100%;
  overflow: hidden;
}

/*==================================================
BeerSlider
===================================*/


.before-after-view {
  position: relative;
  overflow: hidden;
  z-index: 3;
}


#container1{
	position: absolute;
    top: 12.2%;
    width: 83.1%;
    left: 50%;
    transform: translateX(-50%);
}

#container1 .beer-reveal, #slider6 .beer-reveal{
	border-right:solid 2px hsla(0,0%,100%,.5);
    border-color:#cccccc;
    box-sizing:content-box;
}

#container1img{
    width: 100%;
  }

.beer-handle {
	border:2px solid #cccccc;
    background:transparent;
    will-change: transform;
}

.beer-range::slider-thumb {
  cursor: pointer;
  border: none;
}

.beer-range::-webkit-slider-thumb {
  cursor: pointer;
  border: none;
}

.beer-handle:before{
	border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #cccccc;
    top: 50%;
    transform: translateY(-50%);
    left: 64%;
}

.beer-handle:after{
	border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #cccccc;
    border-left:none;
    top: 50%;
    transform: translateY(-50%);
    right: 60%;
}

/*==================================================
左からフェードイン
===================================*/
.FadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
右からフェードイン
===================================*/
.FadeRightTrigger {
  opacity: 0;
}

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
下からフェードイン
===================================*/
.FadeUpTrigger,
.FadeUpTrigger01,
.FadeUpTrigger02,
.FadeUpTrigger03 {
  opacity: 0;
}

.FadeUpTrigger_sp {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .FadeUpTrigger_sp {
    opacity: 0;
  }
}

.FadeUpTriggerLoad {
  opacity: 0;
}

.FadeUpFvTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp01 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp02 {
  animation-name: fadeUpAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp03 {
  animation-name: fadeUpAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
上からフェードイン
===================================*/
.FadeDownTrigger {
  opacity: 0;
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
フェードイン
===================================*/
.FadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/*==================================================
3枚スライダー
===================================*/

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.background-img {
  width: 100%;
  display: block;
}

.slick-track {
  height: 200px;
}


.skin2 {
  position: relative;
  overflow: hidden;
}

.skin2_container {
  position: absolute;
  width: 100%;
  height: 40%;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skin2_text_right {
  position: absolute;
  width: 57%;
  top: 66%;
  left: 64%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.skin2_text_left {
  position: absolute;
  width: 57%;
  top: 88%;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.skin2_slidein_left_wrapper {
  position: absolute;
  width: 50%;
  top: 62.5%;
  left: 0%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.skin2_slidein_right_wrapper {
  position: absolute;
  width: 40%;
  top: 87%;
  right: 0%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.slider .slick-slide {
  margin: 0px; /* 左右の余白（スライド間のスペース） */
  width: 175px !important; /* 画像を囲む要素の大きさ（余白を設定） */
}

.slick-list {
  height: 100%;
  width: 100%;
  /* overflow: visible; */
}


.slick-bg_skin10 {
  position: relative;
  width: 100%;
}

.slider_img_skin10 {
  /* flex: 0 0 auto; */
  /* scroll-snap-align: start; */
  margin: 0;
  padding: 0;
  border: none;
}

.slider_img_skin10 img {
  width: auto;
  height: 250px;
  display: block;
}

.skin10 {
  position: relative;
  width: 100%;
  margin-top: -1%;
}

.slider_skin10 {
  position: absolute;
  top: 28%;
  left: 0%;
  z-index: 2;
  width: 100%;
  height: 260px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .slider_skin10 {
    position: absolute;
    top: 28%;
    left: 0%;
    z-index: 2;
    width: 100%;
    height: 260px;
    object-fit: contain;
    overflow: visible;
    gap: 0;

  }
}

.slider_skin2 {
  position: absolute;
  top: 27.7%;
  z-index: 2;
  width: 100%;
}

.slider_img_skin2 {
  height: 50.66vw;
  width: 50.66vw !important;
  max-height: 380px;
  max-width: 380px;
  padding-right: 5px;
}

.slider_img_skin2 img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
}

/* 追従バナー */
body #floatarea {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 375px;
  width: 100%;
  display: none; /* 初期は非表示に */
  z-index: 1000;
  padding-bottom: 5px;
}
body #floatarea a {
  text-decoration: none;
  width: 100%;
}
body #floatarea img {
  width: 100%;
  height: auto;
  display: block;
}

/* 追従バナーの閉じるボタン */
#close-floatarea {
  position: absolute;
  top: 5px;
  right: 2px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
#close-floatarea img {
  width: 15px !important;
  height: 15px !important;
}


.movie_skin1 {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 6.5%;
  width: 88%;
  max-width: 650px;
}

.slidein_right {
  position: absolute;
  z-index: 2;
  top: 85%;
  left: 55%;
  /* width: 30%; */
  /* height: 150px; */
}

.skin1, .skin3, .skin4, .skin5, .skin6, .skin7, .skin8, .skin9, .skin10, .skin11, .skin13, .cta {
  position: relative;
}

.skin3 .skin3_cta_01 {
  position: absolute;
  top: 69%;
  left: 10%;
  width: 80%;
}

.skin3 .skin3_cta_02 {
  position: absolute;
  top: 84%;
  left: 10%;
  width: 80%;
}

.movie_skin3 {
  position: absolute;
  z-index: 2;
  top: 74%;
  left: 5%;
  width: 90%;
  align-items: center;
  justify-content: center;
  color: #333333;
  box-shadow: 15px 15px 0px 0px rgba(100, 100, 0100, 0.1);
}

.movie_skin11 {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 5%;
  width: 30%;
}

.skin4 .skin4_fadeup01 {
  position: absolute;
  z-index: 2;
  top: 33%;
  left: 1%;
  width: 30%;
}

.skin4 .skin4_fadeup02 {
  position: absolute;
  z-index: 2;
  top: 36%;
  left: 35%;
  width: 30%;
}

.skin4 .skin4_fadeup03 {
  position: absolute;
  z-index: 2;
  top: 33%;
  left: 65%;
  width: 30%;
}

.skin6 .skin6_movie {
  position: absolute;
  z-index: 2;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 550px;
}

@media screen and (max-width: 768px) {
  .skin6 .skin6_movie {
    position: absolute;
    z-index: 2;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 77%;
  }
}

.skin6 .item_right_skin6 {
  position: absolute;
  z-index: 3;
  top: 60%;
  left: 70%;
  width: 30%;
}

.skin6 .item_left_skin6 {
  position: absolute;
  z-index: 3;
  top: 80%;
  left: 1%;
  width: 20%;
}

@media screen and (max-width: 768px) {
  .skin6 .item_left_skin6 {
    position: absolute;
    z-index: 3;
    top: 79%;
    left: 2%;
    width: 25%;
  }
}

.skin7 .skin7_movie {
  position: absolute;
  z-index: 2;
  top: 82%;
  left: 70%;
  width: 20%;
  height: 100px;
  background-color: gray;
}

.skin8 .skin8_movie {
  position: absolute;
  z-index: 2;
  top: 84.5%;
  left: 73%;
  transform: translate(-50%, -50%);
  width: 32%;
}

@media screen and (max-width: 768px) {
  .skin8 .skin8_movie {
    position: absolute;
    z-index: 2;
    top: 84.5%;
    left: 73%;
    transform: translate(-50%, -50%);
    width: 32%;
  }
}

.skin9 .skin9_movie {
  position: absolute;
  z-index: 2;
  top: 75.5%;
  left: 27%;
  transform: translate(-50%, -50%);
  width: 32%;
}

@media screen and (max-width: 768px) {
  .skin9 .skin9_movie {
    position: absolute;
    z-index: 2;
    top: 75.5%;
    left: 27%;
    transform: translate(-50%, -50%);
    width: 32%;
  }
}

.skin10 .skin10_movie {
  position: absolute;
  z-index: 2;
  top: 81.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (max-width: 768px) {
  .skin10 .skin10_movie {
    position: absolute;
    z-index: 2;
    top: 81.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }
}

.skin11 .skin11_movie {
  position: absolute;
  z-index: 2;
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (max-width: 768px) {
  .skin11 .skin11_movie {
    position: absolute;
    z-index: 2;
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }
}

/*==================================================
アコーディオン
===================================*/
.s_qa .qa_inner {
  width: 100%;
}
.s_qa .q {
  width: 100%;
  margin: 0 auto;
}
.s_qa .ans {
  width: 100%;
}
.s_qa .ans {
  position: relative;
}
.s_qa .q {
  position: relative;
}
.s_qa .q-box::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  right: 15%;
  top: 37%;
  width: 15px;
  height: 15px;
  background: url("../img/closed.webp") no-repeat;
  background-size: contain;
}
.s_qa .assurance-box::after  {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  right: 15%;
  top: 37%;
  width: 15px;
  height: 15px;
  background: url("../img/liftshot_frame_01_04_closed.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 575px) {
  .s_qa .q-box::after,
  .s_qa .assurance-box::after {
    top: 37%;
    width: 15px;
    height: 15px;
    right: 15%;
  }
}
.s_qa .q.on .q-box::after {
  content: "";
  content: "";
  position: absolute;
  right: 15%;
  top: 37%;
  width: 15px;
  height: 15px;
  left: initial;
  background: url("../img/opened.webp") no-repeat;
  background-size: contain;
}
.s_qa .q.on .assurance-box::after {
  content: "";
  content: "";
  position: absolute;
  right: 15%;
  top: 37%;
  width: 15px;
  height: 15px;
  left: initial;
  background: url("../img/liftshot_frame_01_04_opened.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 575px) {
  .s_qa .q.on .q-box::after,
  .s_qa .q.on .assurance-box::after {
    top: 37%;
    width: 15px;
    height: 15px;
    right: 15%;
  }
}
.s_qa .q.on .q-box .q-box::after {
  background: none;
}






/*==================================================
CTA
===================================*/
.cta .cta_cta_01 {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
}

.cta .cta_cta_02 {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
}

.cta .cta_cta_01_s {
  position: absolute;
  top: 74%;
  left: 50%;
  width: 79%;
  transform: translate(-50%, -50%);
}

.cta .cta_cta_02_s {
  position: absolute;
  top: 89.5%;
  left: 50%;
  width: 79%;
  transform: translate(-50%, -50%);
}

.skin13_pp {
  position: absolute;
  bottom: 5%;
  left: 35%;
  z-index: 10;
  width: 30%;
}

.skin3_cta_01, .skin3_cta_02, .cta_cta_01, .cta_cta_02, .cta_cta_01_s, .cta_cta_02_s {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.skin3_cta_01::after,
.skin3_cta_02::after,
.cta_cta_01::after,
.cta_cta_02::after,
.cta_cta_01_s::after,
.cta_cta_02_s:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.skin3_cta_01:hover::after,
.skin3_cta_02:hover::after,
.cta_cta_01:hover::after,
.cta_cta_02:hover::after,
.cta_cta_01_s:hover::after,
.cta_cta_02_s:hover::after {
  opacity: 0.5;
}

.skin13 a:hover {
  opacity: 0.5;
}