@charset "utf-8";

body {
  text-align: justify;
  overflow-x: hidden;
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 20px;
  color: #333;
  text-align: center;
  overflow-x: hidden;
  max-width: 750px;
  margin: 0 auto;
}

img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
  width: 100%;
}

.header-pc {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1 {
  width: 100%;
  height: 100%;
}



/* ----------------------------------------------------
    CTA
---------------------------------------------------- */
.cta-frame {
  position: relative;
}

.btns {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
}

.cta01 .btns {
  width: 94%;
  bottom: 7%;
}

.cta02 .btns {
  bottom: 2.2%;
  width: 94%;
}


.btns a {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}

.btns a:hover {
  transform: scale(0.97);
}

.btns a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ----------------------------------------------------
    MAP
---------------------------------------------------- */
.map-frame {
  position: relative;
}

.map {
  position: absolute;
  bottom: 30.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 93.2%;
  height: 15%;
  object-fit: contain;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ----------------------------------------------------
    FLOATING
---------------------------------------------------- */
.floating {
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.floating.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating.is-visible:hover {
  opacity: 0.8;
}

.floating a {
  display: block;
  margin: 0 auto;
  width: 94%;
  height: 100%;
  object-fit: contain;
}


/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.footer {
  background-image: url(../images/footer_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 46px 0 30px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  font-size: 13px;
  font-feature-settings: 'palt' 1;
  line-height: 1;
}

.footer-nav-items a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}

.footer-nav-items a:hover {
  opacity: 0.7;
}

.footer-nav-items li {
  position: relative;
}

.footer-nav-items li:not(:first-child)::before,
.footer-nav-items:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

.copyright {
  font-size: 12px;
  color: #333;
  text-align: center;
  margin-top: 9px;
  display: block;
}

/* ----------------------------------------------------
    サブページ（特商法・プライバシー）
---------------------------------------------------- */
body.subpage {
  text-align: left;
  padding: 0 24px 40px;
  box-sizing: border-box;
}

.subpage-header {
  padding: 32px 0 24px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 28px;
}

.subpage-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  text-align: center;
}

.subpage-main {
  margin: 0 auto 48px;
}

.subpage-lead {
  margin-bottom: 28px;
  line-height: 1.75;
  color: #333;
  font-size: 16px;
}

.legal-items {
  margin: 0;
}

.legal-items dt:not(:first-of-type) {
  margin-top: 28px;
}

.legal-item-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.5;
}

.legal-item-detail {
  margin: 0;
  line-height: 1.75;
  color: #333;
  font-size: 16px;
}

.legal-item-detail>p {
  margin: 0;
  line-height: 1.75;
  color: #333;
  font-size: 16px;
}

.legal-list {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 1.4em;
  line-height: 1.75;
  color: #333;
  list-style: disc;
  font-size: 16px;
}

.legal-list li {
  margin-bottom: 6px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  body.subpage {
    padding: 0 16px 28px;
  }

  .subpage-header {
    padding: 24px 0 18px;
    margin-bottom: 20px;
  }

  .subpage-title {
    font-size: 20px;
  }

  .subpage-main {
    margin: 0 auto 32px;
  }

  .subpage-lead {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-items dt:not(:first-of-type) {
    margin-top: 20px;
  }

  .legal-item-name {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .legal-item-detail {
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-item-detail>p {
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-list {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-list li {
    margin-bottom: 4px;
  }
}