@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  background-color: #191919;
  color: #fff;
  font-family: "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #fff;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header {
  height: 50px;
  background-color: #FA2198;
  padding: 8px;
}
header h1 {
  font-size: 20px;
  text-shadow: 0 0 10px #c9a84c;
}

footer {
  background-color: #FA2198;
  text-align: end;
  padding: 16px;
}

.swiper {
  height: 90vh;
  width: auto;
  margin-block: 40px;
}

.lead-sentence {
  text-align: center;
  text-shadow: 3px 1px 5px #c9a84c;
  font-size: 40px;
  font-weight: 300;
  margin-block: 120px 60px;
}
@media screen and (max-width: 800px) {
  .lead-sentence {
    font-size: 32px;
  }
}
.lead-sentence span {
  position: relative;
  color: #c9a84c;
  font-size: 48px;
  font-style: italic;
  text-shadow: 0 0 10px #b5b5b5;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .lead-sentence span {
    font-size: 40px;
  }
}
.lead-sentence span::before, .lead-sentence span::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 24px;
  height: 1.5px;
  background-color: #c9a84c;
}
.lead-sentence span::before {
  left: -32px;
}
@media screen and (max-width: 800px) {
  .lead-sentence span::before {
    left: -24px;
  }
}
.lead-sentence span::after {
  right: -40px;
}
@media screen and (max-width: 800px) {
  .lead-sentence span::after {
    right: -32px;
  }
}

.content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1320px;
  margin: 40px auto 80px;
  padding-inline: 16px;
}
@media screen and (max-width: 1025px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .content {
    grid-template-columns: 1fr;
  }
}
.content .cover-img {
  display: block;
}
.content .cover-img img {
  display: block;
  border-radius: 5px;
}
.content .text-area {
  text-align: center;
  font-size: 1.6rem;
}
.content .text-area .cover-title {
  font-weight: 400;
}

/* ===== アコーディオンエリア ===== */
.accordion {
  max-width: 800px;
  border-top: 1px solid #222;
  margin: 40px auto 80px;
  padding-inline: 20px;
}
.accordion-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
  padding-inline: 8px;
}
.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #aeacac;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  padding: 16px 4px;
}
.accordion-btn:hover {
  color: #ddd;
}
.accordion-body {
  color: #aeacac;
  font-size: 13px;
  line-height: 1.95;
  border-bottom: 1px solid #1a1a1a;
  animation: fadeIn 0.25s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.accordion .arrow {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #444;
}

.accordion-item.open {
  color: #ddd;
  border-bottom-color: #c9a84c;
  padding-bottom: 16px;
}
.accordion-item.open .accordion-btn {
  color: #c9a84c;
}
.accordion-item.open .arrow {
  transform: rotate(180deg);
  color: #c9a84c;
  align-items: flex-start;
}
.accordion-item.open .accordion-body {
  opacity: 1;
  max-height: 500px;
  margin-left: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Q&A */
.qa-q {
  color: #aeacac;
  font-weight: bold;
  margin: 18px 0 4px;
}

.qa-q:first-child {
  margin-top: 0;
}

/* 特定商取引法テーブル */
.accordion-body table {
  width: 100%;
  border-collapse: collapse;
}

.accordion-body td {
  padding: 8px 10px 8px 0;
  border-bottom: 1px solid #1e1e1e;
  vertical-align: top;
  font-size: 13px;
}

.accordion-body td.label {
  color: #aeacac;
  white-space: nowrap;
  width: 150px;
}

/* プライバシーポリシー */
.privacy-note {
  font-size: 12px;
  color: #aeacac;
  line-height: 1.9;
}/*# sourceMappingURL=style.css.map */