@charset "UTF-8";
/*! Reset & Normalize Pack
 * based on modern-normalize v2.0.0 + custom additions
 * Recommended for corporate websites
 * Author: Yoichi style setup
 */
/* ========== modern-normalize ========== */
/* https://github.com/sindresorhus/modern-normalize */
*, ::before, ::after {
  box-sizing: border-box;
}

:root {
  -moz-tab-size: 4;
  tab-size: 4;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

/* ========== additional minimal reset ========== */
body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: anywhere;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.padding_10 {
  padding: 10% 0;
}

.font_S {
  font-size: 1.5rem !important;
}

.font_ss {
  font-size: 1.5rem !important;
}

h1 {
  margin: 0 auto;
  padding: 0;
}

.txt_area_01 {
  text-align: center;
  font-size: 2rem;
  background: url(../images/bg-img.jpg);
  padding: 0% 0 10%;
}

@media (max-width: 1024px) {
  .txt_area_01 {
    font-size: clamp(1.4rem, 1.2rem + 1.2vw, 2rem);
  }
}
p span.color_m {
  color: #e8382f;
}

/* レイアウト全体 */
.layout {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 750px) minmax(200px, 1fr); /* 中央は最大750px */ /* 左帯 / 本文 / 右帯 */
  min-height: 100dvh;
}

/* 左タイトル帯：背景画像を中央配置 */
.side-left {
  background: #e8382f;
  position: sticky;
  top: 0;
  align-self: start; /* グリッド内で sticky を効かせる */
  height: 100dvh; /* 1画面分の高さ（中身はスクロール） */
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
}
.side-left img {
  width: 60%;
}

/* 中央本文 */
.main-content {
  padding: 0;
}

/* 右メニュー帯（赤） */
.side-right {
  background: #e8382f;
  color: #fff;
  /* スクロールしても視認性を保つなら（任意） */
  position: sticky;
  top: 0;
  align-self: start; /* グリッド内で sticky を効かせる */
  height: 100dvh; /* 1画面分の高さ（中身はスクロール） */
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
}

/* メニュー本体 */
.side-menu {
  width: min(90%, 300px); /* 横幅を制御 */
}

.side-menu__ttl {
  font-size: 2rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin: 0 0 1rem;
  text-align: left;
}

.side-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem; /* 各行の間隔 */
}

.side-menu__list a {
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1.6;
  padding: 0.4rem 0.2rem 0.4rem 2rem;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 1.3rem;
}

.side-menu__list a::before {
  content: "▶";
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  opacity: 0.85;
}

.side-menu__list a:hover {
  opacity: 0.9;
  transform: translateX(2px);
}

