@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

.to_ec {
  width: 280px;
  margin: 0 auto;
}
.to_ec span {
  position: relative;
  display: block;
  color: #14315b;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  margin-bottom: 6px;
}
.to_ec span::before {
  position: absolute;
  left: 15px;
  bottom: 6px;
  content: "";
  width: 18px;
  height: 1px;
  background: #14315B;
  transform: rotate(-112.38deg);
}
.to_ec span::after {
  position: absolute;
  right: 15px;
  bottom: 6px;
  content: "";
  width: 18px;
  height: 1px;
  background: #14315B;
  transform: rotate(-67.62deg);
}
.to_ec a {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #3088ba 0%, #2c2f95 100%);
  color: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.7px;
  transition: 1s;
}
.to_ec a img {
  width: fit-content;
  display: inline-block;
  margin-left: 30px;
}
.to_ec:hover {
  transform: scale(1.1);
  transition: 1s;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
header {
  color: red;
}

/*************************************************
footer
*************************************************/
/*************************************************
navi
*************************************************/
/*************************************************
top
*************************************************/
.pc_view {
  overflow: hidden;
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/pc_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .pc_view {
    display: none;
  }
}
.pc_view .section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.pc_view .section_inner .logo {
  padding-top: 2.9166666667vw;
}
.pc_view .section_inner .pc_product {
  margin-top: 4.8611111111vw;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  height: 45.4166666667vw;
}
.pc_view .section_inner .pc_product h1 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #14315b;
  font-family: Optima;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.45px;
}
.pc_view .section_inner .pc_product h1 span {
  display: block;
  color: #a1834c;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 2px;
}
.pc_view .section_inner .pc_product .pc_product_img {
  display: block;
  transform: translateY(-80px);
  width: 52.5694444444vw;
}
.pc_view .section_inner .pc_product .to_ec {
  position: absolute;
  bottom: 70px;
}

.sp_view {
  background: #fff;
  position: fixed;
  overflow-y: scroll;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  right: 8.3333333333vw;
  top: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 599px) {
  .sp_view {
    width: 100%;
    right: 0;
    box-shadow: none;
    background: none;
  }
}
.sp_view main section img {
  display: block;
  width: 100%;
}
.sp_view main section .to_ec {
  margin-bottom: 65px;
}
.sp_view main section .to_ec img {
  width: fit-content;
}
.sp_view main section .cta {
  position: relative;
}
.sp_view main section .cta .cta_btn {
  position: absolute;
  top: 29.1666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .sp_view main section .cta .cta_btn {
    top: 83.3333333333vw;
  }
}
.sp_view main section .cta .cta_btn img {
  width: 260px;
}
.sp_view main section .cta .cta_btn:hover {
  opacity: 0.7;
}
.sp_view main section .points {
  position: relative;
  padding: 30px 0;
  margin-bottom: 30px;
  background-image: url(../images/3points.png);
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  width: 100%;
}
.sp_view main section .points img {
  padding: 0 15px;
  margin-bottom: 30px;
  display: block;
}
.sp_view main section .gif_wrap {
  position: relative;
}
.sp_view main section .gif_wrap img {
  margin: 0;
}
.sp_view main section .gif_wrap .gif {
  padding: 0;
  margin: 0;
  width: 280px;
  height: 280px;
  object-fit: cover;
  position: absolute;
  bottom: 2.0833333333vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .sp_view main section .gif_wrap .gif {
    top: 78.2051282051vw;
    width: 200px;
    height: 200px;
  }
}