@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

a {
  cursor: pointer;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@font-face {
  font-family: "OPTIMA"; /* 任意のフォント名 */
  src: url("../font/OPTIMA.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Futura"; /* 任意のフォント名 */
  src: url("../font/Futura.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

.eng {
  font-family: "Manrope", sans-serif;
}
body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin: 0;
  overflow-x: clip;
  color: #021125;
  background-color: #f2f0f0;
  font-weight: 500;
  box-sizing: border-box;
  letter-spacing: 0.07em;
}
.bg-video {
  pointer-events: none; /* これでホバー/クリックが効かない＝止まらない */
}

html {
  color: #3d3e41;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.w-390 {
  width: 100%;
  margin: auto;
  max-width: 390px;
}

.w-350 {
  padding-left: 24px;
  padding-right: 24px;
}

.main-wrap {
  background-color: #ebe7e1;
  margin-top: 40px;
  border-radius: 20px;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.1));
}

.top-fv__text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.09em;
}

.top-fv__inner {
  padding-top: 18px;
}

.top-fv__inner h1 {
  width: 224px;
  height: 44px;
  object-fit: contain;
}

.top-fv__inner h1 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.top-fv__inner .fv-pc {
  display: block;
  margin-top: 32px;
  position: relative;
  width: calc(100% + 24px + 24px);
  left: -24px;
  margin-bottom: 32px;
}

h2.top-fv__ttl {
  font-size: 35px;
  display: flex;
  gap: 0;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
  letter-spacing: 0.07em;
}

h2.top-fv__ttl span {
  display: block;
}

.top-news {
  margin-top: 72px;
}

.top-news__ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 600;
}

/* スライダーの土台 */
ul.top-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative; /* 矢印の基準にする */
}

/* ===== 矢印（左右中央に丸ボタン、中に山括弧） ===== */
.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  cursor: pointer;
  z-index: 2;
}
.news-prev {
  left: 12px;
}
.news-next {
  right: 12px;
}
.news-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2f3a45;
  border-bottom: 2px solid #2f3a45;
  transform-origin: center;
}
.news-prev::before {
  transform: translate(-30%, -50%) rotate(135deg);
} /* ◀ */
.news-next::before {
  transform: translate(-70%, -50%) rotate(-45deg);
} /* ▶ */

.news-arrow:hover {
  border-color: #667085;
}
.news-arrow:focus-visible {
  outline: 2px solid #6ca6ff;
  outline-offset: 2px;
}

/* ===== ドット（横長ライン型） ===== */
.news-dots {
  display: flex !important;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0; /* スライダー直下に */
  padding: 0;
  list-style: none;
}
.news-dots li {
  width: 15px; /* ← 横の長さをここで調整 */
  height: 2px; /* ← 太さ（高さ） */
  background: #2d4b74; /* 非アクティブ色 */
  border-radius: 2px;
  transition: background-color 0.2s ease, width 0.2s ease;
  position: relative;
}
.news-dots li.slick-active {
  background: #74c9e9; /* アクティブ色 */
  width: 15px; /* ほんの少し長くしてアクセント */
}
/* Slickのボタンのデフォルトドットを消す */
.news-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0; /* クリック面は残す */
}
.news-dots li button:before {
  content: none;
}

/* スマホで少し小さめ */
@media (max-width: 640px) {
  .news-arrow {
    width: 38px;
    height: 38px;
  }
  .news-prev {
    left: 6px;
  }
  .news-next {
    right: 6px;
  }
  .news-dots li {
    width: 32px;
  }
  .news-dots li.slick-active {
    width: 38px;
  }
}

.top-news__list li.top-news__list__cont {
  padding-left: 30px;
  padding-right: 30px;
}
.top-news__list li.top-news__list__cont span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #f38a21;
}
.top-news__list li.top-news__list__cont p {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

a.news-btn {
  padding: 11px 30px;
  background: #fff;
  border-radius: 10px;
  line-height: 1.8;
  display: block;
  text-align: center;
  width: max-content;
  margin: auto;
  position: relative;
  color: #2d4b74;
  font-weight: 600;
}

.top-news {
  overflow: hidden;
}
.top-news__inner.w-350 {
  padding-top: 40px;
  padding-bottom: 84px;
  position: relative;
}

.top-news__inner.w-350::before {
  content: "";
  position: absolute;
  top: 0; /* 縦は親の高さにフィット */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  background: #fbfaf993;
  aspect-ratio: 1 / 1; /* ← 幅 = 高さ（正方形） */
  width: auto; /* 高さから横幅を決める */
  border-radius: 9999px; /* まるいカプセル/円 */
}

button.news-arrow.news-next {
  right: 10px;
  top: 94px;
}

button.news-prev.news-prev {
  left: 10px;
  top: 94px;
}

.top-what__inner.w-350 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.top-what__inner .top-what__ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 600;
}

