﻿/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px) {
  .breadcrumb__list {
    padding-bottom: 1.6rem;
  }
}

/* ▽ ページ共通css ▽ */
.main-area img {
  width: 100%;
  height: auto;
}

.main-area a,
.main-area picture {
  display: inline-block;
}

.main-area p {
  font-family: "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN W3", "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.857;
  font-size: calc(14* (100vw / 375));
}

@font-face {
  font-family: "Quattrocento SansR";
  src: url("../fonts/QuattrocentoSans-Regular.otf") format("opentype"),
    url("../fonts/quattrocento-sans.regular.ttf") format("truetype");
}

@font-face {
  font-family: "Quattrocento SansB";
  src: url("../fonts/QuattrocentoSans-Bold.otf") format("opentype"),
    url("../fonts/quattrocento-sans.bold.ttf") format("truetype");
}

.main-area .ff_quaR {
  font-family: var(--quattrocento-sans);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.main-area .ff_quaB {
  font-family: var(--quattrocento-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .main-area {
    padding-bottom: calc(110 * (100vw / 375));
  }

  .main-area .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .main-area {
    max-width: 1200px;
    margin: 0 auto 0;
    padding-bottom: 18.4rem;
  }

  .main-area .spOnly {
    display: none;
  }

  .main-area p {
    font-size: 1.4rem;
  }

  .main-area a {
    transition: all .3s;
  }
}

/* ▽ lead-wrap ▽ */
.lead-wrap h2{
  font-family: "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN W3", "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: calc(18 * (100vw / 375));
}

.lead-wrap {
  margin: calc(47 * (100vw / 375)) auto 0;
  text-align: center;
}

.lead-wrap .text01{
  margin-top: calc(20 * (100vw / 375));
}

.lead-wrap .text02,
.lead-wrap .text03{
  margin-top: calc(26 * (100vw / 375));
}

@media screen and (max-width: 767px) {
  .lead-wrap{
    width: calc(345 * (100vw / 375));
    margin-inline: auto;
  }
}



@media screen and (min-width: 768px) {
  .lead-wrap{
    margin-top: 5.5rem;
  }

  .lead-wrap h2{
    font-size: 1.8rem;
  }
  
  .lead-wrap .text01{
    margin-top: 2.2rem;
  }
  
  .lead-wrap .text02,
  .lead-wrap .text03{
    margin-top: 2.6rem;
  }
  /* .sec__fv p {
    margin: 7.3rem auto 0;
  } */
}

/* ▽ lp__contents__block ▽ */
.lp__contents__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(375 * (100vw / 375));
  margin: calc(35 * (100vw / 375)) auto 0;
  gap: calc(7 * (100vw / 375));
}

.lp__item {
  position: relative;
  width: calc(184 * (100vw / 375));
  opacity: 0;
  transition: all 1s;
}

.lp__item.imgAnimated {
  opacity: 1;
}

.modal-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.item__contents_btn {
  position: absolute;
  bottom: calc(8* (100vw / 375));
  right: calc(8* (100vw / 375));
  width: calc(25* (100vw / 375));
  height: calc(25* (100vw / 375));
  background: rgba(255, 255, 255, 0.8);
}

.item__contents_btn::before,
.item__contents_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #626262;
  width: calc(9* (100vw / 375));
  height: 1px;
}

.item__contents_btn::after {
  transform: rotate(90deg) translate(0%, -50%);
  left: 29%;
  top: 49%;
}

@media screen and (min-width: 768px) {
  .lp__contents__block {
    width: 100rem;
    margin: 4.3rem auto 0;
    gap: 4rem;
  }

  .lp__item {
    width: 48rem;
  }

  .item__contents_btn {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 4rem;
    height: 4rem;
  }

  .item__contents_btn::before,
  .item__contents_btn::after {
    width: 1.6rem;
  }
}

/* ▽ lp__modal__block ▽ */
.lp__modal__block {
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.lp__item_modal {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  overflow-y: scroll;
}

.lp__item_modal.fadeIn {
  transition: all .3s;
  opacity: 1;
}

.lp__item_modal.fadeOut {
  transition: all .3s;
  opacity: 0;
}

.modal_inner {
  position: relative;
  width: calc(345* (100vw / 375));
  border: 1px #000 solid;
  margin: calc(30 * (100vw / 375)) auto 0;
  padding-bottom: calc(50* (100vw / 375));
}

.modal_close_btn {
  position: absolute;
  top: calc(-1* (100vw / 375));
  right: calc(-1* (100vw / 375));
  margin-left: auto;
  width: calc(50* (100vw / 375));
  height: calc(50* (100vw / 375));
  cursor: pointer;
  pointer-events: all;
}

.modal_close_btn::before,
.modal_close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(30* (100vw / 375));
  height: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #707070;
}