/* ---- スマホ対応（帯を畳む） ---- */
@media (max-width: 1024px) {
  .layout {
    display: block;
  }
  .side-left,
  .side-right {
    display: none; /* 帯は非表示 */
  }
}
.btn {
  display: inline-block;
  padding: 2rem 1.8rem;
  background: #e8382f;
  color: #fff;
  border-radius: 20px;
  width: 85%;
  max-width: 450px;
  margin: 5% auto 0;
  position: relative;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px rgb(182.3376623377, 28.0519480519, 20.1623376623);
  overflow: hidden;
  transform: translateY(0);
}
.btn::before {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/icon_crown.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
.btn::after {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/icon_arrow_R.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
.btn img {
  width: 65%;
  margin: 5px auto 0;
  display: block;
  position: relative;
  z-index: 2;
}
@media (max-width: 599px) {
  .btn img {
    width: 75%;
  }
}
.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 2px rgb(136.4155844156, 20.987012987, 15.0844155844);
}
.btn:active {
  transform: translateY(5px);
  box-shadow: 0 0 rgb(136.4155844156, 20.987012987, 15.0844155844);
}
.btn .shine {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 1;
  pointer-events: none;
  animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

p.PR {
  font-size: 1.3rem;
  background: #ffffff;
  width: 80%;
  margin: 8% auto 0;
  max-width: 450px;
  padding: 5px 0;
}




.top5 .btn::before {
  display: none;
  padding: 2rem 0rem;
}
@media (max-width: 599px) {
  .top5 .btn img {
    width: 65%;
    margin-top: 3px;
  }
  .top5 .btn::after {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/icon_arrow_R.png) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 599px) {
  .p_02 {
    font-size: clamp(1.1rem, 1.2rem + 1.1vw, 2.5rem);
  }
}
@media (max-width: 320px) {
  .p_02 {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 599px) {
  .p_01 {
    width: 90%;
    margin: auto;
    font-size: clamp(1.1rem, 1.2rem + 1.1vw, 2.5rem);
    text-align: left;
  }
  .p_01 br {
    display: none;
  }
}
.three-point {
  font-size: 2.5rem;
}
.three-point .width_80 {
  width: 80%;
  margin: 0 auto;
}
.three-point h2 {
  padding-top: 15%;
  margin-bottom: 5%;
}
.three-point h3 {
  margin: 10% 0 3%;
}

@media (max-width: 1024px) {
  .three-point p {
    font-size: 3.5vw;
  }
}
@media (max-width: 599px) {
  .width_80 {
    width: 95%;
    margin: 0 auto;
  }
  .three-point p {
    font-size: clamp(1.1rem, 1.2rem + 1.1vw, 2.5rem);
    text-align: left;
    text-align: justify;
  }
  .three-point p br {
    display: none;
  }
}
.top5__inner {
  width: 90%;
  margin: 0 auto;
  padding: 10% 0;
}
.top5 h2 {
  padding-top: 15%;
  margin-bottom: 5%;
}
.top5 h2 + p {
  margin-top: 10%;
}
.top5__body {
  background: url(../images/top-5_line.png) top left repeat-y;
  background-size: contain;
}
.top5__body p, .top5__body figure {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  font-size: clamp(1.3rem, 1.2rem + 1.1vw, 2rem);
  padding: 5% 0;
  text-align: justify;
}
@media (max-width: 599px) {
  .top5__body p, .top5__body figure {
    width: 85%;
    margin: 0 auto;
  }
}
.top5__body--icon {
  width: 60% !important;
  max-width: 300px;
}
.top5__body ul {
  list-style: none;
  font-size: 2.5rem;
}
@media (max-width: 1024px) {
  .top5__body ul {
    font-size: clamp(1.5rem, 1.6rem + 1vw, 2.5rem);
  }
}
@media (max-width: 599px) {
  .top5__body ul {
    font-size: clamp(1.1rem, 1.2rem + 1.1vw, 2.5rem);
  }
}
.top5__body ul li {
  position: relative;
  text-align: left;
  margin-left: 26%;
  margin-bottom: 3%;
  line-height: 1.3;
}
.top5__body ul li::before {
  content: "◎";
  position: absolute;
  left: -7%;
  top: 0%;
  width: 20px;
  height: 20px;
  color: #ca9c29;
}
@media (max-width: 1024px) {
  .top5__body ul li {
    margin-left: 22%;
  }
  .top5__body ul li::before {
    position: absolute;
    left: -7%;
  }
}
@media (max-width: 599px) {
  .top5__body ul li {
    margin-left: 15%;
  }
  .top5__body ul li::before {
    position: absolute;
    left: -7%;
  }
}

.bg_red {
  background: url(../images/bg-img_red.jpg);
  background-size: 80%;
  padding-bottom: 10%;
}

.anshin_point {
  width: 90%;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-size: 2.5rem;
}
.anshin_point h2 {
  margin: -10% 10% 0% 23%;
  width: 70%;
  position: relative;
  z-index: 2;
}
.anshin_point p {
  margin-top: 10%;
}

@media (max-width: 1024px) {
  .anshin_point {
    font-size: 2.3rem;
  }
}
@media (max-width: 599px) {
  .anshin_point {
    font-size: 4vw;
  }
}
:root {
  --gap: 0rem; /* スライド間の余白 */
  --item-min: 180px; /* 最小幅（レスポンシブ対応） */
}

/* 全体ラッパー */
.marquee {
  overflow: hidden;
  width: 100%;
}

/* ビューポート */
.marquee__viewport {
  position: relative;
}

/* トラック（ul） */
.slider {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  will-change: transform;
  user-select: none;
  animation: marquee 10s linear infinite; /* 固定速度で流す */
}

/* アイテム（li） */
.slider__lists {
  flex: 0 0 auto;
  width: clamp(var(--item-min), 25vw, 320px);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  font: 500 16px/1.2 system-ui, sans-serif;
}

.slider__lists img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* アニメーション（コンテンツ2倍を想定） */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.check {
  width: 90%;
  margin: 0 auto;
  padding: 10% 0;
}
.check h2 {
  margin-bottom: 5%;
}
.check p {
  font-size: 2.5rem;
}

.hyou {
  width: 95% !important;
  margin: auto;
}

ul.hyou_btn {
  width: 95% !important;
  margin: 0 auto 5%;
  display: grid;
  grid-template-columns: 8.5% 1fr 1fr 1fr 1fr 1fr;
  gap: 2%;
  padding: 2% 1% 3% 0;
  background: #ffffff;
}
ul.hyou_btn + p {
  font-size: 2.5rem;
}

@media (max-width: 599px) {
  .hikaku_sp_txt p {
    font-size: clamp(1.1rem, 1.2rem + 1.1vw, 2.5rem) !important;
  }
}
@media screen and (max-width: 320px) {
  .hikaku_sp_txt p {
    font-size: 1.5rem !important;
  }
}
ul.hyou_btn li {
  display: inline-block;
  background: #e8382f;
  color: #fff;
  border-radius: 10px;
  position: relative;
  text-align: center;
  font-size: 1vw;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px rgb(182.3376623377, 28.0519480519, 20.1623376623);
  overflow: hidden;
  transform: translateY(0);
  padding: 5% 0 4%;
}
ul.hyou_btn li img {
  width: 70%;
  margin: auto;
}
ul.hyou_btn li:hover {
  transform: translateY(3px);
  box-shadow: 0 2px rgb(136.4155844156, 20.987012987, 15.0844155844);
}
ul.hyou_btn li:active {
  transform: translateY(5px);
  box-shadow: 0 0 rgb(136.4155844156, 20.987012987, 15.0844155844);
}

ul.hyou_btn li:nth-child(1) {
  background: none;
  box-shadow: none;
  cursor: auto;
}

@media (max-width: 1024px) {
  ul.hyou_btn li {
    padding: 15% 0 14%;
  }
  ul.hyou_btn li img {
    width: 80%;
  }
}
.qa {
  width: 85%;
  margin: 0 auto;
}
.qa h2 {
  padding-top: 10%;
  width: 80%;
  margin: auto;
}
.qa p {
  margin: 15% 0;
}

@media (max-width: 599px) {
  .qa {
    width: 90%;
    margin: 0 auto;
  }
}
.last_txt {
  width: 85%;
  margin: 0 auto;
}
.last_txt p:nth-child(2) {
  font-size: 3rem;
  font-weight: bold;
  margin: 10% 0;
}
.last_txt .btn::before {
  display: none;
  padding: 2rem 0rem;
}
.last_txt .btn img {
  width: 85%;
  margin: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .last_txt p {
    font-size: 2.8rem !important;
  }
}
@media (max-width: 599px) {
  .last_txt {
    width: 90%;
    margin: 0 auto;
  }
  .last_txt p {
    font-size: 1.85rem !important;
  }
}
@media (max-width: 320px) {
  .last_txt p {
    font-size: 1.6rem !important;
  }
}
p.afi {
  font-size: 1.1rem;
  width: 80%;
  margin: 5% auto 3%;
}

@media (max-width: 599px) {
  p.afi {
    width: 90%;
    font-size: 0.8rem;
  }
}
@media (max-width: 320px) {
  p.afi {
    font-size: 0.7rem;
  }
}
.font_ss {
  font-size: 0.9rem !important;
}

footer ul {
  display: flex;
  justify-content: center; /* ← 横方向（左右）を中央寄せ */
  align-items: center;
  margin: auto;
}
footer ul li {
  font-size: 1.3rem;
  margin-right: 3%;
  position: relative;
}
footer ul li:nth-child(1)::after {
  position: absolute;
  content: "|";
  top: 0;
  right: -11.5%;
}

@media (max-width: 599px) {
  footer ul li {
    font-size: 1rem;
  }
  footer ul li:nth-child(1)::after {
    right: -7%;
  }
}
#privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 3em 1.5em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  background-color: #fff;
}
#privacy-policy p.logo {
  width: 60%;
  max-width: 420px;
  margin: 0 auto 5%;
}

#privacy-policy h1 {
  font-size: 1.6rem;
  color: #B83329; /* 紅色 */
  text-align: center;
  margin-bottom: 1.2em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3em;
}

#privacy-policy h2 {
  font-size: 1.2rem;
  color: #B83329;
  margin-top: 2em;
  margin-bottom: 0.5em;
  border-left: 4px solid #CFA66D; /* 金色ライン */
  padding-left: 0.5em;
}

#privacy-policy p {
  margin-bottom: 1em;
}

#privacy-policy a {
  color: #B83329;
  text-decoration: none;
}

#privacy-policy a:hover {
  text-decoration: underline;
}

#privacy-policy .footer-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 3em;
  border-top: 1px solid #eee;
  padding-top: 1em;
  text-align: right;
}

/*# sourceMappingURL=style.css.map */
