@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 3.4666666667vw;
  transition: all 1.6s ease 0s;
  background-color: #fff;
  font-family: "nimbus-sans-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.3194444444vw;
  }
}

img {
  display: block;
  width: 100%;
}

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.fv, main {
  opacity: 0;
  transition: opacity 1s;
}
.fv.on, main.on {
  opacity: 1;
}

/* 初期位置 */
/* その場フェードはtransformなしでもOK */
.fv {
  position: relative;
  height: 150vw;
}
@media screen and (min-width: 769px) {
  .fv {
    position: fixed;
    width: 31.4541666667vw;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.fv h1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を保ったまま領域を埋める */
}

@media screen and (min-width: 769px) {
  main {
    margin-left: 31.4541666667vw;
  }
}
main .image-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 769px) {
  main .image-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  main .image-list {
    column-gap: 1px;
    background-color: #000; /* 線の色 */
  }
}
main .image-list li {
  position: relative; /* ボタンを配置するための基準点 */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main .image-list li {
    border-top: 1px solid;
    background-color: #fff; /* 要素の背景色 */
  }
}
@media screen and (min-width: 769px) {
  main .image-list li {
    border-bottom: 1px solid;
    border-left: 1px solid;
  }
}
main .image-list li:nth-last-child(-n+2) {
  border-bottom: 1px solid;
}
main .image-list li {
  /* プラスボタン */
}
main .image-list li::after {
  content: "";
  position: absolute;
  right: 5px; /* 右からの位置 */
  bottom: 5px; /* 下からの位置 */
  width: 32px;
  height: 32px;
  pointer-events: none; /* ボタン自体はクリックできないようにする */
  /* 2本の線でプラス記号を生成 */
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000); /* 横線 */
  background-size: 1px 50%, 50% 1px; /* 線の太さと長さ */
  background-position: center; /* 線を中央に配置 */
  background-repeat: no-repeat; /* 線の繰り返しを無効化 */
  z-index: 10;
}
main .image-list li .swiper {
  width: 100%;
}

.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer ul li {
  width: 33px;
}
.footer .b_logo {
  width: 150px;
  margin: 40px auto 20px;
  display: block;
}
.footer p {
  text-align: center;
  font-size: 9px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer p {
    margin-bottom: 50px;
  }
}
.footer .all_btn {
  text-align: center;
  font-family: "nimbus-sans-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.footer .all_btn p {
  border: 1px solid;
  margin: 110px auto;
  font-size: 15px;
  padding: 10px 0;
  width: 70%;
}
@media screen and (min-width: 769px) {
  .footer .all_btn p {
    font-size: 20px;
    padding: 10px 0;
    width: 55%;
  }
}

.modal_container {
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 少し透過した白背景 */
  z-index: 9998; /* page-topより手前に */
  display: flex;
  justify-content: center;
  overflow-y: auto; /* コンテンツが長い場合にスクロール可能に */
}
.modal_container .modal_content {
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .modal_container .modal_content {
    padding: 80px 0;
  }
}
.modal_container .modal_close {
  position: fixed; /* ビューポート基準で固定 */
  top: 10px;
  right: 10px;
  width: 40px; /* ボタンのクリック領域を確保 */
  height: 40px;
  z-index: 9999; /* 最前面に表示 */
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .modal_container .modal_close {
    right: 25px;
  }
}
.modal_container .modal_close {
  /* バツ印の線（1本目） */
}
.modal_container .modal_close::before, .modal_container .modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%; /* ボタンの左右の余白 */
  width: 70%; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: #000;
}
.modal_container .modal_close {
  /* バツ印の線（2本目）を回転 */
}
.modal_container .modal_close::before {
  transform: rotate(45deg);
}
.modal_container .modal_close::after {
  transform: rotate(-45deg);
}
.modal_container .modal_itembox {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  .modal_container .modal_itembox {
    margin: 70px auto;
  }
}
.modal_container h3 {
  font-size: 5.8666666667vw;
  text-align: center;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 2vw 0;
}
@media screen and (min-width: 769px) {
  .modal_container h3 {
    font-size: 1.7361111111vw;
    padding: 1vw 0;
  }
}
@media screen and (max-width: 768px) {
  .modal_container .cre_flex {
    display: flex;
  }
}
.modal_container .cre_flex .modal_img {
  width: 57.6vw;
}
@media screen and (max-width: 768px) {
  .modal_container .cre_flex .modal_img {
    border-right: 1px solid;
  }
}
@media screen and (min-width: 769px) {
  .modal_container .cre_flex .modal_img {
    width: 100%;
  }
}
.modal_container .cre_flex .modal_img img {
  border-bottom: 1px solid;
}
.modal_container .cre_flex ul li {
  display: flex;
  justify-content: space-between;
  width: 42.6666666667vw;
  padding: 3vw 4vw;
  border-bottom: 1px solid;
}
@media screen and (min-width: 769px) {
  .modal_container .cre_flex ul li {
    width: 100%;
    padding: 1vw 2vw;
  }
}
.modal_container .cre_flex ul li span {
  font-family: "nimbus-sans-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.modal_container .cre_flex ul li p {
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .modal_container .cre_flex ul li .item_box {
    width: 24vw;
  }
}
.modal_container .cre_flex ul li .coming {
  color: #828282;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .modal_container .cre_flex ul li .coming {
    font-size: 2.8vw;
    width: 9vw;
  }
}

/* Vueのトランジション用クラス */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .pc_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flex .modal_itembox {
    width: 33.3333333333%;
    border-left: 1px solid;
    margin-bottom: -1px;
  }
  .b_name {
    margin-left: 1vw;
  }
}/*# sourceMappingURL=style.css.map */