@charset "UTF-8";
* {
  min-width: 0%;
  box-sizing: border-box;
}

body {
  line-height: 2.25;
  color: #1D394D;
  font-size: 15px;
  font-family: 'Yu Gothic Pr6N D';
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #1D394D;
}

a:hover {
  opacity: .8;
}

img {
  vertical-align: bottom;
  width: 100%;
}

ul, li {
  list-style: none;
}

p.mgt {
  margin-top: 32px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* アニメーションの定義 */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

/* フェードアウト用のユーティリティクラス */
.fade-out {
  animation-name: fadeOut;
  animation-delay: 3s;
  animation-duration: 1s;
  /* アニメーションの長さ */
  animation-timing-function: ease-out;
  /* イージング */
  animation-fill-mode: forwards;
  /* アニメ完了後も最終状態を維持 */
}

/* アニメーションの定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト用のユーティリティクラス */
.fade-in {
  animation-name: fadeIn;
  animation-delay: 1.5s;
  animation-duration: 1s;
  /* アニメーションの長さ */
  animation-timing-function: ease-out;
  /* イージング */
  animation-fill-mode: forwards;
  /* アニメ完了後も最終状態を維持 */
}

@keyframes fadeInDelay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト用のユーティリティクラス */
.fade-in-delay {
  animation-name: fadeInDelay;
  animation-delay: 3.5s;
  animation-duration: 1s;
  /* アニメーションの長さ */
  animation-timing-function: ease-out;
  /* イージング */
  animation-fill-mode: forwards;
  /* アニメ完了後も最終状態を維持 */
}

@keyframes fadeInSable {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト用のユーティリティクラス */
.fade-in-sable {
  animation-name: fadeInSable;
  animation-delay: 1s;
  animation-duration: 1s;
  /* アニメーションの長さ */
  animation-timing-function: ease-out;
  /* イージング */
  animation-fill-mode: forwards;
  /* アニメ完了後も最終状態を維持 */
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* 画面内に入ったら付与されるクラス */
.js-fadein--visible {
  opacity: 1;
  transform: translateY(0);
}

.relative {
  position: relative;
}

.bdr {
  border-radius: 5px;
}

.mv-home {
  display: flex;
  position: fixed;
  top: 28px;
  right: 23px;
  width: 100px;
  opacity: 0;
  transition: .4s;
}

.mv-home.active {
  opacity: 1;
  z-index: 101;
}

.bg-white {
  position: relative;
  background-color: #fff;
}

.sec-ttl {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Yu Gothic Pr6N B';
  line-height: 2;
  margin-bottom: 24px;
}

.sable {
  position: absolute;
  width: 280px;
}

.mv-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}

.mv-bg .sable {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  opacity: 0;
}

.mv-bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
}

section.parallax .parallax-bg img {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: 1s;
  object-fit: cover;
}

section.parallax .parallax-bg img.active {
  opacity: 1;
}

section.parallax .parallax-slide {
  height: 100vh;
  position: relative;
  opacity: 0;
}

section.parallax .parallax-slide.slide1 {
  opacity: 0;
  transition: .4s;
}

section.parallax .parallax-slide.slide1 .sable {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

section.parallax .parallax-slide.slide2 {
  height: 150vh;
}

section.parallax h1 {
  position: absolute;
  left: 5%;
  bottom: 9%;
  max-width: 631px;
}

section.parallax .yodo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 33px 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}

section.parallax .yodo-inner {
  display: inline-block;
  text-align: left;
}

section.desc {
  padding: 120px 0 80px;
}

section.desc > div.first {
  margin-top: 0;
}

section.desc > div.mgt {
  margin-top: 120px;
}

section.desc .desc-block {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 30px;
}

section.desc .desc-block.center {
  text-align: center;
}

section.desc .desc-block.center .desc-block-inner {
  display: inline-block;
  text-align: left;
}

section.desc .desc-row2 {
  display: flex;
  justify-content: space-between;
}

section.desc .desc-row2 > div {
  width: calc(50% - 20px);
}

section.desc .desc-row2.pics {
  margin-top: 26px;
}

section.desc .desc-row2.end {
  align-items: flex-end;
}

section.desc .desc-row2.center {
  align-items: center;
}

section.desc .pic-attention {
  display: block;
  margin-top: 16px;
  position: absolute;
  top: 100%;
}

section.desc .desc-wide {
  margin-top: 80px;
}

section.desc .desc-bg {
  background-color: #93A5AF;
  padding: 88px 0;
  margin-top: 113.75px;
  overflow: hidden;
}

section.desc .desc-bg .desc-block {
  margin-top: 0;
}

section.desc .desc-bg .sec-ttl {
  color: #fff;
  width: calc(100% + 52px);
}

section.desc .desc-bg p {
  color: #fff;
}

section.desc .desc-bg p span {
  color: #FFFBA3;
}

section.credits {
  font-size: 15px;
  color: #4F4F4F;
  text-align: center;
}

section.credits .inner {
  display: inline-block;
  text-align: left;
}

section.credits h2.ttl {
  font-size: 15px;
}

section.credits ul {
  line-height: 1;
}

section.credits ul li span {
  display: inline-block;
}

section.credits ul li span:nth-of-type(1) {
  width: 130px;
  border-right: 1px solid;
}

section.credits ul li span:nth-of-type(2) {
  padding-left: 25px;
}

section.credits ul li + li {
  margin-top: 10px;
}

section.product {
  max-width: 1180px;
  padding: 88px 30px 120px;
  margin: 80px auto 0;
  position: relative;
}

section.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid #4F4F4F;
  width: 100%;
  max-width: 1120px;
}

