/* --------------------------------common-------------------------------*/
body {
  font-family: 'Noto Serif JP', serif;
}

/* 1) 幅計算の統一（padding込み） */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2) ページによるスクロールバー有無差での“中央ズレ”防止 */
html { overflow-y: scroll; }

/* 3) 画像や表のはみ出し封じ */
img, video, iframe { max-width: 100%; height: auto; }
table { max-width: 100%; }

/* 4) 応急で横はみ出しを無効化（原因特定までONでもOK） */
html, body { overflow-x: hidden; }

/* 5) 見出しなどの予期しない余白リセット（ズレに効く） */
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }

html {
  scroll-padding-top: 80px;
}


.hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #0e357f;
}

.caption {
  width: 100%;
  background:linear-gradient(-140.5883deg, #45b035 0%,#009e3b 100%) ;
  color: white;
}

.service > .container > .item:first-child {
  background: url(../img/venue/enagic-studium.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service > .container > .item:nth-child(2) {
  background: url(../img/venue/gushikawa-dom.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  font-size: 10px;
}

th {
  background: #45b035;
  color: white;
}

th,td {
  border: 1px solid #000;
}

td {
  text-align: center;
}


/* --------------------------------Pan-------------------------------*/
.hero__container {
  position: relative;       /* 子要素を絶対配置できるように */
  display: flex;
  align-items: center;      /* h2は中央 */
  justify-content: center;  /* h2は中央 */
  height: 150px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #0e357f;
}

/* パンくずを左上に固定 */
.hero__container .breadcrumbs {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 50px;
  font-size: 14px;
  color: #fff;
}

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

.hero__container .breadcrumbs a:hover {
  text-decoration: underline;
}

/* 区切りを「＞」にしたい場合 */
.breadcrumbs > ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs > ol > li:not(:last-child)::after {
  content: "›";   /* ← 丸ではなく矢印 */
  margin: 0 8px;
  color: #fff;
}

h2 {
  font-size: 45px;
  color: white;
  text-align: center;
  word-wrap: break-word;
  margin: 0;
}

/* --------------------------------REVEAL-------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* --------------------------------JUMP LINKS-------------------------------*/
.jump-links {
  width: 100%;
  padding: 24px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.jumplinks__tiles {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.jump-links__item {
  width: 90%;
  max-width: 360px;
  background: linear-gradient(135deg, #b9efad 0%, #92e187 60%, #6acb6f 100%);
  color: #0c6d2f;
  text-decoration: none;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-left: 64px;
  animation: jump-float 2.8s ease-in-out infinite;
}

.jump-links__item:nth-child(2) {
  animation-delay: 0.2s;
}

.jump-links__item:nth-child(3) {
  animation-delay: 0.4s;
}

.jump-links__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: translateY(-50%);
}

.jump-links__item::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #b4f0a7 45%, #6dcf72 100%);
}

.jump-links__item::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #2c8a3f;
  border-bottom: 3px solid #2c8a3f;
  transform: translateY(-50%) rotate(45deg);
}

.jump-links__small {
  font-size: 12px;
  text-align: left;
}

.jump-links__main {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

@keyframes jump-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --------------------------------FEATURES-------------------------------*/
.features {
  width: 100%;
  background-color: #fff;
  padding: 40px 0 40px;
}

.features__heading {
  font-size: 32px;
  font-weight: bold;
  color: #0d3387;
  text-align: center;
  margin: 0 0 24px;
}

.features__tiles {
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.features__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.features__tile img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.features__catch {
  font-size: 12px;
  font-weight: bold;
  color: #8a5a00;
  text-align: left;
  align-self: flex-start;
  width: fit-content;
  max-width: none;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 228, 160, 0.7) 0%, rgba(255, 198, 92, 0.7) 45%, rgba(212, 155, 33, 0.65) 100%);
  text-shadow: 0 0 6px rgba(184, 120, 0, 0.45);
  box-shadow: 0 0 10px rgba(184, 120, 0, 0.25), inset 0 0 8px rgba(255, 255, 255, 0.7);
  animation: feature-glow 2.8s ease-in-out infinite;
}

@media (max-width: 767px) {
  .features__catch {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .jump-links__lead,
  .message__lead {
    font-size: clamp(12px, 4.2vw, 16px);
    white-space: nowrap;
    max-width: 100%;
  }
}

.features__title {
  font-size: 18px;
  font-weight: bold;
  color: #1f9b3b;
  text-align: center;
  text-shadow: 0 0 10px rgba(31, 155, 59, 0.45), 0 0 18px rgba(31, 155, 59, 0.25);
}

.features__note {
  font-size: 14px;
  color: #000;
  text-align: left;
}

@keyframes feature-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(184, 120, 0, 0.25), inset 0 0 8px rgba(255, 255, 255, 0.7); }
  50% { box-shadow: 0 0 16px rgba(184, 120, 0, 0.45), inset 0 0 10px rgba(255, 255, 255, 0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .features__catch {
    animation: none;
  }
}

/* --------------------------------COURSES-------------------------------*/
.courses {
  width: 100%;
  background-color: #fff;
  padding: 40px 0 40px;
}

.courses__heading {
  font-size: 32px;
  font-weight: bold;
  color: #0d3387;
  text-align: center;
  margin: 0 0 24px;
}

.courses__tiles {
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: stretch;
}

.courses__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(13, 51, 135, 0.15);
  background: #f4f7ff;
  transition: transform 180ms ease, box-shadow 180ms ease;
  height: 100%;
}

.courses__tile:nth-child(2) {
  background: #f4fff7;
  box-shadow: 0 10px 22px rgba(31, 155, 59, 0.15);
}

.courses__tile:nth-child(3) {
  background: #e8f5ee;
  box-shadow: 0 10px 22px rgba(13, 96, 52, 0.18);
}

.courses__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(13, 51, 135, 0.2);
}

.courses__tile:nth-child(2):hover {
  box-shadow: 0 16px 28px rgba(31, 155, 59, 0.2);
}

.courses__tile:nth-child(3):hover {
  box-shadow: 0 16px 28px rgba(13, 96, 52, 0.24);
}

.courses__tile img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.courses__title {
  font-size: 18px;
  font-weight: bold;
  color: #1f9b3b;
  text-align: center;
}

.courses__note {
  font-size: 14px;
  color: #000;
  text-align: left;
  max-width: 420px;
  line-height: 1.7;
}

.courses__badge {
  font-size: 13px;
  font-weight: bold;
  color: #0d3387;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(13, 51, 135, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  max-width: 420px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
}

.courses__badge-star {
  flex: 0 0 auto;
}

.courses__badge-text {
  flex: 1 1 auto;
}

/* --------------------------------STEPS-------------------------------*/
.steps {
  width: 100%;
  background-color: #fff;
  padding: 50px 0 70px;
}

.steps__heading {
  font-size: 26px;
  font-weight: bold;
  color: #0d3387;
  text-align: center;
  margin: 0 0 30px;
}

.steps__grid {
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.steps__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 18px 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.steps__badge {
  display: inline-block;
  background-color: #1f9b3b;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.steps__title {
  font-size: 14px;
  font-weight: bold;
  color: #0d3387;
  margin-bottom: 10px;
}

.steps__note {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
  text-align: left;
}

.steps__card img {
  width: 100%;
  max-width: 210px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.steps__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.steps__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  padding: 14px 20px;
  border-radius: 999px;
  background: transparent;
  color: #0d3387;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid rgba(13, 51, 135, 0.35);
  box-shadow: 0 0 14px rgba(13, 51, 135, 0.18), 0 0 26px rgba(13, 51, 135, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.steps__button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 35%,
    rgba(255, 255, 255, 0.05) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.35;
  pointer-events: none;
}

.steps__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(13, 51, 135, 0.28), 0 0 34px rgba(13, 51, 135, 0.22);
}

@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: 1fr !important;
  }
}

  .steps__heading {
    font-size: 32px;
  }

  .steps__grid {
    width: 80%;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .steps__card {
    padding: 18px 22px 26px;
  }

  .steps__badge {
    font-size: 13px;
  }

  .steps__title {
    font-size: 16px;
  }

  .steps__note {
    font-size: 15px;
  }

  .steps__card img {
    max-width: 230px;
    height: 180px;
  }

  /* --------------------------------YOUTUBE-------------------------------*/
.youtube {
  width: 100vw;
  background: url(../img/index/bg.png) center/106% 116% no-repeat;
  box-shadow: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.youtube__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 1280px;
  background: none;
  border-radius: 0;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.youtube__content {
  color: #1b6f34;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  /* margin-top: -200px; */
}

.youtube__heading {
  font-size: 26px;
  font-weight: bold;
}

.youtube__item {
  font-size: 22px;
  color: #fff;
  text-shadow: none;
}

.youtube__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.youtube__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .youtube__button {
    width: 220px;
    padding: 10px 14px;
    font-size: 15px;
  }
}

.youtube__videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.youtube__video {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .goods {
    background: url(../img/index/goods-bg.jpg) center/cover no-repeat;
    background-position: center 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .goods::before {
    background: none;
  }


  .goods__content {
    text-align: left;
    align-items: flex-start;
    width: 52%;
    margin-left: auto;
    max-width: 70%;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .goods__link {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    background: linear-gradient(135deg, #2bbf5a 0%, #1f9b3b 55%, #0f7a2e 100%);
    border: 1px solid rgba(10, 92, 35, 0.35);
    box-shadow: 0 8px 16px rgba(15, 122, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    align-self: center;
    text-align: center;
  }

  .goods__link--pc {
    display: none;
  }

  .goods__link--sp {
    display: inline-flex;
    white-space: nowrap;
  }

  .goods__lead {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
    color: #0d3387;
    padding: 8px 10px;
    border-radius: 6px;
    display: inline-block;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.4), 0 0 8px rgba(255, 255, 255, 0.4);
  }

  .goods__inner {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }



  .youtube__video {
    width: 100%;
    height: auto;
  }
}

.youtube__placeholder {
  font-size: 22px;
  font-weight: bold;
  color: #e53935;
}

.youtube__video iframe {
  width: 100%;
  height: 100% !important;
  border: 0;
}

/* --------------------------------footer-------------------------------*/
.copy {
  background-color:#111;
  color: white;
}

.back-to-top {
  position: fixed;
  right: max(20px, calc((100vw - 1280px) / 2 + 20px));
  bottom: 120px;
  z-index: 1200;
  background: linear-gradient(135deg, #2bbf5a 0%, #1f9b3b 55%, #0f7a2e 100%);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 16px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(15, 122, 46, 0.3);
  border: 1px solid rgba(10, 92, 35, 0.35);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: float-top 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 140px;
  }
}

.back-to-top__arrow {
  font-size: 12px;
  line-height: 1;
}

.back-to-top__label {
  font-size: 14px;
  line-height: 1;
}

@keyframes float-top {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --------------------------------PC-------------------------------*/
@media (min-width: 768px) {
  body {
    margin: 0 auto;
    text-align: center;
  }

  .section {
    margin: 30px auto;
    width: 80%;
  }

  .wrapper {
    width: 1280px;
    margin: 0 auto;
    padding-top: 100px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .jump-links {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    padding: 26px 0 12px;
    flex-wrap: wrap;
  }

  .jumplinks__tiles {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .jump-links__lead {
    font-size: 18px;
    margin-bottom: 6px;
    flex-basis: 100%;
  }

  .jump-links__item {
    width: 28%;
    max-width: none;
    flex: 0 1 28%;
    order: 1;
  }

  .jump-links__small {
    font-size: 13px;
  }

  .jump-links__main {
    font-size: 20px;
  }



  .features__tiles {
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }

  .features__tile {
    width: 30%;
  }

  .features__tile img {
    max-width: none;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .features__catch {
    font-size: 13px;
  }

  .features__title {
    font-size: 20px;
  }

  .features__note {
    font-size: 15px;
  }


  .courses__tiles {
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .courses__tile {
    width: 48%;
    height: 720px;
  }

  .courses__tile img {
    max-width: none;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .courses__title {
    font-size: 20px;
    color: #1f9b3b;
  }

  .courses__note {
    font-size: 15px;
  }

  
  .youtube__inner {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 36px 60px;
    max-width: 1280px;
  }

  .youtube__content {
    flex: 1;
    gap: 16px;
  }

  .youtube__heading {
    font-size: 30px;
  }

  .youtube__item {
    font-size: 24px;
  }

  .youtube__videos {
    flex: 0 0 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .youtube__video {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }

  .youtube__video iframe {
    height: 100%;
  }
  /* --------------------------------GOODS-------------------------------*/
.goods {
  width: 100%;
  background: none;
  position: relative;
  overflow: hidden;
}

.goods::before {
  content: none;
}

.goods__heading {
  font-size: 32px;
  font-weight: bold;
  color: #0d3387;
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.goods__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: url(../img/index/goods-bg.jpg) center/cover no-repeat;
  border-radius: 16px;
  padding: 60px 0 60px;
  min-height: 320px;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.goods__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1b3b7a;
  background: none;
  padding: 16px 0;
  width: fit-content;
  text-align: left;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.85);
  margin-right: 60px;
}

.goods__lead {
  font-size: 38px;
  font-weight: bold;
  color: #0d3387;
  text-shadow: 0 0 18px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 1);
}

.goods__link {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2bbf5a 0%, #1f9b3b 55%, #0f7a2e 100%);
  box-shadow: 0 8px 16px rgba(15, 122, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(10, 92, 35, 0.35);
  word-break: break-all;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.goods__link--pc {
  display: inline-flex;
}

.goods__link--sp {
  display: none;
  white-space: nowrap;
}

  .goods__link:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 10px 22px rgba(15, 122, 46, 0.38), 0 0 14px rgba(46, 204, 113, 0.6);
  }

  .goods__inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 90px 0 90px;
    min-height: 500px;
  }

  .goods__content {
    flex: 0 0 auto;
  }


  .goods__link {
    font-size: 24px;
    padding: 14px 28px;
  }
/* --------------------------------PC_HEADER-------------------------------*/
header{
  width: 100%;
  height: 100px;
  background: linear-gradient(-140.5883deg, #45b035 0%,#009e3b 26%,#0e357f 72%,#0c3388 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__logo, nav {
  display: flex;
  align-items: center;
  height: 100px;
}

.header__logo > a, nav > a {
  display: flex;
  align-items: center;
}

.header__logo > a > .logo {
  height: 80px;
  align-items: center;
  padding-left: 20px;
}

.header__logo > .header__title {
  font-size: 30px;
  color: white;
  padding-left: 10px;
}

nav{
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}

nav > ul {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  list-style: none;
  padding-right: 20px;
  align-items: center;
}

nav > ul > li:not(:last-child) {
  margin-right: 30px;
}

nav > ul > li ,
nav > ul > li > a ,
nav > ul > li > a > span{
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.nav ul li a,
.nav ul li a span{
    color: white;
}

.burger,.menu {
  display: none;
}

/* --------------------------------PC_Hero-------------------------------*/
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #0d3387;
  margin-bottom: 0;
  padding-bottom: 0;
}

.swiper {
  height: 600px;
  width: 1280px;
  margin-bottom: 0;
}

.hero__title {
  margin-bottom: 20px;
  font-size: 24px;
}

.hero__footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.swiper-slide {
  height: 600px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 20px -20px black;
}

.swiper-slide > a > img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide > a {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  z-index: 10;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}

.swiper-slide-active > a > img {
  transform: none;
}

.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(70%, 150%);
}

.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}

.hero_sp {
  display: none;
}

/* --------------------------------PC_5NEWS-------------------------------- */
.news {
  height: auto;
  width: 100vw;
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #b9efad 0%, #92e187 55%, #6acb6f 100%);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  left: 50%;
  right: 50%;
  /* margin: 12px 0; */
  padding: 10px 0;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: -50vw;
  margin-right: -50vw;
}

.news__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.news .caption {
  background: transparent;
  width: 100%;
  margin: 0 auto;
  color: #0d3387;
}

.news .container {
  width: 100%;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  color: #0d3387;
  font-family: serif;
}

.five__news {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  max-width: 1280px;
  font-size: 16px;
  margin: 5px auto;
  text-align: center;
  list-style-type: none;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}

.five__news li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 20px;
  width: 100%;
  line-height: 1.6;
  margin: 2px auto;
  position: relative;
  overflow: hidden;
}

.five__news li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 51, 135, 0.55) 0%, rgba(13, 51, 135, 0.35) 55%, rgba(13, 51, 135, 0) 100%);
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 0;
}

.five__news li > * {
  position: relative;
  z-index: 1;
}

.five__news li:hover::before {
  transform: translateX(0);
}

.five__news li:hover {
  box-shadow: 0 8px 16px rgba(13, 51, 135, 0.25);
}

.five__news li:hover .post_at,
.five__news li:hover .news_link,
.five__news li:hover a {
  color: #fff;
}

.five__news .post_at {
  margin: 0;
  display: flex;
  align-items: center;
  color: #0d3387;
}

.five__news .news_link {
  display: flex;
  align-items: center;
}

.five__news > li > a,
.five__news > li > a:visited,
.five__news > li > a:hover,
.five__news > li > a:active {
  color: #0d3387;
  text-decoration: none;
}

/* --------------------------------PC_MESSAGE-------------------------------- */
.message {
  background: none;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
}

.message > .container > .cap {
  font-size: 40px;
  color: #0d3387;
  font-weight: bold;
}

.message > .container {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  font-size: 25px;
  color: #000;
  font-weight: bold;
  text-shadow: none;
  font-family: serif;
  margin-bottom: 20px;
}

.message > .container:last-child {
  margin-top: 30px;
}

/* ------------------------------PC_PASSION------------------------------- */
.passion {
  background: url(../img/index/20240331_PLUSONE_03.png);
  height: auto;
  background-color: rgba(200, 200, 200, 0.2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 100px 0;
}

.passion > .container > .cap {
  font-size: 40px;
  color: #ffffff;
  font-weight: bold;
  background: linear-gradient(-45deg, #0c3388, #0e357f, #009e3b, #45b035);
}

.passion > .container {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  font-size: 25px;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  font-family: serif;
  margin-bottom: 20px;
}

/* ------------------------------Service------------------------------- */
.service {
  width: 100%;
  background-color: #fff;
  margin:20px 0;
}

.service > .container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.service > .container > .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 500px;
  width: 45%;
  background-color: #d6d6d6;
  border-radius: 20px;
}

.item__ttl {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.item .btn-2 {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
}

.item .btn-2.cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  box-sizing: border-box;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
}

.item .btn-2.cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}

.item .btn-2.cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}

.item .btn-2.cubic:hover .hovering {
  transform: rotateX(0);
}

.item .btn-2.cubic:hover .default {
  transform: rotateX(-90deg);
}

/* ------------------------------PC_CONTACT------------------------------- */
section.contact {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.form_group {
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}

.form_input {
  width: 100%;
}

textarea {
  resize: none;
  width: 100%;
  height: 150px;
}

input[type="submit"] {
  height: 70px;
  width: 200px;
  background-color: #0d215c;
  color: aliceblue;
  font-size: 30px;
  text-align: center;
}


/* --------------------------------modal---------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal_content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  text-align: left;
}

.close_button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_button:hover,
.close_button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* --------------------------------email---------------------------------- */
.email__link{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.heading__email {
  font-size: 12px;
  transform: translate(15px,-15px) rotate(-45deg);
  color: #0048ff;
}

.heading__email::before,
.heading__email::after {
  content: '';
  width: 2px;
  height: 20px;
  background-color: #0048ff;
}

.heading__email::before {
  margin-right: 10px;
  transform: rotate(-65deg);
}

.heading__email::after {
  margin-left: 10px;
  transform: rotate(35deg);
}

/* --------------------------------footer---------------------------------- */
.footer__container {
  margin-top: 30px;
  height: 320px;
  width: 100%;
  background: linear-gradient(#ffffff,#0c3388);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  width: 40%;
  height: 180px;
  color: white;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo > a > img {
  height: 60px;
  padding-left: 20px;
}

.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: white;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__logo > a {
  display: flex;
}

.footer__logo_sp {
  display: none;
}

.footer__logo > .footer_title {
  font-size: 30px;
  color: white;
  padding-left: 10px;
}

.footer__right {
  width: 50%;
  height: 180px;
}

.footer__right > ul > li {
  list-style: none;
  color: #d6d6d6;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.footer__right > ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  padding: 0;
}

.footer__right ul li {
  width: 240px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 2px;
  margin: 5px auto;
  line-height: 20px;
  text-decoration: none;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s;
}

footer ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  width: 100%;
  transition: .3s;
  -webkit-transition: .3s;
  -ms-transition: .3s
}

footer ul li a:hover {
    background-color: #fff;
    color: #45b035;
    cursor: pointer;
  }
  
.footer__right ul li:hover a {
  color: #45b035;
}

/* -------------------------------PC_NEWS------------------------------- */
.news__list {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  font-size: 16px;
  list-style: none;
  margin: 0 auto;
  text-align: center;
  list-style-type: none;
}

.news__list li {
  display:flex;
  align-items: center;
  text-align: left;
  display: flex;
  gap: 20px;
  list-style: none;
}

/* -------------------------------PC_NEWS_DETAIL------------------------------*/


#news_list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#news_list li {
  display: flex;
  align-items: baseline;   /* 文字のベースラインをそろえる */
  column-gap: 12px;        /* 間隔 */
}

.news__detail{
  width: 60%;
  margin: 0 auto;
}

.news__title {
  font-size: 25px;
}

.post_at {
  font-size: 16px;
  font-weight: 700;
  color: #0c3388;
}

.content {
  font-size: 20px;
  text-align: left;
}

.news_link{
  margin-left: 20px;
}

.news__list > li > a,
.news__list > li > a:visited,
.news__list > li > a:hover,
.news__list > li > a:active {
  color: #1552d6;
  text-decoration: none;
}


.img__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news-image {
  display: block;
  margin: 30px auto;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}


/* --------------------------------PC_SCHOOL-------------------------------*/
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.heading::before,
.heading::after {
  content: '';
  width: 3px;
  height: 40px;
  background-color: #e5c046;
}

.heading::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

.heading::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

.mv {
  width: 100%;
  height:  auto;
  overflow: hidden;
  background: url(../img/index/20240401_MV.png);
  object-fit: hidden;
}

.staff__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}

.container__left, .container__right {
  flex: 1;
}

.container__left {
  display: flex;
  flex-direction: column;
}

.container__left > .staff > .staff_img {
  height: auto;
  width: 80%;
}

.staff__container > .container__right {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile {
  color: #009e3b;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.staff__box > .staff__name {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.staff__box > .staff__kana {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.staff__box {
  margin-bottom: 15px;
}

.staff__box > .title {
  font-size: 30px;
  font-weight: 700px;
  margin-bottom: 0px;
}

.staff__box > p {
  font-size: 20px;
  margin: 5px;
}

.school__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
}

.school__table {
  font-size: 30px;
  width: 100%;
  margin-bottom: 25px;
}

.school__table > tbody > tr > th,
.school__table > tbody > tr > td {
  border-right: none;
}

.school__table > tbody > tr {
  height: 100px;
}

.school_img img {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.due__container {
  width: 100%;
}

.due__table > tbody > tr > th {
  background-color: #009e3b;
  color: white
}

.due__table, .due__table th, .due__table td {
  border: 2px solid white;
  border-collapse: collapse
}

.due__table > tbody > tr > td {
  background-color: #009e3b;
  color: white;
  padding: 15px;
}

.comment {
  text-align: right;
  margin: 0;
  font-size: small;
  color: red;
}

.due__table {
  font-size: 20px;
  font-weight: 300;
}

.due__table > tbody > tr > th {
  width: 25%;
}

details {
  margin: 0 auto;
  width: 580px;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 18px;
  background-color: #d6d6d6;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover,
details[open] summary{
  background-color: #bbb;
}

summary::after {
  content: '+';
  margin-left: 30px;
  color: #5b8f8f;
  font-size: 21px;
  transition: transform .5s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.answer {
  padding: 20px;
  line-height: 1.6;
}

details[open] .answer {
  animation: fadein .5s ease;
}

@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* -------------------------------PC_SCHEDULE------------------------------*/
.schedule {
  border:solid 1px #777;
  width: 100%;
  height: 800px;
}

/* -------------------------------PC_ABOUT US------------------------------*/
.about__container {
  --about-font-size: 28px;          /* 基準サイズ（JSで上書きされる） */
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__container dl {
  display: flex;
  align-items: center;
  margin: 0;                        /* 余計な余白をリセット */
}

.about__container dt,
.about__container dd {
  box-sizing: border-box;
  white-space: nowrap;              /* 改行はさせない */
  font-size: var(--about-font-size);
  text-align: center;
}

.about__container dt {
  flex: 0 0 150px;                  /* ラベル幅（PC） */
  padding: 20px 30px;
  border-bottom: 5px solid #45b035;
}

.about__container dd {
  flex: 1 1 auto;                   /* 残り全部をデータ側に */
  min-width: 0;                     /* 長文でも折り返しやはみ出し抑制に効く */
  padding: 20px 30px;
  border-bottom: 5px solid #bbb;
  overflow: hidden;                 /* はみ出しを絶対に出さない（JSがサイズ調整） */
}

/* SP調整 */
@media (max-width: 768px) {
  .about__container dt { flex-basis: 100px; padding: 5px 10px; }
  .about__container dd { padding: 5px 10px; }
}

/* --------------------------------PC_ACCESS-------------------------------*/
.venue__name {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.venue__container {
  border: 1px solid #cfcfcf;
  padding: 20px;
  margin: 0 auto;
}

.venue__container:not(:last-child) {
  margin-bottom: 60px;
}

.venue__container > .container__top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 500px;
}

.venue__container > .container__top > .container__left,
.venue__container > .container__top > .container__right {
  flex: 1;
}

.venue__container > .container__top > .container__left{
  flex-direction: column;
}

.venue__container > .container__top > .container__left > img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.venue__container > .container__top > .container__right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.venue__container > .container__top > .container__right > iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.venue__container > .container__bottom {
  padding: 20px;
}

.venue__container > .container__bottom > address {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

/* --------------------------------PC_TRIAL-------------------------------*/
.trial__form {
  width: 100%;
  height: 2800px;
}

/* ----------------------------PC_PRIVACY_POLICY---------------------------*/
.privacy_policy{
  text-align: left;
  font-size: 20px;

}
/* ---------------------------PC_terms_of_service--------------------------*/
.terms_of_service{
  text-align: left;
  font-size: 20px;
}


}
/* --------------------------------スマホ-------------------------------*/
/* --------------------------------スマホ-------------------------------*/
/* --------------------------------スマホ-------------------------------*/
@media (max-width: 768px) {
  .section {
    margin-bottom: 30px;
    width: 95%;
    margin: 0 auto;
  }

  .hero__container .breadcrumbs {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    padding: 0 16px;
    font-size: 12px;
  }

/* --------------------------------SP_HEADER-------------------------------*/
body, html {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(-45deg, #0c3388, #0e357f, #009e3b, #45b035);
  z-index: 1000;
}

.wrapper {
  padding-top: 80px;
}

.header__logo {
  z-index: 2;
}

.header__logo > a > .logo {
  max-height: 60px;
  width: auto;
}

.nav {
  display: none;
}

.burger {
cursor: pointer;
position: absolute;
right: 20px;
top: 20px;
z-index: 999;
}

.burger span {
  display: block;
  width: 35px;
  height: 4px;
  margin: 7px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.nav {
  display: none;
}

.show {
  display: block;
}

.cross .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
}

.cross .burger span:nth-child(2) {
  opacity: 0;
}

.cross .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -10px);
}

.cross .burger span {
  background-color: #000;
}

.menu {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: blue;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}

.menu.is-active {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #fff;
  color: #009e3b;
}

.menu ul {
  list-style: none;
  width: 100%;
  padding: 0;
}

.menu ul li a:hover {
  background-color: #45b035;
  color: #fff;
  cursor: pointer;
}

.menu li {
  border-bottom: 1px solid #009e3b;
  text-align: center;
}

.menu li:last-child {
  border-bottom: none;
}

.menu a {
  display: block;
  padding: 15px 0;
  color: inherit;
  text-decoration: none;
}

.body-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ------------------------------SP_HERO------------------------------- */
.hero {
  display: none;
}

.hero_sp {
  display: block;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.swiper-slide > a > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ------------------------------SP_5NEWS------------------------------- */
.news {
  height: auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, #b9efad 0%, #92e187 55%, #6acb6f 100%);
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.news__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.news .caption {
  background: transparent;
  width: 100%;
  margin: 0 auto;
  padding: 8px 0;
  color: #0d3387;
}

.news .container {
  width: 100%;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  color: #0d3387;
  padding: 5px 0;
}

.five__news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  max-width: 1280px;
  font-size: 16px;
  margin: 5px auto;
  text-align: center;
  list-style-type: none;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
}

.five__news li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 20px;
  width: 100%;
  line-height: 1.6;
  margin: 2px auto;
  position: relative;
  overflow: hidden;
}

.five__news li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 51, 135, 0.55) 0%, rgba(13, 51, 135, 0.35) 55%, rgba(13, 51, 135, 0) 100%);
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 0;
}

.five__news li > * {
  position: relative;
  z-index: 1;
}

.five__news li:hover::before {
  transform: translateX(0);
}

.five__news li:hover {
  box-shadow: 0 8px 16px rgba(13, 51, 135, 0.25);
}

.five__news li:hover .post_at,
.five__news li:hover .news_link,
.five__news li:hover a {
  color: #fff;
}

.five__news .post_at {
  margin: 0;
  display: flex;
  align-items: center;
  color: #0d3387;
}

.five__news .news_link {
  display: flex;
  align-items: center;
}

.five__news > li > a,
.five__news > li > a:visited,
.five__news > li > a:hover,
.five__news > li > a:active {
  color: #0d3387;
  text-decoration: none;
}

/* --------------------------------SP_MESSAGE-------------------------------- */
.message {
  margin:0;
  background: none;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.message > .container > .cap {
  text-align: center;
  font-size: 24px;
  color: #0d3387;
  font-weight: bold;
  white-space: nowrap;
  font-size: clamp(16px, 5.2vw, 24px);
  max-width: 100%;
}

.message > .container {
  width: 95%;
  padding: 30px;
  color: #000;
  font-weight: bold;
  text-shadow: none;
}

/* ------------------------------SP_PASSION------------------------------- */
.passion {
  background: url(../img/index/20240331_PLUSONE_03.png);
  height: auto;
  background-color: rgba(200, 200, 200, 0.2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 50px 0;

  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.passion > .container > .cap {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  background: linear-gradient(-45deg, #0c3388, #0e357f, #009e3b, #45b035);
}

.passion > .container {
  width: 95%;
  padding: 30px;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  margin-bottom: 20px;
}

/* ------------------------------SP_SERVICE------------------------------- */
.service {
  width: 100%;
  background-color: #fff;
  margin: 20px 0;
}

.service > .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.service > .container > .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  height: 500px;
  width: 100%;
  background-color: #d6d6d6;
  border-radius: 20px;
}

.service > .container > .item:not(:last-child) {
margin-bottom: 25px;
}

.item__ttl {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.item .btn-2 {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
}

.item .btn-2.cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  box-sizing: border-box;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
}

.item .btn-2.cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}

.item .btn-2.cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}

.item .btn-2.cubic:hover .hovering {
  transform: rotateX(0);
}

.item .btn-2.cubic:hover .default {
  transform: rotateX(-90deg);
}

/* -----------------------------SP_CONTACT------------------------------ */
section.contact {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

form {
  width: 100%;
}

.form_group {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form_group > label {
  align-self: flex-start;
}

.form_input, textarea {
  width: 100%;
}

textarea {
  resize: none;
  height: 150px;
}

section.contact{
margin-bottom: 50px;
}

input[type="submit"] {
  height: 70px;
  width: 200px;
  background-color: #0c3388;
  color: aliceblue;
  font-size: 30px;
  margin: 0 auto;
  display: block;
}
/* --------------------------------modal---------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal_content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close_button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_button:hover,
.close_button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* -----email----- */
.heading__email {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  transform: translate(15px,-15px) rotate(-45deg);
  color: #0048ff;
}

.heading__email::before,
.heading__email::after {
  content: '';
  width: 2px;
  height: 20px;
  background-color: #0048ff;
}

.heading__email::before {
  margin-right: 10px;
  transform: rotate(-35deg);
}

.heading__email::after {
  margin-left: 10px;
  transform: rotate(35deg);
}

.email__link {
  text-align: center;
  width: 100%;
}



/* -------------------------------SP_NEWS------------------------------- */
.news__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  font-size: 16px;
  margin: 20px auto;
  text-align: center;
  list-style-type: none;
}

.news__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 20px;
  width: 100%;
  line-height: 1em;
  margin: 3px auto;
}

#news_list {
  list-style: none;
  margin: 20px auto;
  padding-left: 0;
}

#news_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

#news_list .post_at {
  margin: 0;
  white-space: nowrap;
}

#news_list .news_link {
  margin-left: 0;
}

.news_link{
  width: 70%;
}

.post_at {
  font-size: 11px;
  font-weight: 700;
  color: #0c3388;
}

.news__list > li > a,
.news__list > li > a:visited,
.news__list > li > a:hover,
.news__list > li > a:active {
  color: #1552d6;
  text-decoration: none;
}

/* -----------------------------SP_NEWS_DETAIL----------------------------*/
.news__title {
  font-size: 14px;
}

.news__detail{
  width: 100%;
  margin: 0 auto;
}

.news__detail > .post_at {
  font-size: 16px;
  font-weight: 700;
  color: #0c3388;
}

.news__detail > img{
  width: 100%;
}

.content {
  font-size: 16px;
  text-align: left;
}

.img__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news-image {
  display: block;
  margin: 30px auto;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

/* --------------------------------SP_SCHOOL-------------------------------*/
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.heading::before,
.heading::after {
  content: '';
  width: 3px;
  height: 40px;
  background-color: #e5c046;
}

.heading::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

.heading::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

.container__left{
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

.mv {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: url(../img/20240401_MV.png);
  object-fit: hidden;
}

.staff {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.staff_img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.staff__container > .container__right {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile {
  color: #009e3b;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.staff__box > .staff__name {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.staff__box > .staff__kana {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.staff__box {
  margin-bottom: 15px;
}

.staff__box > .title {
  font-size: 30px;
  font-weight: 700px;
  margin-bottom: 0px;
}

.staff__box > p {
  font-size: 20px;
  margin: 5px;
}

.school__container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.school__container > .container__left {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.school__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
}

.school__container > .container__right {
  width: 100%;
  margin-bottom: 30px;
}

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

.due__container {
  width: 100%;
}

.due__table > tbody > tr > th {
  background-color: #009e3b;
  color: white
}

.due__table, .due__table th, .due__table td {
  border: 2px solid white;
  border-collapse: collapse;
  font-size: 18px;
}

.due__table > tbody > tr > td {
  background-color: #009e3b;
  color: white;
}

.comment {
  text-align: right;
  margin: 0;
  font-size: small;
  color: red;
}

details {
  margin: 0 auto;
  width: 100%;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 18px;
  background-color: #d6d6d6;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover,
details[open] summary{
  background-color: #bbb;
}

summary::after {
  content: '+';
  margin-left: 30px;
  color: #5b8f8f;
  font-size: 21px;
  transition: transform .5s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.answer {
  padding: 20px;
  line-height: 1.6;
}

details[open] .answer {
  animation: fadein .5s ease;
}

@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* -------------------------------SP_SCHEDULE------------------------------*/
.schedule {
  border:solid 1px #777;
  width: 100%;
  height: 500px;
}

/* -------------------------------SP_ABOUT US------------------------------*/
dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

dt {
  padding: 5px 10px;
  width: 100px;
  border-bottom: 5px solid #45b035;
  text-align: center;
}

dd {
  padding: 5px 10px;
  width: calc(100% - 100px);
  border-bottom: 5px solid #bbb;
  text-align: center;
}

/* -------------------------------SP_ACCESS------------------------------*/
.venue__name {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.venue__container {
  border: 1px solid #cfcfcf;
  padding: 20px;
  margin: 0 auto;
}

.venue__container:not(:last-child) {
  margin-bottom: 60px;
}

.venue__container > .container__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.venue__container > .container__top > .container__left,
.venue__container > .container__top > .container__right {
  width: 100%;
  margin: 0 auto;
}

.venue__container > .container__top > .container__right iframe {
  width: 100%;
  height: 500px;
  margin-top: 20px;
}

.venue__container > .container__bottom {
  padding: 20px;
}

.venue__container > .container__bottom > address {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

/* -------------------------------SP_TRIAL------------------------------*/
.trial__form {
  height: 3000px;
  width: 100%;
}

  footer {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    background-color: #0c3388;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
  }

  .footer__left {
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
  }

  .footer__logo_sp img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
  }

  .footer__logo {
    display: none;
  }

  .footer__info {
    text-align: center;
    color: white;
 }

 .footer__info p {
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 5px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__right > ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer__right ul li {
  width: 280px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 2px;
  margin: 5px auto;
  font-size: 1.4rem;
  line-height: 30px;
  text-decoration: none;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s;
}

footer ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  width: 100%;
  transition: .3s;
  -webkit-transition: .3s;
  -ms-transition: .3s
}

footer ul li a:hover {
    background-color: #fff;
    color: #45b035;
    cursor: pointer;
  }

.footer__right ul li:hover a {
  color: #45b035;
}

.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: white;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .features__heading,
  .courses__heading,
  .steps__heading,
  .youtube__heading,
  .goods__heading {
    font-size: clamp(16px, 5.4vw, 22px) !important;
    white-space: nowrap;
    max-width: 100%;
  }

  .goods__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
    font-weight: bold;
    color: #0d3387;
  }

}

}
