@charset "UTF-8";
main {
  max-width: 375px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
}
@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;
}

html, body {
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*==================================================
ヘッダー
===================================*/
.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: 55%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.bl-header__right img {
  width: 30%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

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

.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;
}


.before-after-view {
  position: relative;
  overflow: hidden;
}
/*
#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 {
  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;
}

@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;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.slider_img_skin1 img {
  width: 100%;
  height: auto;
  display: block;
}

.skin1 {
  position: relative;
  width: 100%;
}

.skin2 {
  position: relative;
  /* width: 100%; */
  overflow: hidden;
}
.slick-bg_skin1 {
  position: relative;
  width: 100%;
}

.slick-bg_skin2 {
  position: relative;
  /* width: 100%; */
}

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


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


.slider_skin1 {
  position: absolute;
  top: 78%;
  left: 9%;
  z-index: 2;
  width: 80%;
}

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

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

.slider_img_skin2 img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
}
.slick-list {
  height: 160px;
  width: 100%;
}
.slider_skin1 .slick-list {
  height: 255px;
  width: 100%;
}

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

.cta .cta_cta_01 {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 83%;
}

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

.movie_skin1 {
  position: absolute;
  z-index: 2;
  top: 63.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}

.graph_01 {
  position: absolute;
  z-index: 2;
  top: 71.5%;
  left: 49%;
  width: 45%;
}

.skin3, .skin4 {
  position: relative;
}

.movie_skin3 {
  position: absolute;
  z-index: 2;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  align-items: center;
  justify-content: center;
  color: #333333;
  box-shadow: 10px 10px 0px 0px rgba(100, 100, 0100, 0.1);
}

.movie_skin4 {
  position: absolute;
  z-index: 2;
  top: 89%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.movie_skin5 {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 5%;
  width: 90%;
}


.footer_pp {
  position: absolute;
  bottom: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 18%;
}

.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;
}

.footer a:hover {
  opacity: 0.5;
}