@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.7;
  color: #333;
  letter-spacing: 0.08em;
  background-image: url(../img/bg2.webp);
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4.25vw;
    background: none;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.wrapper {
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.shadow {
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.1254901961);
}

.container {
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}

.inner {
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 3vw;
  }
}

.yellow {
  color: #f4d50d;
}

.pink {
  color: #f44c57;
}

.green {
  color: #364b31;
}

.red {
  color: #c1272d;
}

.bold {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 70%, #f4d50d 0%);
  display: inline;
  padding: 0;
}

.marker-bk {
  background: linear-gradient(transparent 90%, #333 0%);
  display: inline;
  padding: 0.6rem 0.4rem;
}

.section {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 12vw 0;
  }
}

.title {
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  font-size: 5rem;
  margin-bottom: 6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}

.title.-small {
  width: 36%;
}

.microCopy {
  width: 90%;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* 1. 拡大・縮小のアニメーション定義 */
@keyframes btnPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06); /* 1.1だと大きすぎる場合が多いので1.05推奨 */
  }
  100% {
    transform: scale(1);
  }
}
.btn a {
  display: block; /* transformを効かせるためにブロック要素化 */
  width: 100%; /* 親要素に合わせる */
  height: auto;
  animation: btnPulse 1.6s infinite ease-in-out; /* 1.2秒間隔でループ */
}

/* ====================================================
// FV
==================================================== */
.firstView {
  position: relative;
}

.firstView__btn {
  position: absolute;
  width: 90%;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .firstView__btn {
    bottom: 13vw;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  position: relative;
  background-image: url(../img/bg1.webp);
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 8vw 0;
  }
}

.cta2 {
  position: relative;
}

.cta2__btn {
  position: absolute;
  width: 90%;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .cta2__btn {
    bottom: 6vw;
  }
}

/* ====================================================
// movie
==================================================== */
.movie__img {
  position: relative;
}

.movie__link {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .movie__link {
    bottom: 15vw;
  }
}

.video {
  width: 90%;
  margin: 0 auto;
}

.video__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.video__wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-color: #c1e4fa;
}

.qa__title {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .qa__title {
    margin-bottom: 6vw;
  }
}

.qa__item:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .qa__item:not(:last-child) {
    margin-bottom: 4vw;
  }
}

.qa__question {
  cursor: pointer;
  padding: 3rem 5rem 2.8rem 10rem;
  position: relative;
  background-color: #fff;
  border-radius: 4rem;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  text-align: left;
  box-shadow: 1rem 1rem 1rem rgba(68, 78, 98, 0.0705882353);
}
@media screen and (max-width: 767px) {
  .qa__question {
    padding: 6vw 10vw 5.7vw 14vw;
    font-size: 4.25vw;
  }
}

.qa__question::before {
  content: "";
  display: inline-block;
  background-image: url(../img/question.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 3rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .qa__question::before {
    width: 6vw;
    height: 6vw;
    right: 3vw;
    left: 4vw;
    top: 7vw;
  }
}

.qa__question::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .qa__question::after {
    width: 4vw;
    height: 4vw;
    right: 4vw;
  }
}

.qa__question.is-active::after {
  background-image: url(../img/minus.svg);
}

.qa__question,
.qa__wrap {
  display: flex;
  gap: 2%;
}

.qa__question .text,
.qa__answer .text {
  flex: 1 0 0;
}

.qa__answer {
  padding: 2rem;
  display: none;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .qa__answer {
    padding: 4vw;
    font-size: 4vw;
  }
}

.qa .small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .qa .small {
    font-size: 3.25vw;
  }
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 99;
  display: none;
}

.float__btns {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .float__btns {
    flex-direction: row;
    -moz-column-gap: 1vw;
         column-gap: 1vw;
    width: 98%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .float__btn {
    filter: drop-shadow(0 0 1vw rgba(0, 0, 0, 0.1882352941));
  }
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  background-color: #c1e4fa;
  padding: 4rem 0;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 3.5vw;
    padding: 6vw 0;
  }
}

.footer__link {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 2vw;
  }
}

/* ====================================================
// privacyPolicy - プライバシーポリシーページ
==================================================== */
.privacyPolicy {
  font-family: "Noto Sans JP", sans-serif;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .privacyPolicy {
    padding: 14vw 0;
  }
}

.privacyPolicy__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .privacyPolicy__title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.privacy-policy-container {
  width: 100%;
  max-width: 800px; /* 一行が長すぎると読みにくいので幅を制限 */
  margin: 0 auto;
  padding: 20px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333; /* 真っ黒(#000)より目に優しいダークグレー */
  line-height: 1.8; /* 行間を広めに取る */
  font-size: 15px; /* 小さすぎないサイズ */
  box-sizing: border-box;
}

/* 見出し（第○条）のデザイン */
.privacy-policy-container h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px; /* 前のセクションとの余白を十分にとる */
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #f7f9fa; /* 薄いグレー背景で区切りを明確に */
  border-left: 5px solid #2c3e50; /* 左にアクセントライン（サイトのキーカラーに変更可） */
  border-radius: 4px;
}

/* 本文テキスト */
.privacy-policy-container p {
  margin-bottom: 1.5em;
  text-align: justify; /* 両端揃えで整然と見せる */
}

/* リスト（箇条書き） */
.privacy-policy-container ul,
.privacy-policy-container ol {
  margin-bottom: 20px;
  padding-left: 1.5em; /* インデント */
  background-color: #fff;
}

.privacy-policy-container li {
  margin-bottom: 0.8em;
}

/* 数字リストのスタイル調整 */
.privacy-policy-container ol {
  list-style-type: decimal;
}

/* 箇条書きリストのスタイル調整 */
.privacy-policy-container ul {
  list-style-type: disc;
}

/* 問い合わせ情報の強調 */
.contact-info {
  background: #fbfbfb;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .privacy-policy-container {
    padding: 10px;
    font-size: 14px;
  }
  .privacy-policy-container h3 {
    font-size: 16px;
    margin-top: 30px;
  }
}
/* ====================================================
// tokushoho - 特商法ページ
==================================================== */
.tokusyoho {
  padding: 8rem 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .tokusyoho {
    padding: 14vw 0;
  }
}

.tokusyoho__title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .tokusyoho__title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.tokusyoho__table {
  font-size: 1.5rem;
  border-collapse: collapse;
  width: 100%;
  border: 0.1rem solid #2f2f2f;
  border-bottom: none;
}

.tokusyoho__table th,
.tokusyoho__table td {
  padding: 1rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .tokusyoho__table th,
  .tokusyoho__table td {
    padding: 3vw;
  }
}

.tokusyoho__table th {
  background-color: #edeff0;
  border: none;
}

.tokusyoho__table td {
  border-bottom: 0.1rem solid #2f2f2f;
  border-top: 0.1rem solid #2f2f2f;
}/*# sourceMappingURL=style.css.map */