@charset "utf-8";

@font-face {
  font-family: BodoniBE;
  src: url("/fonts/BodoniBE-Light.otf");
}

body {
  font-family: sans-serif;
  background: none;
}
main {
  clear: both;
  width: 100%;
  overflow: hidden;
}
a {
  text-decoration: none;
}
.is-open {
  overflow: hidden;
}
.disabled {
  pointer-events: none;
}
.lp-contents {
  padding: 0 0 100px;
  background: #fff;
}
.contents-head,
.contents-body {
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
}
.contents-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 45px 0 65px;
  width: 95%;
  max-width: 1200px;
}
.title {
  font-family: BodoniBE;
  font-size: 74px;
  padding-right: 0 !important;
  max-width: none !important;
  line-height: 74px;
}
.contents-line {
  clear: both;
  margin: 0 0 55px;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .contents-head h2 img {
    height: 10vw;
    max-height: 94px;
    width: auto;
  }
  .contents-line {
    margin: 0 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: 65vh;
  }
  .hero img {
    height: 100%;
    object-fit: cover;
  }
  .title {
    font-size: 48px;
    letter-spacing: normal;
    line-height: 48px;
  }
  .icon {
    width: 64px;
    height: 64px;
  }
}

/* 画像サイズのレスポンシブ設定 */
.mx500 .block-line__item img {
  width: 50vw;
  max-width: 500px;
}
.mx600 .block-line__item img {
  width: 60vw;
  max-width: 600px;
}
.mx700 .block-line__item img {
  width: 70vw;
  max-width: 700px;
}
.mx800 .block-line__item img {
  width: 80vw;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .mx500 .block-line__item img {
    width: 65vw;
    max-width: 500px;
  }
  .mx600 .block-line__item img {
    width: 75vw;
    max-width: 600px;
  }
  .mx700 .block-line__item img {
    width: 80vw;
    max-width: 700px;
  }
  .mx800 .block-line__item img {
    width: 100%;
    max-width: 800px;
  }
}

/* 全体の大まかなレイアウト */
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}

/* 画像サイズのレスポンシブ設定 */
.block-line__item.center {
  text-align: center;
}
.block-line__item.r-100 {
  padding-right: 100px;
}
.block-line__item.r-200 {
  padding-right: 200px;
}
.block-line__item.l-100 {
  padding-left: 100px;
}
.block-line__item.l-200 {
  padding-left: 200px;
}
@media screen and (max-width: 991px) {
  .block-line__item.r-100 {
    padding-right: 15px;
  }
  .block-line__item.r-200 {
    padding-right: 0;
  }
  .block-line__item.l-100 {
    padding-left: 15px;
  }
  .block-line__item.l-200 {
    padding-left: 0;
  }
}

.panel {
  background: #fff;
  box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.1);
  display: none;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  position: fixed;
  width: 90%;
  max-width: calc(700px + 580px);
  z-index: 7777;
}
.panel-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
  display: block;
}
.panel-close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}
.close {
  display: block;
  height: 30px;
  position: relative;
  width: 30px;
}
.close::before,
.close::after {
  background: #000;
  content: "";
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
}
.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.panel-inner {
  height: 100%;
  overflow-y: scroll;
  width: calc(100% + 15px);
}
.panel-items {
  position: relative;
  margin: 55px 0;
  padding: 0 25px;
}
.panel-item .panel-item__image {
  margin: 0 auto;
  text-align: center;
  width: calc(100% - 550px);
  aspect-ratio: 440 / 660;
}
.panel-item__spec {
  padding: 20px;
  position: absolute;
  width: 240px;
}
.panel-item__spec.top-left {
  top: 0;
  left: 25px;
}
.panel-item__spec.bottom-right {
  right: 25px;
  bottom: 0;
}
.spec p,
.spec a {
  color: #fff;
  display: block;
  font-size: 11px;
  line-height: 1.5em;
}
.spec > a {
  color: #fff;
}
.spec:not(:last-child) {
  margin: 0 0 15px;
}
.spec.disabled a .buylink {
  display: none;
}
.panel-item a span.ml {
  display: inline;
  position: relative;
  left: -6px;
  text-decoration: none;
}
.panel-item a span {
  display: block;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .panel-close {
    top: 10px;
    right: 10px;
  }
  .panel-inner {
    width: 100%;
  }
  .panel-items {
    padding: 0 15px;
  }
  .panel-item .panel-item__image {
    width: 100%;
  }
  .panel-item__spec {
    margin: 25px 0 0;
    position: static;
    width: 100%;
  }
}

/* フェードイン処理 */
.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.js-fadeIn {
  opacity: 0;
  transition: opacity 1.8s;
}
.js-fadeIn.is-inview {
  opacity: 1;
  transition-delay: 0.2s;
}
