@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* パディング・ボーダーを幅に含める */
}
html {
  width: 100%;
  height: 100%;
}

body {
  background-color: #313131;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Arial", serif;
  color: #fff;
  min-height: 100vh; /* 100vhはビューポート（表示領域）の高さ */
}
a {
  text-decoration: none;
}

:root {
  --gothic: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", sans-serif;
}

.pc_only {
  display: block;
}
.sp_only {
  display: none;
}

@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}

/* header */
header {
  width: 100%;
  height: 60px;
  background-color: #111;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 15px;
  margin: 0 auto;
  position: fixed;
  z-index: 99;
}

/* ----------- main ---------- */

#hero {
  width: 100%;
  height: 100%;
}
.hero_wrap {
  width: 100%;
  height: 100vh;
  background-image: url("./images/hero_bg_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}
.hero_container {
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 90px 50px 20px;
  margin: auto;
}
.hero_titleBox {
  height: 220px;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.hero_title {
  font-family: var(--gothic);
  font-style: italic;
  font-size: 30px;
}
.hero_title > span {
  font-weight: 600;
}
.hero_title_text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.hero_title_text > span {
  font-weight: 600;
}
.page_link01 {
  width: 300px;
  height: auto;
  color: #fff;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  margin: auto;
  font-size: 18px;
}
.page_link01::before {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: 0.5s;
  content: "";
}
.page_link01:hover::before {
  animation: flash 0.75s;
}
@keyframes flash {
  100% {
    left: 120%;
  }
}

.hero_product_container {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero_gin,
.hero_yokou {
  height: 100%;
  width: 20%;
  text-align: center;
  display: inline-block;
}
.hero_gin_img,
.hero_yokou_img {
  width: 70%;
  height: auto;
  filter: drop-shadow(1px 1px 2px #000);
  margin: 0 auto 15px;
}
.hero_gin > p,
.hero_yokou > p {
  font-size: 20px;
}

@media (max-width: 1030px) {
  .hero_product_container {
    height: 520px;
  }
  .hero_gin,
  .hero_yokou {
    width: 23%;
  }
}
@media (max-width: 900px) {
  .hero_product_container {
    height: 650px;
  }
  .hero_gin,
  .hero_yokou {
    width: 30%;
  }
}

@media (max-width: 767px) {
  #sp_hero {
    width: 100%;
    height: 100%;
  }
  .hero_wrap {
    width: 100%;
    height: 100%;
    background-image: url(./images/hero_bg_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero_product_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 15px;
    gap: 100px;
  }
  .hero_gin,
  .hero_yokou {
    width: 100%;
    height: 500px;
  }
  .hero_gin_img,
  .hero_yokou_img {
    width: auto;
    height: 85%;
    filter: drop-shadow(1px 1px 2px #000);
    margin: 0 auto 15px;
  }
  .hero_gin > p,
  .hero_yokou > p {
    font-size: 24px;
  }
  .hero_titleBox {
    height: 200px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .hero_title{
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .hero_product_container {
    gap: 50px;
  }
  .hero_gin_img,
  .hero_yokou_img {
    height: 93%;
    width: auto;
  }
    .hero_gin > p,
    .hero_yokou > p {
    font-size: 20px;
    }
    .hero_title{
        font-size: 20px;
    }
    .hero_titleBox{
        height: 230px;
    }
    .hero_title_text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
}


.section01{
    width: 100%;
    height: auto;
    background-image: url(./images/lp_section1_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.section02{
    width: 100%;
    height: auto;
    background-image: url(./images/lp_section2_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.sec_gin_wrap,
.sec_yokou_wrap{
    max-width: 1200px;
    height: 100%;
    padding: 150px 15px;
    margin: auto;
}
.sec_gin_container,
.sec_yokou_container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sec_gin_inner_one,
.sec_gin_inner_two,
.sec_yokou_inner_one,
.sec_yokou_inner_two{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
}
.gin_image01{
    width: 100%;
    height: 500px;
    background-image: url(./images/lp_gin_2.jpg);
    background-position: center;
    background-size: auto;
}
.yokou_image01{
  width: 100%;
  height: 500px;
  background-image: url(./images/lp_yokou_2.jpg);
  background-position: center;
  background-size: cover;
}
.gin_info,
.yokou_info{
    width: 95%;
    display: block;
    margin: 20px auto;
}
.gin_info_list,
.yokou_info_list{
    font-size: 16px;
}
.gin_info_list_th,
.yokou_info_list_th{
    width: 25%;
    text-align:justify;
    text-align-last:justify;
    vertical-align:top;
}
.gin_info_list_td,
.yokou_info_list_td{
    width: 75%;
    text-align: left;
}
.gin_info>p,
.yokou_info>p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
    letter-spacing: 0.5px;
}
.page_link02 {
  width: 300px;
  height: auto;
  color: #fff;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  margin: auto;
  font-size: 18px;
}
.page_link02::before {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: 0.5s;
  content: "";
}
.page_link02:hover::before {
  animation: flash 0.75s;
}

.gin_image02{
    width: 100%;
    height: 500px;
    background-image: url(./images/lp_gin_3.jpg);
    background-position-y: 90%;
    background-size: cover;
}
.yokou_image02{
    width: 100%;
    height: 500px;
    background-image: url(./images/lp_yokou_3.jpg);
    background-position-y: 90%;
    background-size: cover;
}
.gin_info_text,
.yokou_info_text{
    width: 90%;
    margin: 10px auto 20px;
}
.gin_info_text>p,
.yokou_info_text>p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 0.5px;
}

@media (max-width: 767px){
  .section01,
  .section02{
    background-size: cover;
    background-position-x: 50%;
  }
  .sec_gin_wrap,
  .sec_yokou_wrap{
    padding: 90px 15px;
  }
  .sec_gin_container,
  .sec_yokou_container{
    flex-direction: column-reverse;
  }
  .sec_gin_inner_one,
  .sec_yokou_inner_one{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .sec_gin_inner_two,
  .sec_yokou_inner_two{
    width: 100%;
    flex-direction: unset;
    align-items: center;
    margin-bottom: 20px;
  }
  .gin_image01,
  .yokou_image01{
    width: 400px;
    height: 400px;
    background-size: 160%;
  }
  .gin_image02,
  .yokou_image02{
    width: 50%;
    height: 500px;
  }
  .gin_info_text,
  .yokou_info_text{
    width: 50%;
    margin: 10px auto;
    padding: 0 15px;
  }
  .gin_info,
  .yokou_info{
    width: 90%;
  }
}

@media(max-width:550px){
  .sec_gin_wrap,
  .sec_yokou_wrap{
    padding: 60px 15px;
  }
  .sec_gin_inner_two,
  .sec_yokou_inner_two{
    flex-direction: column-reverse;
  }
  .gin_image01,
  .yokou_image01,
  .gin_image02,
  .yokou_image02{
    width: 90%;
    height: 350px;
  }
  .gin_info_text,
  .yokou_info_text{
    width: 95%;
    margin: 20px 0;
    padding: 0;
  }
  .gin_info,
  .yokou_info{
    width: 95%;
    margin: 20px 0;
  }
}

.section03{
  width: 100%;
  height: 100%;
  background-color: #313131;
}
.benefits_wrap{
  text-align: center;
  margin: auto;
  max-width: 100%;
  padding: 90px 0 90px 15px;
}
.benefits_title_img{
  display: inline-block;
  width: 300px;
  margin-bottom: 20px;
}
h2{
  font-family: var(--gothic);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.5;
}
h2>span{
  display: block;
  font-size: 25px;
  color: #ffcc66;
}
.benefits_container{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 3%;
}

.benefits_info{
  width: 40%;
  height: auto;
}
.benefits_info p{
  font-size: 16px;
  text-align: left;
  line-height: 1.7;
}
.benefits_info p>span{
  font-weight: 600;
  color: #ffcc66;
}

h3.heading03{
  width: 100%;
  padding: 10px 20px;
  background-color: rgb(204, 51, 51);
  color: #fff;
  font-size: 18px;
  text-align: left;
  margin: 20px 0;
}

.benefits_images{
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}
.benefits_gin{
  width: 100%;
  height: 350px;
  background-image: url(./images/lp_gin_tokuten.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 82%;
}
.benefits_yokou{
  width: 100%;
  height: 350px;
  background-image: url(./images/lp_yokou_tokuten.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 78%;
}

.btn_area{
  width: 100%;
  height: auto;
  text-align: center;
  margin: 30px auto 20px;
}
.page_link03 {
  display: inline-block;
  width: 400px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  color: #c33;
  font-family: var(--gothic);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  background-color: #fff;
  position: relative;
  border: 1px solid #555;
  transition: color 0.5s ease;
  cursor: pointer;
}
.page_link03:hover {
  color: #fff;
}
.page_link03:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.page_link03::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #c33;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.page_link03_txt {
  position: relative;
  
}

@media(max-width:1200px){
  .benefits_info{
    width: 50%;
  }
}
@media(max-width:769px){
  .benefits_wrap{
    padding: 60px 15px;
  }
  .benefits_title_img{
    width: 270px;
  }
  h2>span{
    font-size: 22px;
  }
  .benefits_container{
    flex-direction: column-reverse;
    gap: 20px;
  }
  .benefits_images{
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    flex-direction: unset;

  }
  .benefits_gin,
  .benefits_yokou{
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: unset;
  }
  .benefits_info{
    width: 100%;
  }
  .page_link03{
    width: 300px;
    line-height: 47px;
  }
}

footer{
  width: 100%;
  height: 30px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}

button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  font-size: 16px;
  padding-top: 6px;
  font-weight: bold;
  color: #000;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  letter-spacing: 1px;
  z-index: 50;
}
@media(max-width:550px){
  button{
    width: 55px;
    height: 55px;
    font-size: 13px;
    letter-spacing: -1px;
    line-height: 1;
    right: 15px;
    bottom: 30px;
  }
}

.is-active {
  opacity: 1;
  visibility: visible;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.fade-in-element:nth-child(1){transition-delay: 0s;}
.fade-in-element:nth-child(2){transition-delay: 0.2s;}
.fade-in-element:nth-child(3){transition-delay: 0.4s;}
.fade-in-element:nth-child(4){transition-delay: 0.6s;}
.fade-in-element:nth-child(5){transition-delay: 0.8s;}

.fade-in-element.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.fade-in:nth-child(1){transition-delay: 0s;}
.fade-in:nth-child(2){transition-delay: 0.2s;}
.fade-in.show {
  opacity: 1;
  /* transform: translateY(0); */
}