section.product .product-ttl {
  margin-bottom: 80px;
}

section.product .product-ttl > div:nth-of-type(1) {
  max-width: 405px;
}

section.product .product-ttl > div:nth-of-type(2) {
  margin: 16px 0 0;
  font-size: 24px;
  color: #4F4F4F;
}

section.product .product-ttl > div:nth-of-type(3) {
  font-size: 24px;
  color: #D23125;
}

section.product .product-block + .product-block {
  margin-top: 115px;
}

section.product .product-block-ttl {
  margin-bottom: 34px;
}

section.product .product-block-ttl img:nth-of-type(1) {
  width: 191px;
}

section.product .product-block-ttl img:nth-of-type(2) {
  width: 114px;
  margin-left: 30px;
}

section.product .product-block-pic {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

section.product .product-block-pic div {
  width: calc(25% - (34px * 3 / 4));
  margin-right: 34px;
}

section.product .product-block-pic div:nth-of-type(4n) {
  margin-right: 0;
}

section.product .product-block-pic div:nth-of-type(n+5) {
  margin-top: 34px;
}

section.product .product-block-txt {
  line-height: 2;
}

section.product .product-block-txt + .product-block-pic {
  margin-top: 56px;
}

section.desc2 {
  background-color: #F6F6F4;
  display: flex;
}

section.desc2 .desc2-cnt {
  width: 50%;
  text-align: center;
  padding: 70px 30px;
}

section.desc2 .desc2-cnt-inner {
  display: inline-block;
  text-align: left;
}

section.desc2 .desc2-ttl {
  margin-bottom: 64px;
}

section.desc2 .desc2-ttl > div:nth-of-type(1) img {
  width: 215px;
}

section.desc2 .desc2-ttl > div:nth-of-type(2) {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Yu Gothic Pr6N B';
  color: #4F4F4F;
  line-height: 2;
}

section.desc2 .desc2-ttl > div:nth-of-type(3) {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Yu Gothic Pr6N B';
  color: #D23125;
  line-height: 2;
}

section.desc2 .desc2-ttl > div:nth-of-type(3) img {
  width: 160px;
  margin-left: 10px;
  vertical-align: middle;
}

section.desc2 .desc2-txt {
  line-height: 2;
  color: #4F4F4F;
}

section.desc2 .desc2-txt span {
  font-weight: bold;
  font-family: 'Yu Gothic Pr6N B';
}

section.desc2 .desc2-txt a {
  text-decoration: underline;
}

section.desc2 .desc2-pic {
  width: 50%;
}

section.desc2 .desc2-pic div {
  height: 50%;
}

section.desc2 .desc2-pic div img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

section.bnr {
  padding: 120px 30px;
}

section.bnr a {
  display: block;
  max-width: 520px;
  margin: auto;
}

section.bnr a img {
  border-radius: 3px;
}

.footer {
  position: relative;
  z-index: 3;
  background-color: #575757;
  background-position: center center;
}

.footer li,
.footer a,
.footer small,
.footer span,
.footer p {
  color: #fff;
  font-family: "Yu Gothic Pr6N M";
}

.footer small {
  display: block;
  font-size: 0.75rem;
}

.footer__contents {
  width: 90%;
  max-width: 1130px;
  margin: 0 auto;
  text-align: center;
  padding: 8.33vw 0 5.55vw;
}

.footer__contents__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.footer__contents__container .share {
  display: flex;
  align-items: center;
  margin-right: 35px;
}

.footer__contents__container .share li {
  margin-right: 25px;
  font-size: 0.875rem;
}

.footer__contents__container .links {
  display: flex;
  flex-wrap: wrap;
}

.footer__contents__container .links li {
  line-height: 1.5;
  font-size: 0.875rem;
}

.footer__contents__container .links li:after {
  content: "／";
}

.footer__contents__container .links li:last-child:after {
  content: none;
}

.footer .rules {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer .rules li {
  line-height: 1.5;
  font-size: 0.875rem;
}

.footer .rules li:after {
  content: "｜";
}

.footer .rules li:last-child:after {
  content: none;
}

@media (max-width: 767px) {
  p.mgt, p.mgt-sp {
    margin-top: 24px;
  }
  .mgt-sp {
    margin-top: 24px !important;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sable {
    width: 32vw;
  }
  .mv-home {
    width: 76px;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 1;
    z-index: 101;
  }
  .sec-ttl {
    font-size: 18px;
  }
  section.parallax .parallax-slide.slide1 .sable {
    top: 4vw;
    right: 4vw;
    transform: initial;
  }
  section.parallax h1 {
    width: 84.5vw;
    left: 4vw;
    bottom: 9vw;
  }
  section.parallax .yodo {
    width: 90vw;
    padding: 68px 5vw;
  }
  section.desc {
    padding: 46px 0 32px;
  }
  section.desc > div.mgt {
    margin-top: 64px;
  }
  section.desc .pic3 {
    width: 100vw;
    margin-left: -5vw;
    margin-bottom: 24px;
  }
  section.desc .pic4 {
    width: 100vw;
    margin-left: -5vw;
  }
  section.desc .pic4 > div:nth-of-type(2) {
    margin-top: 16px;
  }
  section.desc .pic9 {
    width: 100vw;
    margin-left: -5vw;
    margin-top: 24px;
  }
  section.desc .pic-attention {
    position: static;
  }
  section.desc .desc-bg {
    margin-top: 64px;
    padding: 30px 0;
  }
  section.desc .desc-bg .sec-ttl {
    width: 100%;
  }
  section.desc .desc-block {
    padding: 0 5vw;
  }
  section.desc .desc-row2 {
    display: block;
  }
  section.desc .desc-row2 > div {
    width: 100%;
  }
  section.desc .desc-row2.pics {
    display: flex;
  }
  section.desc .desc-row2.pics > div {
    width: calc(50% - 8px);
  }
  section.credits {
    padding: 0 5vw;
    text-align: left;
  }
  section.product {
    padding: 80px 5vw;
  }
  section.product::before {
    width: 90vw;
  }
  section.product .product-ttl {
    margin-bottom: 56px;
  }
  section.product .product-ttl > div:nth-of-type(2) {
    font-size: 18px;
  }
  section.product .product-ttl > div:nth-of-type(3) {
    font-size: 20px;
  }
  section.product .product-block + .product-block {
    margin-top: 80px;
  }
  section.product .product-block-ttl {
    margin-bottom: 14px;
  }
  section.product .product-block-pic div {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-top: 10px;
  }
  section.product .product-block-pic div:nth-of-type(2n) {
    margin-right: 0;
  }
  section.product .product-block-txt {
    line-height: 1.5;
  }
  section.product .product-block-txt.lh2 {
    line-height: 2;
  }
  section.desc2 {
    display: block;
  }
  section.desc2 .desc2-cnt {
    width: 100%;
    padding: 32px 5vw 26px;
  }
  section.desc2 .desc2-ttl {
    margin-bottom: 0;
  }
  section.desc2 .desc2-txt {
    padding: 24px 5vw 32px;
  }
  section.desc2 .desc2-pic {
    width: 100%;
  }
  section.desc2 .desc2-pic div {
    width: 100%;
  }
  section.bnr {
    padding: 64px 5vw;
  }
  section.bnr a {
    max-width: 500px;
  }
  .footer__contents {
    width: 84%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30vw 0 20vw;
  }
  .footer__contents__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__contents__container .share {
    margin-right: 0;
    margin-bottom: 8vw;
  }
  .footer__contents__container .links {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__contents__container .links li:after {
    content: none;
  }
  .footer .rules {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer .rules li {
    display: block;
    margin-bottom: 10px;
  }
  .footer .rules li a {
    display: block;
    text-align: left;
  }
  .footer .rules li:after {
    content: none;
  }
}

@media (max-width: 440px) {
  section.desc2 .desc2-ttl > div:nth-of-type(3) {
    font-size: 5vw;
  }
  section.desc2 .desc2-ttl > div:nth-of-type(3) img {
    width: 34vw;
  }
}
