@charset "UTF-8";
/* setting */
.ftool-wrapper p {
  margin-bottom: 0 !important;
}
.ftool-wrapper h2 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

#sec01 {
  margin: 0 calc(50% - 50vw);
  width: calc(100vw - 8px);
  max-width: calc(100vw - 8px);
}
@media screen and (max-width: 767px) {
  #sec01 {
    width: 100vw;
    max-width: 100vw;
  }
}
#sec01 a {
  text-decoration: none;
}
@media (hover: hover) {
  #sec01 a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  #sec01 a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}

:root {
  --main-font: "ivypresto-display", "Times New Roman", "Georgia", serif;
}

/* common */
.wrapper {
  font-family: "hiragino-kaku-gothic-pron", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #2D2D2D;
}

/* credit */
.ftool-wrapper .ref-item {
  margin-bottom: 0 !important;
}
.ftool-wrapper .ref-item .thumb {
  width: 50px;
}
.ftool-wrapper .ref-item .brand {
  margin-left: 60px;
  font-size: 10px;
}
.ftool-wrapper .ref-item .name {
  margin-left: 60px;
  font-size: 11px;
}
.ftool-wrapper .ref-item .price {
  margin-left: 60px;
  color: black;
  font-size: 10px;
}

.ref-item + .ref-item {
  margin-top: 10px;
}

/* slick */
.dots-box {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .dots-box {
    bottom: 10px;
  }
}

.dots-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dots-wrap li {
  width: 40px;
  height: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.dots-wrap li.slick-active {
  background: rgba(255, 255, 255, 0.5);
}
.dots-wrap li.slick-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  animation: progressBar 2s linear forwards;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* fade */
.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out 2s, transform 0.5s ease-out 2s;
}
.fadeUp.show {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadeIn.active {
  opacity: 1;
}

.fadeLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadeLeft.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeRight {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadeRight.active {
  opacity: 1;
  transform: translateX(0);
}

.visualBlock {
  background: #969080;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .visualBlock {
    padding-bottom: 55px;
    margin-bottom: 80px;
  }
}
.visualBlock h1,
.visualBlock h2 {
  font-size: inherit !important;
}
.visualBlock h1 {
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .visualBlock h1 {
    margin-bottom: -11.6vw;
  }
}
.visualBlock__logo {
  margin: 0 0 0 auto;
  width: 120px;
  height: 100%;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .visualBlock__logo {
    width: 21.333vw;
    padding: 4vw 4vw 8vw;
  }
}
.visualBlock__logo img {
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}
.visualBlock__main {
  width: 652px;
}
@media screen and (max-width: 767px) {
  .visualBlock__main {
    width: 86.2vw;
  }
}
.visualBlock__sub {
  width: 375px;
}
@media screen and (max-width: 767px) {
  .visualBlock__sub {
    width: 64vw;
  }
}
@media screen and (min-width: 768px) {
  .visualBlock .imagesWrap {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .visualBlock .imagesWrap {
    margin: 0 5.333vw 8vw;
  }
}
@media screen and (min-width: 768px) {
  .visualBlock .imagesWrap__grid.pc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .visualBlock .imagesWrap__grid.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .visualBlock .imagesWrap__grid.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .visualBlock .imagesWrap__grid.sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.6vw;
  }
}

.leadBlock {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .leadBlock {
    margin-bottom: 40px;
  }
}
.leadBlock h2 {
  line-height: 120%;
  font-size: 22px !important;
  font-weight: 600;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .leadBlock h2 {
    font-size: 18px !important;
  }
}
.leadBlock p {
  font-size: 14px;
  line-height: 185%;
}
@media screen and (max-width: 767px) {
  .leadBlock p {
    font-size: 12px;
  }
}

.mainBlock__inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mainBlock__inner {
    padding-top: 40px;
    padding-bottom: 56px;
    width: 1000px;
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .mainBlock__inner {
    padding-bottom: 40px;
  }
}
.mainBlock:nth-of-type(odd) .mainBlock__inner {
  align-items: flex-start;
}
.mainBlock:nth-of-type(even) {
  background: #969080;
  color: white;
}
.mainBlock:nth-of-type(even) .price.discount, .mainBlock:nth-of-type(even) .price {
  color: white;
}
.mainBlock:nth-of-type(even) .mainBlock__inner {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .mainBlock:nth-of-type(even) .contentsArea {
    margin: 20px 5.333vw 0 auto;
  }
}
.mainBlock:nth-of-type(even) .contentsArea__title {
  text-align: right;
  margin-right: -0.4em;
  margin-left: inherit;
}
@media screen and (max-width: 767px) {
  .mainBlock:nth-of-type(even) .contentsArea__title {
    margin-right: -0.15em;
  }
}

.contentsArea {
  max-width: 500px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contentsArea {
    width: 77.333vw;
    margin: 20px auto 0 5.333vw;
  }
}
.contentsArea__title {
  font-family: var(--main-font);
  font-weight: 100;
  font-size: 150px;
  color: #FFD44C;
  line-height: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contentsArea__title {
    margin-left: -0.4em;
    margin-bottom: -0.5em;
  }
}
@media screen and (max-width: 767px) {
  .contentsArea__title {
    font-size: 24.5vw;
    margin-left: -0.15em;
    margin-bottom: -0.4em;
  }
}
.contentsArea__image {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contentsArea__image {
    width: 77.333vw;
  }
}
.contentsArea__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contentsArea__text {
  margin-bottom: 24px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .contentsArea__text {
    font-size: 12px;
  }
}

.footerBlock {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footerBlock {
    padding: 60px 0 80px;
  }
}
.footerBlock img {
  width: 100%;
}
.footerBlock__logo {
  width: 160px;
  height: 100%;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footerBlock__logo {
    width: 36vw;
    padding-bottom: 30px;
  }
}
.footerBlock__icon {
  width: 30px;
  height: 100%;
  padding-bottom: 20px;
}
.footerBlock__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footerBlock__list li {
  font-family: var(--main-font);
  font-weight: 300;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footerBlock__list li {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */