@charset "UTF-8";

/* -------------------- common -------------------- */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

/* -------------------- Loading overlay -------------------- */
.three-loading {
  background: rgb(255, 255, 255);
  transition: opacity 1s ease;
}

.three-loading__inner {
  min-width: 0;
}

.three-loading__text,
.three-loading__percent {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #000;
  font-weight: 400;
}

.three-loading__bar {
  height: 1px;
  border-radius: 999px;
}

/* -------------------- 丸ボタン -------------------- */
.fab-btn {
  position: absolute;
  top: 14px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease 0s,
    transform 0.18s ease 0s;
}

.fab-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.18s ease 1s,
    transform 0.18s ease 1s;
}

.fab-btn:active {
  transform: translateY(1px);
}

/* -------------------- アイコン -------------------- */
.fab-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 82%;
  mask-size: 82%;
}

/* -------------------- 画質設定（右下） -------------------- */
.quality-ui {
  font-family: "Noto Sans JP", sans-serif !important;
  z-index: 2;
}

.quality-toggle,
.quality-option {
  background: rgba(0, 0, 0, 0.7);
}

.quality-toggle {
  min-width: 82px;
  height: 30px;
  border-radius: 0;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.7);
  font-family: "Noto Sans JP", sans-serif !important;
}

.quality-option {
  width: 34px;
  height: 30px;
  border-radius: 999px;
  font-size: 12px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
}

.quality-option.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.quality-toggle:active,
.quality-option:active {
  transform: translateY(1px);
}

@media (pointer: coarse) and (orientation: portrait), (max-width: 900px) and (pointer: fine) {
  .quality-ui {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .quality-toggle {
    height: 25px;
    font-size: 9px;
    font-family: "Noto Sans JP", sans-serif !important;
  }
}

.hover-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  max-width: min(92%, 560px);
  padding: 6px 10px 10px 10px;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

.hover-cap.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.hover-cap-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
}

.hover-cap-layer.is-visible {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.follow-cap {
  position: absolute;
  left: 0;
  top: 0;
  max-width: min(42vw, 280px);
  padding: 6px 10px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  line-height: 1.3;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  transform: translate(-50%, calc(-100% - var(--cap-offset-y, 18px) + 6px));
  transform-origin: center bottom;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.14s ease,
    color 0.14s ease,
    visibility 0s linear 0.18s;
}

.follow-cap.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, calc(-100% - var(--cap-offset-y, 18px)));
  transition-delay: 0s;
}

.follow-cap.is-hover {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  transform: translate(-50%, calc(-100% - var(--cap-offset-y, 18px))) scale(1.04);
}

.top-guide {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0px);
  z-index: 12;
  max-width: min(92%, 720px);
  padding: 8px 13px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translate(-50%, -6px);
  pointer-events: none;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease;
}

.top-guide.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* -------------------- パン中表示 -------------------- */
.viewer-chip {
  padding: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
}

/* -------------------- modal -------------------- */

.cmodal {
  z-index: 3;
}

.cmodal__panel {
  right: 0;
  top: 0;
  width: max(100px, calc(450px));
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
}

.cmodal__close {
  position: sticky;
  height: 30px;
  width: 30px;
  top: 0;
  right: 0;
  margin-left: auto;
  display: block;
  border: none;
  background: #252323;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 3px 1px 6px 0px;
  border-radius: 0;
}

.cmodal__title {
  margin: 0 0 8px;
  margin-top: -25px;
  font-size: 16px;
  padding: 30px 50px 25px 30px;
  font-weight: 500;
  line-height: 1.5em;
}

.cat-block {
  padding: 0 30px 40px;
}

.cat-txt p {
  font-size: 12px;
  line-height: 1.75em;
}

.cat-img {
  margin-bottom: 10px;
}

.cat-img img {
  width: 100%;
}

.cmodal__body .case-ttl {
  font-size: 14px;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 10px !important;
  border-bottom: 1px solid #252323;
  font-weight: 500;
  padding-left: 0;
  color: #111111;
}

.cmodal__body .customer {
  font-size: 12px;
  color: #808080;
  margin-top: 0px;
  margin-bottom: 15px;
}

.case-block {
  padding: 0 30px 15px;
}

.case-box {
  padding: 0 0 25px;
}

.cmodal__body .explain {
  font-size: 12px;
  line-height: 1.75em;
  margin-top: 0;
  color: #111111;
  margin-bottom: 0;
}

.img-block {
  margin-bottom: 15px;
}

.img-box {
  margin-top: 15px;
}

.img-box img {
  width: 100%;
}

.cmodal__body .modal-head {
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #262323;
  padding: 10px 15px;
  margin: 0 auto 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.cmodal__close_text {
  width: calc(100% - 60px);
  margin: 0 auto 40px;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  height: auto;
  text-align: center;
  color: #fff;
  background: #000;
  font-weight: 500;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif !important;
}

.case-box a {
  color: #7b7b7b;
  text-decoration: none;
  display: inline-block;
}

.case-box a:hover {
  text-decoration: underline;
}

@media (pointer: coarse) and (orientation: portrait), (max-width: 780px) and (pointer: fine) {
  .cmodal__panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 100dvh;
    max-height: 100vh;
    background: rgba(255, 255, 255, 0.95);
  }
}

/* -------------------- fix-nav -------------------- */
.fix-nav {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  width: 500px;
  z-index: 10;
  pointer-events: auto;
}

.fix-nav li {
  margin: 0 10px;
  list-style: none;
}

.fix-nav li a {
  transition-duration: 0.3s;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.fix-nav a,
.fix-nav a:visited {
  color: #252323;
}

.fix-nav li a:hover {
  opacity: 0.7;
}

.fix-nav ul {
  display: flex;
}

/* -------------------- start-pop -------------------- */

.limit-panel-stack {
  left: 100px;
  top: 18%;
  z-index: 5;
  width: 500px;
  height: 526px;
}

.limit-panel img {
  width: 100%;
}

.limit-panel {
  padding: 80px 40px;
  border-radius: 0;
  backdrop-filter: none;
  background-color: rgba(0, 0, 0, 0.75);
}

.start-pop {
  z-index: 10;
  top: 50%;
  transform: translateY(50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 100px 60px;
  max-width: 500px;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.start-img {
  max-width: 250px;
  margin: 0 auto 40px;
  width: 100%;
}

.start-img img {
  width: 100%;
}

.start-txt {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 2em;
  margin-bottom: 0;
}

.start-close {
  width: 140px;
  margin: 15px auto;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  padding: 5px 25px;
  text-align: center;
  display: none;
  font-size: 10px;
}

@media screen and (max-width: 1500px) {
  .spnone1500 {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  .limit-panel-stack {
    left: 30px;
    max-width: 270px;
    padding: 0 30px;
    top: 28%;
    height: 395px;
  }

  .start-img {
    max-width: 150px;
    margin: 0 auto 20px;
    width: 100%;
  }

  .start-txt {
    font-size: 10px;
  }
}

@media screen and (max-width: 900px) {
  .limit-panel-stack {
    left: 50%;
    top: 50%;
    height: 395px;
  }

  .limit-panel {
    padding: 50px 30px;
  }

  .start-close {
    display: block;
  }

  .fix-nav {
    display: none;
  }

  .top-guide {
    font-size: 9px;
  }
}

/* -------------------- hmenu-nav -------------------- */

.hmenu-check {
  display: none;
}

.hmenu-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: rgb(31 31 31);
  border-radius: 0px;
  pointer-events: auto;
}

.hmenu-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hmenu-check:checked ~ .hmenu-btn .hmenu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hmenu-check:checked ~ .hmenu-btn .hmenu-line:nth-child(2) {
  opacity: 0;
}
.hmenu-check:checked ~ .hmenu-btn .hmenu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hmenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.hmenu-check:checked ~ .hmenu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hmenu-nav {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 16;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 80px 24px 24px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.3s;
  pointer-events: auto;
  display: none;
}

.hmenu-check:checked ~ .hmenu-nav {
  transform: translateX(0);
}

.hmenu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-10px);
  width: 100%;
}

.hmenu-nav ul li {
  width: 100%;
}

.hmenu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.hmenu-nav a:visited {
  color: #fff;
}

.hmenu-nav li a {
  display: block;
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 900px) {
  .hmenu-btn {
    display: flex;
  }

  .hmenu-nav {
    display: flex;
  }
}

.cmodal__link {
  width: calc(100% - 100px);
  margin: 0 auto 25px;
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  height: auto;
  text-align: center;
  color: #fff;
  background: #2b66a7;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif !important;
}

.cmodal__link::after {
  content: "お問い合わせ・相談はこちら";
  font-family: "Noto Sans JP", sans-serif !important;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.list01 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.list01 li {
  padding-left: 15px;
  background-image: url(./img/dot.png);
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: left top 5px;
  font-size: 12px;
}

.list01 {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}

.img-block02 {
  margin-top: 40px;
}