.top-what__inner .top-what__ttl img {
  display: block;
  width: 52px;
  height: 21px;
  object-fit: contain;
  object-position: center;
  margin: auto;
  margin-bottom: 20px;
}

.top-what__inner.w-350 > img {
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  object-fit: contain;
  margin-bottom: 40px;
}

.top-what__textarea {
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

section.top-feature h2 {
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 11px;
  font-weight: 600;
}

section.top-feature h2 span {
  font-size: 30px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #74c9e9;
  border-radius: 10000px;
  color: #ffff;
  font-weight: 600;
}

section.top-feature h2 {
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 11px;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: dashed 1px;
  border-top: dashed 1px;
}

.top-feature__content {
  display: flex;
  justify-content: space-between;
}

.top-feature__content__images {
  width: 120px;
}

ul.top-feature__content__list {
  width: calc(100% - 136px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-feature__content__images img {
  display: block;
  margin-bottom: 30px;
}
ul.top-feature__content__list li {
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-size: 14px;
}
ul.top-feature__content__list li span {
  display: block;
  font-size: 20px;
  line-height: 1.6;
}

.top-program__inner.w-350{
  padding-top: 80px;
  padding-bottom: 80px;
}

.top-comment__inner.w-350{
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #ebe7e1;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 2;
}

.top-comment__inner.w-350::before{
height: 40px;
width: 100%;
  background-color: #2e4b74;
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  top: 0;
  left: 0;
}
.top-comment__inner.w-350::after{
height: 45px;
width: 100%;
  border-radius: 30px 30px 0 0;
  background-color: #ebe7e1;
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  top: 0;
  left: 0;
}

.top-program__inner.w-350 > h2,
.top-comment__inner.w-350 > h2
 {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.top-comment__inner.w-350 > h2{
  color: #2D4B74;

}


.top-comment__inner.w-350 > h2 span:nth-of-type(1){
color: #74C9E9;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(2){
color: #007C51;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(3){
color: #F38A21;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(4){
color: #FFC444;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(5){
color: #2D4B74;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(6){
color: #74C9E9;
}
.top-comment__inner.w-350 > h2 span:nth-of-type(7){
color: #9AC94D;
}

.top-program__inner.w-350 > h2 img,
.top-comment__inner.w-350 > h2 img {
  display: block;
  width: 46px;
  height: 10px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
}

ul.top-program__inner__list,
ul.top-comment__inner__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

ul.top-program__inner__list > li,
ul.top-comment__inner__list > li {
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
}
ul.top-program__inner__list li h3{
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  font-weight: 600;
}
ul.top-comment__inner__list li h3 {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 2px;
  line-height: 1.6;
  font-weight: 600;
  color: #2D4B74;
  letter-spacing: .04em;
}
ul.top-comment__inner__list li h4 {
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.6;
  font-weight: 500;
  color: #021125;
  letter-spacing: .04em;
}
ul.top-comment__inner__list li h5 {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #021125;
  letter-spacing: .04em;
}

ul.top-program__inner__list li h3 span.eng {
  display: block;
  text-align: center;
  font-size: 14px;
}

ul.top-program__inner__list li h3 span:last-of-type {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

ul.top-program__inner__list li a {
  padding: 11px 30px;
  border-radius: 10px;
  line-height: 1.8;
  display: block;
  text-align: center;
  width: max-content;
  margin: auto;
  position: relative;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 0;
}

ul.top-program__inner__list li:nth-of-type(1) a {
  background: #f79533;
}
ul.top-program__inner__list li:nth-of-type(2) a {
  background: #007c51;
}
ul.top-program__inner__list li:nth-of-type(3) a {
  background: #74c9e9;
}

ul.top-program__inner__list li:nth-of-type(1) h3 span.eng {
  color: #f79533;
}
ul.top-program__inner__list li:nth-of-type(2) h3 span.eng {
  color: #007c51;
}
ul.top-program__inner__list li:nth-of-type(3) h3 span.eng {
  color: #74c9e9;
}

ul.top-program__inner__list li:nth-of-type(1) button {
  background-color: #f79533;
}

ul.top-program__inner__list li:nth-of-type(2) button {
  background-color: #007c51;
}

ul.top-program__inner__list li:nth-of-type(3) button {
  background-color: #74c9e9;
}

.top-program__inner__list__acordion h2 {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  font-weight: 700;
}

.top-program__inner__list__acordion h2.line-top {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  font-weight: 700;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px dashed #585858;
}

.top-program__inner__list__acordion p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.07em;
} 

.top-comment__history{
  padding-top: 15px;
  border-top: dashed 1px #585858;
}
.top-comment__history p{
    font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.top-comment__history p span{
    font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.top-comment__inner__list__acordion p{
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 15px;
} 

.top-program__inner__list__acordion p span {
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-top: 14px;
  display: block;
}

ul.top-program__inner__list li .top-program__inner__list__acordion div p {
  margin-bottom: 14px;
}

ul.top-program__inner__list
  li
  .top-program__inner__list__acordion
  div
  p:last-of-type {
  margin-bottom: 0px;
}

ul.top-program__inner__list li button,
ul.top-comment__inner__list li button {
  height: 24px;
  border-radius: 0 0 5px 5px;
  width: calc(100% + 30px);
  position: relative;
  left: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
ul.top-comment__inner__list li button{
  font-size: 13px;
}
.cf7-confirm-value{
  color: #8F8F8F;
}
/* アコーディオン本体は最初は閉じる */
.top-program__inner__list__acordion {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.2s linear;
  padding-bottom: 0px;
  transition: 0.25s;
}

/* 開いたとき（高さはJSで入れるのでopacityだけ） */
ul.top-program__inner__list li.is-open .top-program__inner__list__acordion {
  opacity: 1;
  transition: 0.25s;
    height: 100%;
    padding-bottom: 30px;
}



/* アコーディオン本体は最初は閉じる */
.top-comment__inner__list__acordion {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.2s linear;
  padding-bottom: 0px;
  transition: 0.25s;
}

/* 開いたとき（高さはJSで入れるのでopacityだけ） */
ul.top-comment__inner__list li.is-open .top-comment__inner__list__acordion {
  opacity: 1;
  transition: 0.25s;
    height: 100%;
}



/* 開閉ボタンの見た目少しだけ強化（任意） */
ul.top-program__inner__list li button {
  cursor: pointer;
  user-select: none;
  font-weight: 700;
}
ul.top-program__inner__list li button span {
  display: inline-block;
  font-size: 18px; /* お好みで */
  line-height: 1;
}

ul.top-program__inner__list li.is-open button {
  background-color: #8f8f8f;
}
  /* 1,5,9,... */
ul.top-comment__inner__list > li:nth-of-type(4n + 1) > button {
  background-color: #74C9E9;
}
/* 2,6,10,... */
ul.top-comment__inner__list > li:nth-of-type(4n + 2) > button {
  background-color: #007C51;
}
/* 3,7,11,... */
ul.top-comment__inner__list > li:nth-of-type(4n + 3) > button {
  background-color: #F38A21;
}
/* 4,8,12,... */
ul.top-comment__inner__list > li:nth-of-type(4n + 4) > button {
  background-color: #9AC94D;
}

/* 開いているときは常にグレー（必ず最後に置く） */
ul.top-comment__inner__list > li.is-open > button {
  background-color: #8f8f8f;
}


section.top-people {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #2d4b74;
  border-radius: 20px 20px 0 0;
}

section.top-people h2.main-ttl {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 30px;
}
.top-people__inner__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.top-people__inner__list > li {
  padding: 15px;
  background-color: #fff;
  border-radius: 5px;
  letter-spacing: 0.04em;
}

.top-people__inner__list__text h2 {
  flex-direction: column;
  display: flex;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 600;
}
.mt-14px {
  margin-top: 14px;
}

.top-program__inner__list__acordion {
  line-height: 1.6;
}
.top-program__inner__list__acordion h4 {
  font-weight: 600;
}
.top-program__inner__list__acordion h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100000px;
  left: 0;
  top: 2px;
  display: inline-block;
  margin-right: 8px;
}

.top-program__inner__list__acordion h4:nth-of-type(1):before {
  background-color: #74c9e9;
}

.top-program__inner__list__acordion h4:nth-of-type(2):before {
  background-color: #007c51;
}

.top-program__inner__list__acordion h4:nth-of-type(3):before {
  background-color: #f79533;
}

.top-program__inner__list__acordion h4:nth-of-type(4):before {
  background-color: #9ac94d;
}

.top-program__inner__list__acordion h4:nth-of-type(5):before {
  background-color: #ffc444;
}

.top-program__inner__list__acordion h4:nth-of-type(6):before {
  background-color: #2d4b74;
}

.top-people__inner__list__text h2 span {
  display: block;
  font-size: 14px;
  color: #2d4b74;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: 500;
}
.top-people__inner__list__text p {
  font-size: 14px;
  line-height: 1.6;
}
.top-people__inner__list__text .line-top {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px dashed #585858;
  font-size: 14px;
  line-height: 1.6;
}
.top-people__inner__list__text .line-top h4 {
  font-weight: 600;
}

.top-flow {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ebe7e1;
}

.top-flow__inner__cont {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
  position: relative;
}

.top-flow__inner__cont::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-right: 1px dashed #585858;
}

.top-flow__inner__cont li {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  padding: 14px 20px 14px 28px;
  border-radius: 1000000px 0 0 1000000px;
  justify-content: center;
  position: relative;
}
.top-flow__inner__cont li span {
  display: block;
  font-size: 20px;
  line-height: 1.6;
  width: max-content;
  color: #74c9e9;
  font-weight: 600;
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}

.price-list {
  font-size: 16px;
  font-weight: 600;
}

.top-flow__inner.w-350 h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #2d4b74;
  text-align: center;
  font-weight: 600;
}

.top-price__inner.w-350 h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #2d4b74;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.top-price__inner__cont__table__cont {
  display: flex;
  width: 100%;
}
.top-price__inner__cont__table {
  display: block;
  width: 100%;
}

.top-price__inner__cont__table tbody {
  display: flex;
  gap: 2px;
  flex-direction: column;
  width: 100%;
}
.top-price__inner__cont__table__cont th {
  width: 135px;
  background-color: #2d4b74;
  color: #fff;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.6;
}
.top-price__inner__cont__table__cont th span {
  font-size: 14px;
}
.top-price__inner__cont__table__cont td {
  width: calc(100% - 135px);
  background-color: #fff;
  padding: 14px 20px;
  border-radius: 0 5px 5px 0;
}

section.top-price {
  padding-bottom: 80px;
}

.top-price__inner__cont__table__cont td > span {
  font-size: 18px;
  line-height: 1.6;
  display: block;
  font-weight: 700;
}

.top-price__inner__cont__table__cont td > span span {
  font-size: 14px;
}

.top-price__inner__cont__table__cont td ul {
  line-height: 1.6;
  font-size: 14px;
}

h3.top-contact__ttl {
  text-align: center;
  padding: 4px;
  line-height: 2;
  font-size: 18px;
  background-color: #f79533;
  color: #fff;
  border-radius: 10px 10px 0 0px;
  margin-bottom: 20px;
}
.top-contact__inner.w-350 .wrap {
  background-color: #fff;
  border-radius: 10px;
}

.top-contact__inner.w-350 .wrap img.tel {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto 5px;
}

.top-contact__inner.w-350 .wrap a.top-contact__tel {
  font-size: 24px;
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 600;
  line-height: 1.6;
  margin-top: -7px;
}

.top-contact__sub-ttl {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

.top-contact__list {
  text-align: center;
  font-size: 14px;
  color: #8f8f8f;
  margin-top: -1px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.top-contact__btn {
  width: calc(100% - 60px);
  display: block;
  object-fit: contain;
  margin: auto;
}

.top-contact__btn img {
  width: calc(100% - 0px);
  display: block;
  object-fit: contain;
}

.top-contact__inner.w-350 .wrap {
  padding-bottom: 20px;
}

.top-contact__inner.w-350 {
  padding-bottom: 80px;
}

.top-map__inner.w-350 h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #2d4b74;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.top-map__map {
  width: 100%;
  background: #fff;
  display: block;
  margin-bottom: 10px;
}

.top-map__text {
  line-height: 1.6;
  font-size: 16px;
}

.top-map__text span {
  display: block;
  margin-top: 8px;
}

.top-map__sub-ttl {
  font-size: 14px;
  color: #2d4b74;
  font-weight: 600;
  line-height: 1.6;
}

section.top-map {
  padding-bottom: 80px;
}

.top-contact h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #2d4b74;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.top-contact h2 img {
  display: block;
  width: 140px;
  height: 18px;
  object-fit: contain;
  object-position: center;
  margin: auto;
  margin-bottom: 15px;
}

.top-contact__inner__wrap form {
  width: 100%;
}

.top-contact__inner__wrap form table,
.top-contact__inner__wrap form tbody {
  width: 100%;
  display: block;
}

.top-contact__inner__wrap form table tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
}
.top-contact__inner__wrap form table tr th,
.top-contact__inner__wrap form table tr td {
  width: 100%;
}

.top-contact__inner__wrap {
  padding: 25px 30px;
  background: #fff;
  border-radius: 10px;
  letter-spacing: 0.07em;
}

.top-contact__inner__wrap form table tr th {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="text" i],
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
input,
optgroup,
select,
textarea {
  padding: 10px 12px;
  line-height: 1.6;
  background-color: #ebe7e1;
  border-radius: 3px;
  width: 100%;
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.privacy-box label {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.privacy-box,
.privacy-box span {
  display: block;
  width: 100%;
}

span.wpcf7-list-item-label {
  display: block;
  width: max-content;
}

input[type="checkbox"] {
  display: block;
  width: max-content;
}

.privacy-box,
.privacy-box span {
  margin: 0 0 0 0em;
}

.privacy-box span.wpcf7-form-control-wrap {
  margin-top: 20px;
  margin-bottom: 32px;
}

.privacy-box {
  margin-top: 30px;
}

.text-form-big{
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: .07em;
}
.text-form-small{
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 1.6;
  letter-spacing: .07em;
}
button.btn-style.wpcf7-form-control.wpcf7-submit {
  width: 100%;
  text-align: center;
  padding: 11px;
  background: #2d4b74;
  color: #fff;
  border-radius: 8px;
  max-width: 210px;
  margin: auto;
  display: block;
  line-height: 1.6;
}
button.cf7-back.btn-style{
  width: 100%;
  text-align: center;
  padding: 11px;
  background: #8F8F8F;
  color: #fff;
  border-radius: 8px;
  max-width: 210px;
  margin: auto;
  display: block;
  line-height: 1.6;
  margin-bottom: 10px;
}

.background-left {
  position: absolute !important;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(50% - (390px / 2) - 80px);
}

.background-right {
  position: absolute !important;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - (390px / 2) - 80px);
}

.background-left img {
  width: 100%;
  height: 100%;
  object-position: right;
}
.background-right img {
  width: 100%;
  height: 100%;
  object-position: left;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 背景スライダーの土台 */
.background-left,
.background-right {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  pointer-events: none; /* 背景はクリックを拾わない */
}
.navigation-list {
  /* 手前に出す */
  position: relative;
  z-index: 2;
  width: calc(50% - (390px / 2) - 80px - 60px - 40px);
}

.navigation-list li {
  position: relative;
}

.navigation-list li:hover::before {
  position: absolute;
  top: 16px;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #ffc444;
  left: -18px;
  border-radius: 1000px;
}

/* Slick 内部も含めて高さ100%に揃える */
.background-left .slick-list,
.background-right .slick-list,
.background-left .slick-track,
.background-right .slick-track,
.background-left li,
.background-right li {
  height: 100%;
}
.background-left img,
.background-right img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要なら contain に変更 */
  display: block;
}

.navigation-list li a {
  font-size: 16px;
  line-height: 2.2;
  color: #fff;
}

.navigation-list-icon {
  margin-top: 10px;
  display: flex;
  gap: 14px;
}

.navigation-list-icon a {
  width: 24px;
  height: 24px;
  display: block;
}

.navigation-list-icon a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.navigation-list {
  position: absolute;
  left: 70px;
  bottom: 56px;
}

.navigation-list-btn {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}

.background .logo {
  top: 70px;
  left: 30px;
  display: block;
  width: 285px;
  height: 66px;
  object-fit: contain;
  position: absolute;
  z-index: 99999;
}
.background .logo img {
  top: 70px;
  left: 30px;
  display: block;
  width: 285px;
  height: 66px;
  object-fit: contain;
  object-position: left;
}

ul.top-feature__content__list li:nth-of-type(1) span {
  color: #2d4b74;
}

ul.top-feature__content__list li:nth-of-type(2) span {
  color: #f79533;
}

ul.top-feature__content__list li:nth-of-type(3) span {
  color: #007c51;
}

ul.top-feature__content__list li:nth-of-type(4) span {
  color: #ffc444;
}

ul.top-feature__content__list li:nth-of-type(5) span {
  color: #74c9e9;
}

ul.top-feature__content__list li:nth-of-type(5) span {
  color: #9ac94d;
}
@media screen and (max-width: 1100px) {
  .background .logo,
  .navigation-list {
    display: none;
  }
}
body .floating-sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .main-wrap {
    background-color: #ebe7e1;
    margin-top: 0;
    border-radius: 0;
  }
  button.news-arrow.news-next {
    right: 0;
    top: 94px;
  }
  button.news-prev.news-prev {
    left: 0;
    top: 94px;
  }
  body .floating-sp {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-width: 390px;
    margin: auto;
  }

  body .floating-sp img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.top-contact__inner__wrap form table tr th span.req {
  background: #f79533;
  color: #fff;
  line-height: 1.6;
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 12px;
}

.privacy-box p a {
  text-decoration: underline;
}

section.top-footer {
  background: #2e4b74;
  border-radius: 30px 30px 0 0;
}

.top-footer__inner {
  padding: 30px 24px;
}

ul.top-footer__inner__cont {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

ul.top-footer__inner__cont li {
  width: 24px;
  height: 24px;
}

ul.top-footer__inner__cont li a {
  width: 24px;
  height: 24px;
}

.top-footer__inner-privacy {
  color: #fff;
  margin-top: 24px;
  margin-top: 25px;
  display: block;
}

.logo-icon {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
}

.top-footer__inner {
  position: relative;
}

.back-top {
  position: absolute;
  top: 126px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  transform-origin: top right;
  transform: rotate(90deg);
  display: flex;
  gap: 7px;
}
.back-top::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px; /* 文字との間隔 */
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #74c9e9;
}

section.top-footer p.copy {
  color: #fff;
  background-color: #021e44;
  padding: 2px;
  text-align: center;
  line-height: 1.6;
  font-size: 12px;
}

.traning {
  padding: 20px;
  border-radius: 5px;
  background: #d9d9d9;
  margin-top: 20px;
}

.traning h6 {
  padding: 4px 10px;
  border-radius: 10000000px;
  background: #fff;
  width: max-content;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 11px;
  font-weight: 500;
}
.traning ul li {
  font-size: 14px;
  font-weight: 500;
}


.privacy-content h2 img{
  width: 46px;
  height: 9px;
  display: block;
  margin: 0 auto 20px;
}
.privacy-content h2{
  line-height: 1.6;
  font-size: 20px;
  text-align: center;
  margin-bottom: 35px;
  margin-top: 60px;
}

.privacy-content h3{
  line-height: 1.6;
  font-size: 16px;
  margin-top: 25px;
  color: #2D4B74;
  margin-bottom: 8px;
  font-weight: 700;
}

.privacy-content p{
  line-height: 1.7;
  font-size: 14px;
}
.privacy-content ul{
  margin-top: 14px;
  line-height: 1.7;
  font-size: 14px;
}
.privacy-content ul li{
  position: relative;
 padding-left: 18px;
}.privacy-content ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 1000000px;
    background: #021125;
    display: block;
    left: 5px;
    top: 10px;
}

.privacy-content ol{
  margin-top:14px;
  line-height:1.7;
  font-size:14px;
  list-style: decimal;      /* 左の余白を確保 */
}
.privacy-content ol li{
 padding-left: 18px;       /* 余白はolで付ける */
}
.privacy-content ol li::before{ content:none; }  /* 丸ポチを無効化 */
.privacy-content ol li::marker{
  color:#021125;             /* 番号の色 */
  font-weight:700;           /* 太さなど調整 */
}



.privacy-content ol{
  margin-top:14px;
  line-height:1.7;
  font-size:14px;
  counter-reset: num;
}
.privacy-content ol li{
  list-style:none;
  position:relative;
}
.privacy-content ol li::before{
  counter-increment:num;
  content: counter(num) ".";
  position:absolute;
  left:0; top:0;
  color:#021125;
  font-weight:700;
}

span.red{
color: #FF0000;
}
section.privacy-content{
  padding-bottom: 80px;
}