.modal_close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_inner .imgbox {
  width: 100%;
}

.item__detail {
  width: calc(305* (100vw / 375));
  margin: calc(16* (100vw / 375)) auto 0;
}

.item__detail_brand {
  font-size: calc(14* (100vw / 375));
}

.item__detail h3 {
  font-family: "HiraKakuProN-W6", "Hiragino Kaku Gothic ProN W6", "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(18* (100vw / 375));
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.item__detail .item__detail_credit {
  font-size: calc(12 * (100vw / 375));
  margin-top: calc(1 * (100vw / 375));
}

.item__detail_text {
  position: relative;
  margin-top: calc(10 * (100vw / 375));
  padding-top: calc(14 * (100vw / 375));
}

.item__detail_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #e3e3e3;
  width: 100%;
  height: 1px;
}

.item__detail .item__detail_buy {
  display: flex;
  justify-content: center;
  width: calc(120 * (100vw / 375));
  height: calc(30 * (100vw / 375));
  background: #000;
  font-size: calc(15 * (100vw / 375));
  color: #fff;
  line-height: 2.2;
  margin-top: calc(15 * (100vw / 375));
  letter-spacing: 0.1em;
}

body.no_scroll {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .modal_close_btn.spOnly {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(90* (100vw / 375));
    height: calc(40* (100vw / 375));
    font-size: calc(14* (100vw / 375));
    margin: calc(19* (100vw / 375)) auto calc(50* (100vw / 375));
    padding-left: calc(23* (100vw / 375));
  }

  .modal_close_btn.spOnly::before,
  .modal_close_btn.spOnly::after {
    top: calc(19* (100vw / 375));
    left: calc(16* (100vw / 375));
    width: calc(21.2* (100vw / 375));
  }
}

@media screen and (min-width: 768px) {
  .modal_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92rem;
    height: 60.7rem;
    margin: initial;
    padding: initial;
  }

  .modal_close_btn {
    position: relative;
    top: 1.4rem;
    right: 1.4rem;
    width: 4rem;
    height: 4rem;
  }

  .modal_close_btn::before,
  .modal_close_btn::after {
    width: 3rem;
  }

  .modal_inner_flex {
    display: flex;
    justify-content: center;
    column-gap: 5rem;
    margin-top: 1.3rem;
  }

  .modal_inner .imgbox {
    width: 40rem;
  }

  .item__detail {
    width: 35.05rem;
    /* transform: translateY(11.8rem); */
    transform: translateY(6.5rem);
    margin: initial;
  }

  .item__detail_brand {
    font-size: 1.4rem;
  }

  .item__detail h3 {
    margin-top: 0.5rem;
    font-size: 1.8rem;
  }

  .item__detail .item__detail_credit {
    font-size: 1.2rem;
    margin-top: 0.1rem;
  }

  .item__detail_text {
    margin-top: 0.9rem;
    padding-top: 1.5rem;
    /* margin-top: 0.9rem;
    padding-top: 2.4rem; */
  }

  .item__detail .item__detail_buy {
    width: 12rem;
    height: 3rem;
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 2.3rem;
    /* margin-top: 3.5rem; */
  }
}

/* ▽ lp__foot_btn ▽ */
.lp__foot_btn {
  width: calc(315 * (100vw / 375));
  margin: calc(40 * (100vw / 375)) auto 0;
}

.lp__foot_btn a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: calc(60* (100vw / 375));
  font-size: calc(14* (100vw / 375));
  font-family: "HiraKakuProN-W6", "Hiragino Kaku Gothic ProN W6", "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  border: #000 solid 2px;
  line-height: 4.2;
  letter-spacing: 0.1em;
}

.lp__foot_btn a:hover {
  opacity: 1;
}

.lp__foot_btn a:nth-of-type(1) {
  color: #fff;
  background: #000;
}

.lp__foot_btn a:nth-of-type(2) {
  margin-top: calc(15* (100vw / 375));
  color: #000;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .lp__foot_btn {
    width: 36rem;
    margin: 5rem auto 0;
  }

  .lp__foot_btn a {
    width: 100%;
    height: 6rem;
    font-size: 1.4rem;
    line-height: 4.2;
  }

  .lp__foot_btn a:nth-of-type(1):hover {
    color: #000;
    background: #fff;
  }

  .lp__foot_btn a:nth-of-type(2) {
    margin-top: 2rem;
  }

  .lp__foot_btn a:nth-of-type(2):hover {
    color: #fff;
    background: #000;
  }
}