/* style.css */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

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

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







/* 初期状態 */
.fade-up,
.fade-left,
.fade-right,
.fade-scale {
  opacity: 0;
  transition: all 0.9s ease;
}

.delay1 { transition-delay: .1s; }
.delay2 { transition-delay: .2s; }
.delay3 { transition-delay: .3s; }
.delay4 { transition-delay: .4s; }


/* 下から */
.fade-up {
  transform: translateY(50px);
}

/* 左から */
.fade-left {
  transform: translateX(-50px);
}

/* 右から */
.fade-right {
  transform: translateX(50px);
}
p
/* 拡大 */
.fade-scale {
  transform: scale(0.9);
}

/* 表示後 */
.is-show {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}











/* header */
.header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  width: min(100%, 1500px);
  height: 70px;
  margin: 0 auto;
  padding: 0 50px;
  background: #fff;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
}

.header__logo img {
  width: 150px;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__item {
  position: relative;
}

.header__item > a {
  position: relative;
  display: block;
  padding: 35px 0 35px 18px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.header__item > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #009b68;
  transform: translateY(-50%);
}

.header__item:hover > a {
  color: #159b69;
}

.header__item:hover > a::before {
  background: #159b69;
}


/* submenu */
.header-sub {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: max-content;
  min-width: 460px;
  padding: 22px 34px;

  background: rgba(255,255,255);
  border-radius: 3px;
  box-shadow: none;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;

  display: block;
}

.header-sub::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 22px;
}

.has-sub:hover .header-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 画像は非表示 */
.header-sub__image {
  display: none;
}

/* 横並び */
.header-sub__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  white-space: nowrap;
}

.header-sub__links a {
  position: relative;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 7px;
}

.header-sub__links a::before {
  content: "-";
  margin-right: 6px;
}

.header-sub__links a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #555;
  transition: 0.25s ease;
}

.header-sub__links a:hover::after {
  width: calc(100% - 12px);
}

.header-sub__links a:hover {
  color: #222;
}


/* buttons */
.header__actions {
  display: flex;
  gap: 10px;
}

.header__actions a {
  position: relative;
  padding: 14px 52px 14px 18px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.header__member {
  border: 1px solid #009b68;
  color: #000;
}

.header__register {
  border: 1px solid #0070c9;
  color: #000;
}

.header__actions a::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.header__member::after {
  background: #009b68;
}

.header__register::after {
  background: #0070c9;
}

.header__member:hover {
  background: #009b68;
  color: #fff;
}

.header__register:hover {
  background: #0070c9;
  color: #fff;
}


/* hamburger */
.header__btn {
  display: none;
  width: 34px;
  height: 26px;
  border: none;
  background: none;
  padding: 0;
  position: relative;
  z-index: 3;
}

.header__btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #009b68;
  border-radius: 999px;
  transition: 0.3s ease;
}

.header__btn.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header__btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__btn.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.header__sub-toggle {
  display: none;
}
/* responsive */
@media (max-width: 1100px) {
  .header {
    top: 0;
  }

  .header__inner {
    width: 100%;
    height: 64px;
    padding: 0 24px;
  }

  .header__logo img {
    width: 150px;
  }

  /* ハンバーガー：＝ */
  .header__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    padding: 0;
    position: relative;
    z-index: 10;
  }

  .header__btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #009b68;
    border-radius: 999px;
    transition: 0.3s ease;
  }

  .header__btn span:nth-child(2) {
    display: none;
  }

  .header__btn.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .header__btn.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  /* メニュー本体 */
  .header__nav {
    position: absolute;
    top: 76px;
    left: 5%;
    width: 90%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 22px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    display: none;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__list {
    display: grid;
    gap: 0;
  }

  .header__item {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
  }

  .header__item > a {
    padding: 18px 45px 18px 18px;
    font-size: 16px;
  }

  /* 親メニュー右側の↓ボタン */
  .header__sub-toggle {
display: block;
    position: absolute;
    top: 12px;
    right: 0;
    width: 38px;
    height: 38px;
    border: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
  }

  .header__sub-toggle::before {
    content: "＋";
    color: #009b68;
    font-size: 16px;
    font-weight: 400;
  }

  .header__item.is-sub-open .header__sub-toggle::before {
    content: "―";
  }

  /* SPではサブメニューを最初は隠す */
  .header-sub {
    position: static;
    width: 100%;
    min-width: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0;
    padding: 0 0 18px 18px;
    background: transparent;
    box-shadow: none;
    display: none;
  }

  .header__item.is-sub-open .header-sub {
    display: block;
  }

  .has-sub:hover .header-sub {
    transform: none;
  }

  .header-sub__links {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .header-sub__links a {
    font-size: 14px;
  }

  /* 会員メニュー・新規登録はそのまま */
  .header__actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
  }

  .header__actions a {
    text-align: center;
  }
}






















/* hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f2f2ed;
}

.hero__slider {
  position: relative;
  width: 100%;
}

.hero__slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  display: block;
  opacity: 1;
}

.hero__slide picture {
  display: block;
  width: 100%;
}

.hero__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__dots {
  height: 92px;
  background: #f2f2ed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.hero__dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #009b68;
  opacity: 0.55;
  cursor: pointer;
}

.hero__dots button.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero__dots {
    height: 70px;
  }

  .hero__dots button {
    width: 13px;
    height: 13px;
  }
}











.future-section {
  position: relative;
  padding: 190px 0;
  background: #f2f2ed;
  overflow: hidden;
}

.future-wave {
  position: absolute;
  width: 900px;
  height: 600px;
  border-radius: 42%;
  background: rgba(255,255,255,.55);
  top: -100px;
  left: -350px;
  animation: serviceWave 5s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes serviceWave {
  0% {
    transform: translate(0,0) rotate(0deg);
  }
  100% {
    transform: translate(-80px,60px) rotate(10deg);
  }
}

/* コンテンツを前面に */
.future-section > * {
  position: relative;
  z-index: 1;
}

.future-container {
  width: min(1000px, 88%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 30px;
}

.future-title {
  margin: 0 0 65px;
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.future-title span {
  display: table;
  margin-bottom: 9px;
  padding: 0 8px 4px;
  background: #15986b;
  color: #fff;
}

.future-text p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* 右画像を画面右端まで伸ばす */
.future-image {
  margin-right: calc(0% - 50vw);
  
}

.future-image img {
  width: 60%;
  height: 400px;
  object-fit: cover;
  display: block;

  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}








/* responsive */
@media (max-width: 900px) {
  .future-section {
    padding: 100px 0;
  }

  .future-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .future-title {
    margin-bottom: 42px;
  }

  .future-text p {
    font-size: 16px;
  }

  .future-text p br {
    display: none;
  }

  .future-image img {
    width: min(80%, 300px);
  }
}

@media (max-width: 520px) {
  .future-section {
    padding: 80px 0;
  }

  .future-container {
    width: 88%;
  }

  .future-title {
    font-size: 34px;
  }

  .future-title span {
    padding: 0 6px 3px;
  }
}













.info-section {
  padding: 110px 0 120px;
  background: #f2f2ed;
}



.info-container {
  width: min(1000px, 88%);
  margin: 0 auto;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.info-title span {
  width: 10px;
  height: 10px;
  display: block;
}

.info-title--green span {
  background: #15986b;
}

.info-title--blue span {
  background: #0070bd;
}

.info-title h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}

.info-list {
  display: grid;
  gap: 0;
}

.info-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 20px;
  padding: 0 0 15px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  color: inherit;
  text-decoration: none;
  overflow: visible;
}
.info-thumb {
  width: 170px;
  height: 130px;
  background: #eee;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}

.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-text time {
  display: block;
  margin-bottom: 12px;
  color: #444;
  font-size: 13px;
min-width: 0;
}

.info-text h3 {
  margin: 0 0 0px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
min-width: 0;
}

.info-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
min-width: 0;
}

.info-arrow {
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 2;
}

.info-arrow--green {
  background: #15986b;
}

.info-arrow--blue {
  background: #0070bd;
}

.info-item:hover .info-arrow {
  transform: translateX(5px);
}

.info-more-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.info-more {
  width: 170px;
  height: 40px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 999px;
  color: #222;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.info-more span {
  font-weight: 400;
  letter-spacing: -0.2em;
}

.info-more:hover {
  background:#000;
  color: #fff;
transform: translateX(5px);
}

/* スマホ */
@media (max-width: 900px) {

  .info-section {
    padding: 70px 0 90px;
  }

  .info-container {
    width: 88%;
  }

  .info-columns {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .info-title {
    margin-bottom: 30px;
  }

  .info-title h2 {
    font-size: 26px;
  }

 .info-item {
    grid-template-columns: 110px minmax(0, 1fr) 32px;
    overflow: visible;
  }


  .info-thumb {
    width: 110px;
    height: 84px;
  }

  .info-text {
    min-width: 0;
  }

  .info-text time {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .info-text h3 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .info-text p {
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .info-arrow {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .info-more-wrap {
    margin-top: 25px;
  }

  .info-more {
    width: 170px;
    height: 44px;
    font-size: 14px;
  }
}


@media (max-width: 480px) {

  .info-container {
    width: 92%;
  }

  .info-item {
    grid-template-columns: 90px minmax(0, 1fr) 30px;
  }


  .info-thumb {
    width: 90px;
    height: 70px;
  }

  .info-text h3 {
    font-size: 13px;
  }

  .info-text p {
    font-size: 11px;
  }

  .info-arrow {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}




.service-section {
  position: relative;
  padding: 150px 0;
  background: #f2f2ed;
  overflow: hidden;
}

.service-wave {
  position: absolute;
  width: 1200px;
  height: 700px;
  border-radius: 42%;
  background: rgba(255,255,255,.55);
  top: 0px;
  right: -350px;
  animation: serviceWave 5s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes serviceWave {
  0% {
    transform: translate(0,0) rotate(0deg);
  }
  100% {
    transform: translate(-80px,60px) rotate(10deg);
  }
}

.service-container {
  position: relative;
  z-index: 1;
  width: min(1100px, 88%);
  margin: 0 auto;
}

.service-heading {
  text-align: center;
  margin-bottom: 70px;
}

.service-heading p {
  color: #149866;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 10px;
}

.service-heading h2 {
  font-size: 40px;
  margin: 0 0 22px;
  color: #222;
}

.service-heading span {
  display: block;
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  display: block;
  min-height: 240px;
  padding: 30px 24px;
  border-radius: 16px;
  background: #fff;
  color: #222;
  text-decoration: none;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1aa36a, #1aa36a);
   right: -40px;
  top: -40px;
  
  transition: transform .5s ease, opacity .5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

.service-card:hover::before {
  transform: scale(1.4);
  opacity: .22;
}

.service-card__num {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  opacity: .2;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-card span {
  display: inline-block;
  color: #149866;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
}

.service-card span::after {
  content: "→";
  margin-left: 10px;
  transition: margin-left .3s ease;
}

.service-card:hover span::after {
  margin-left: 18px;
}

/* 表示アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0s;
}

.service-card:nth-child(2) {
  transition-delay: .1s;
}

.service-card:nth-child(3) {
  transition-delay: .2s;
}

.service-card:nth-child(4) {
  transition-delay: .3s;
}

.service-card:nth-child(5) {
  transition-delay: .4s;
}

.service-card:nth-child(6) {
  transition-delay: .5s;
}
/* スマホ */
@media (max-width: 768px) {
  .service-section {
    padding: 90px 0;
  }

  .service-heading h2 {
    font-size: 36px;
  }

   .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }


 .service-card {
    min-height: 200px;
    padding: 20px 16px;
  }
 .service-card__num {
    font-size: 24px;
    margin-bottom: 12px;
  }

 .service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

.service-card span {
    font-size: 12px;
  }


}



































.location-section {
  position: relative;
  padding: 0px 0 130px;
  background: #f2f2ed;
  overflow: hidden;
}

.location-container {
  position: relative;
  width: min(1000px, 88%);
  min-height: 760px;
  margin: 0 auto;
}

.location-text {
  position: relative;
  z-index: 3;
  padding-top: 210px;
}

.location-ja {
  margin: 0 0 15px;
  color: #444;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.location-title {
  margin: 0 0 58px;
  color: #555;
  font-size: clamp(50px, 7vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}

.location-title span {
  color: #15986b;
}

.location-copy {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.location-map {
  position: absolute;
  top: 0;
  right: -40px;
  width: 100%;
  z-index: 1;
}

.location-map img {
  width: 100%;
  display: block;
  
}

.location-buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.location-buttons a {
  min-height: 75px;
  padding: 0 30px;
  background: linear-gradient(135deg, #18a06f 0%, #00895f 100%);
  border-right: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease;
}

.location-buttons a:hover {
  background: linear-gradient(135deg, #1ecb8f 0%, #00724f 100%);
  
  z-index: 2;
}

.location-buttons span {
  font-size: 22px;
  transition: 0.3s ease;
}

.location-buttons a:hover span {
  transform: translateX(6px);
}

.location-buttons small {
  font-size: 13px;
}

/* responsive */
@media (max-width: 900px) {
  .location-section {
    padding: 90px 0;
  }

  .location-container {
    min-height: auto;
  }

  .location-text {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .location-ja {
    font-size: 22px;
  }

  .location-title {
    margin-bottom: 34px;
    font-size: 54px;
  }

  .location-copy {
    font-size: 16px;
  }

  .location-copy br {
    display: none;
  }

  .location-map {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 20px auto 30px;
  }

  .location-buttons {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .location-buttons a {
    min-height: 72px;
    padding: 0 20px;
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .location-buttons {
    grid-template-columns: 1fr;
  }

  .location-title {
    font-size: 48px;
  }
}
















.photo-loop-section {
  position: relative;
  padding: 100px 0 120px;
  background: #f2f2ed;
  overflow: hidden;
}

.photo-gallery-container {
  width: min(1000px, 88%);
  margin: 0 auto;
}


.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 20px;
}

.photo-gallery-item {
  overflow: hidden;
  background: #ddd;

  /* 右上・左下だけ丸く */
  border-radius: 0 55px 0 55px;

  }

.photo-gallery-item--large {
  grid-row: span 2;
}


.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.04);
  transition: transform .6s ease, filter .6s ease;
}

.photo-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* スマホ */
@media (max-width: 768px) {
  .photo-loop-section {
    padding: 70px 0 90px;
  }

  .photo-gallery-container {
    width: 88%;
  }

  .photo-gallery-heading h2 {
    font-size: 28px;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 12px;
  }

  .photo-gallery-item {
    border-radius: 0 35px 0 35px;
  }

  .photo-gallery-item--large {
    grid-row: span 2;
  }

  .photo-gallery-item--wide {
    grid-column: span 2;
  }
}



























.numbers-section {
  position: relative;
  padding: 50px 0;
  background: #f2f2ed;
  overflow: hidden;
}

.numbers-container {
  position: relative;
  z-index: 1;
  width: min(1120px, 88%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}


.numbers-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: #0873bd;
  transform: translateY(-50%);
}

.numbers-left h2 {
  margin: 0 0 38px;
  color: #000;
  font-size: clamp(45px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.numbers-lead {
  max-width: 360px;
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.06em;
}

.numbers-right {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  justify-content: center;
  gap: 34px 44px;
}

.number-circle:nth-child(1) {
  margin-top: 40px;
}

.number-circle:nth-child(2) {
  margin-top: -30px;
}

.number-circle:nth-child(3) {
  grid-column: 1 / 3;
  justify-self: center;
  margin-top: -10px;
}

.number-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.number-circle::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    var(--main-color) 0 75%,
    var(--sub-color) 75% 100%
  );
  z-index: 0;
}

.number-circle::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.number-circle > div {
  position: relative;
  z-index: 2;
}

.circle-blue {
  --main-color: #0873bd;
  --sub-color: #188f6d;
}

.circle-green {
  --main-color: #188f6d;
  --sub-color: #0873bd;
}

.number-circle p {
  margin: 0 0 4px;
  color: #444;
  font-size: 20px;
  font-weight: 700;
  font-family: serif;
}

.number-circle strong {
  display: block;
  color: #555;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  font-family: serif;
}

.number-circle span {
  display: block;
  color: #444;
  font-size: 21px;
  font-weight: 700;
  font-family: serif;
}

.number-circle small {
  display: block;
  margin-top: 5px;
  color: #444;
  font-size: 12px;
  font-weight: 500;
}

/* responsive */
@media (max-width: 900px) {
  .numbers-section {
    padding: 50px 0;
  }

  .numbers-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .numbers-left h2 {
    font-size: 40px;
  }

  .numbers-lead {
    max-width: none;
    font-size: 15px;
  }

  .numbers-right {
    grid-template-columns: repeat(2, 190px);
    gap: 24px;
  }

  .number-circle {
    width: 190px;
    height: 190px;
  }

  .number-circle:nth-child(1),
  .number-circle:nth-child(2),
  .number-circle:nth-child(3) {
    margin-top: 0;
  }

  .number-circle strong {
    font-size: 36px;
  }
}

@media (max-width: 520px) {

  .numbers-right {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
    gap: 18px;
  }

  .number-circle {
    width: 160px;
    height: 160px;
  }

  .number-circle:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
  }

  .number-circle p {
    font-size: 16px;
  }

  .number-circle strong {
    font-size: 30px;
  }

  .number-circle span {
    font-size: 16px;
  }

  .number-circle small {
    font-size: 10px;
  }
}








.numbers-circuit {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.numbers-circuit::before {
  content: "";
  position: absolute;
  inset: -80px;

  background-image:
    linear-gradient(rgba(24,143,109,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,115,189,.10) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image: radial-gradient(circle at 65% 45%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 65% 45%, #000 0%, transparent 65%);

  animation: circuitMove 18s linear infinite;
}

.numbers-circuit::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 2px;
  top: 42%;
  left: -240px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(24,143,109,.55),
    rgba(8,115,189,.55),
    transparent
  );

  box-shadow:
    180px 90px 0 rgba(24,143,109,.20),
    420px -60px 0 rgba(8,115,189,.20),
    700px 120px 0 rgba(24,143,109,.18);

  animation: circuitLight 6s linear infinite;
}

@keyframes circuitMove {
  from {
    transform: translate(0,0);
  }
  to {
    transform: translate(80px,80px);
  }
}

@keyframes circuitLight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 300px));
  }
}
























.footer {
  background: #f2f2ed;
}

/* CTA */

.footer-banner-wrap {
  width: min(1000px, 88%);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-cta {
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.footer-cta.contact {
  background: linear-gradient(
    90deg,
    #00945e,
    #1fb56d
  );
}

.footer-cta.register {
  background: linear-gradient(
    90deg,
    #0a73c3,
    #6a95d8
  );
}

.footer-cta span {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-cta strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-cta p {
  font-size: 16px;
  line-height: 1.8;
}

.footer-cta-btn {
  width: 300px;
  max-width: 100%;
  height: 50px;
  margin: 20px auto 0;
  border: 2px solid #fff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}


.footer-cta-btn:hover {
 color: #000;
 background: #fff;
 font-weight: 500;
}





/* main */

.footer-main {
  width: min(1000px, 88%);
  margin: 0 auto;
  padding-bottom: 80px;

  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
}

.footer-logo img {
  width: 200px;
}

.footer-banner img {
  width: 100%;
  margin-top: 50px;
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav-group {
  border-top: 1px solid #cfcfcf;
  padding-top: 10px;
}

.footer-nav-group h3 {
  margin: 0 0 5px;
  color: #555;
  font-size: 14px;
}

.footer-nav-group h3::before {
  content: "■";
  color: #15986b;
  margin-right: 5px;
}

.footer-nav-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
}

.footer-nav-group a {
  position: relative;
  display: inline-block;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 4px;
  transition: .3s;
}

.footer-nav-group a::before {
  content: "-";
  margin-right: 6px;
}

.footer-nav-group a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #555;
  transition: .25s ease;
}

.footer-nav-group a:hover {
  color: #222;
}

.footer-nav-group a:hover::after {
  width: calc(100% - 12px);
}


.footer-policy-sp{
  display:none;
}

/* bottom */

.footer-bottom {
  background: #666;
  padding: 20px 0;
}

.footer-bottom-inner {
  width: min(1000px, 88%);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
}

.footer-policy {
  display: flex;
  gap: 30px;
}

.footer-policy a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* responsive */

@media (max-width: 900px){

  /* CTA */
  .footer-banner-wrap {
    width: 88%;
    max-width: 420px;
    margin: 0 auto;
    padding: 60px 0;
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    box-sizing: border-box;
  }

  .footer-cta {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 22px;
  }

  .footer-cta strong {
    font-size: 38px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .footer-cta-btn {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
  }

  /* メイン */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 40px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-banner {
    display: block;
    max-width: 350px;
    margin: 0 auto;
  }

  .footer-right {
    gap: 24px;
  }

  .footer-nav-group ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;
    padding-left: 18px;
  }

  .footer-nav-group a {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 下部 */


.footer-policy{
  display:none;
}
.footer-policy-sp{
  display:flex;
  flex-direction:column;
  align-items:flex-start; /* ← 左寄せ */
  gap:12px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid #d8d8d8;
}


.footer-policy-sp a{
  color:#666;
  text-decoration:none;
  font-size:14px;
}

  .footer-bottom {
   padding:20px 0;
}


  .footer-bottom-inner {
    justify-content:center;
  text-align:center;
}

  /* コピーライトを先に表示 */
  .footer-bottom p {
    order: 1;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
  }


}











/* =========================
   サービスページ
========================= */

.consult-page {
  background: #f2f2ed;
  color: #4a4a4a;
  font-family: "Noto Sans JP", sans-serif;
}

/* FV */
.consult-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  background: #009246;
}
.consult-hero__image {
  width: 100%;
  height: 330px;
}



.consult-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



.consult-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.consult-hero__bgtext {
  position: absolute;
  top: 88px;
  left: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.12);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: -1;
}

.consult-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.consult-breadcrumb {
  margin: 92px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.consult-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* about */
.consult-about {
  padding: 120px 20px 72px;
}

.consult-about__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.consult-heading {
  border-bottom: 1px solid #000;
  margin-bottom: 45px;
}

.consult-heading h2 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.consult-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 11px;
  height: 11px;
  background: #009246;
 
}

.consult-about__content {
  display: grid;
  grid-template-columns: 1fr 375px;
  gap: 90px;
  align-items: center;
  padding: 0 28px;
}

.consult-about__text p {
  margin: 0 0 16px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.consult-about__image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0 58px 0 58px;
}

/* SP */
@media (max-width: 768px) {
  .consult-hero {
    height: 250px;
  }

  .consult-hero::after {
    width: 230px;
    height: 48px;
    border-radius: 38px 0 0 0;
  }

  .consult-hero__inner {
    padding-top: 105px;
  }

  .consult-hero__bgtext {
    top: 95px;
    font-size: 47px;
  }

   .consult-hero h1 {
    font-size: 28px;
  }

  .consult-breadcrumb {
    margin-top: 50px;
    font-size: 12px;
  }

  .consult-about {
    padding: 70px 20px 50px;
  }

  .consult-heading h2 {
    font-size: 24px;
    padding-left: 22px;
  }

  .consult-heading h2::before {
    top: 12px;
    width: 10px;
    height: 10px;
  }

  .consult-about__content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0;
  }

  .consult-about__text p {
    font-size: 17px;
    line-height: 1.9;
  }

 .consult-hero__image {
    height: 250px;
  }


  .consult-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

}



/* =========================
   講習カリキュラム
========================= */

.curriculum-section{
  padding: 60px 20px 100px;

}

.curriculum-lead{
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 45px;
  color: #111;
}

.curriculum-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.curriculum-card{
  border: 2px solid #009246;
  border-radius: 14px;
  overflow: hidden;
}

.curriculum-card__head{
  background: #009246;
  color: #fff;
  text-align: center;
  padding: 24px 20px 34px;
}

.curriculum-card__head p{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.curriculum-card__head span{
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.curriculum-card__head h3{
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
}

.curriculum-card__head em{
  color: #e7e91e;
  font-style: normal;
}

.curriculum-card__body{
  padding: 28px;
  background: #fff;
}

.curriculum-card__body p{
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

@media(max-width:768px){

  .curriculum-section{
    padding: 50px 20px 70px;
  }

  .curriculum-list{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .curriculum-lead{
    font-size: 17px;
  }
}

/* =========================
   スマホ診断士講習
========================= */

.course-section {
  padding: 50px 20px 110px;
  background: #f2f2ed;
}

.course-lead {
  margin: 0 0 30px;
  color: #111;
  font-size: 17px;
  line-height: 1.8;
}

.course-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
  padding: 0 0px;
}

.course-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-label {
  display: inline-block;
  min-width: 130px;
  padding: 6px 16px 8px;
  background: #009246;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.course-label--gray {
  background: #e5e5e5;
  color: #009246;
}

.course-row p {
  margin: 0;
  color: #231815;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.course-row p strong {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.course-row p small {
  font-size: 14px;
  font-weight: 500;
}

.course-material {
  max-width: 430px;
  margin-left: auto;
}

.course-material__image {
  position: relative;
  margin-bottom: 25px;
}

.course-material__image img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
}


.course-material__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 34px;
  margin: 0;
  padding: 0 0 0 24px;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

/* SP */
@media (max-width: 768px) {
  .course-section {
    padding: 45px 20px 75px;
  }

  .course-lead {
    margin-bottom: 38px;
    font-size: 15px;
  }

  .course-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0;
  }

  .course-info {
    gap: 24px;
  }

  .course-row {
   display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
  .course-label {

    min-width: auto;
    font-size: 17px;
  }

  .course-row p {
    font-size: 17px;
  }

  .course-row p strong {
    font-size: 17px;
  }

  .course-material {
    max-width: 100%;
    margin: 0;
  }

  .course-material__image img {
    max-width: 100%;
  }

  .course-badge {
    right: 0;
    top: -28px;
    width: 78px;
    height: 78px;
    font-size: 20px;
    border-width: 2px;
  }

  .course-material__list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    font-size: 18px;
  }
}





/* =========================
   受講後の活躍イメージ
========================= */

.active-section {
  padding: 40px 20px 120px;
}







.active-lead {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.8;
}

.active-circle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.active-circle {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 3px solid #009246;
  border-radius: 50%;
 background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
  transition: .3s ease;
}





.active-circle__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.active-circle h3 {
  margin: 0 0 24px;
  color: #009246;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
}

.active-circle p {
  margin: 0;
  color: #222;
  font-size: 17px;
  line-height: 1.8;
}

/* SP */

@media (max-width:768px){

  .active-circle-list{
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 24px;
  }

  .active-circle{
    padding: 34px;
  }

  .active-circle h3{
    font-size: 22px;
  }

  .active-circle p{
    font-size: 17px;
  }
}












.info-archive {
  background: #fff;
  color: #333;
  overflow: hidden;
}

.info-archive__hero {
  background: #f3f3ee;
  padding: 90px 20px 0;
  min-height: 330px;
  position: relative;
}

.info-archive__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.info-archive__bgtext {
  position: absolute;
  top: 0px;
  left: -15px;
  margin: 0;
  font-size: clamp(72px, 11vw, 90px);
  line-height: 1;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  z-index: 1;
  white-space: nowrap;
}

.info-archive h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 40px;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  color: #444;
}

.info-archive__breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  font-size: 14px;
  color: #555;
}

.info-archive__breadcrumb a {
  color: #555;
  text-decoration: none;
}

.info-archive__content {
  position: relative;
  margin-top: -66px;
  padding: 0 20px 80px;
}

.info-archive__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 140px;
  background: #fff;
  border-radius: 60px 0 0 0;
}

.info-archive__box {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 150px;
  position: relative;
  z-index: 2;
}

.info-list {
  width: 100%;
}

.info-list__item {
  display: grid;
  grid-template-columns: 100px 1fr 42px;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 153, 102, 0.35);
  text-decoration: none;
  color: #555;
  transition: 0.3s ease;
}

.info-list__item time {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  transition: 0.3s ease;
}

.info-list__item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.info-list__arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #009966;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
  transition: 0.3s ease;
}

.info-list__item:hover,
.info-list__item.is-active {
  color: #009966;
}

.info-list__item:hover time,
.info-list__item.is-active time {
  color: #009966;
}

.info-list__item:hover .info-list__arrow {
  transform: translateX(5px);
  background: #007f55;
}

.info-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.info-pagination a {
  width: 24px;
  height: 24px;
  border: 1px solid #009966;
  border-radius: 50%;
  color: #009966;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.info-pagination a.is-current,
.info-pagination a:hover {
  background: #009966;
  color: #fff;
}

/* スマホ */
@media (max-width: 768px) {
  .info-archive__hero {
    min-height: 260px;
    padding: 70px 20px 0;
  }

  .info-archive__bgtext {
    top: -15px;
    left: 0;
    font-size: 64px;
  }

  .info-archive h1 {
    padding-top: 35px;
    font-size: 30px;
  }

  .info-archive__breadcrumb {
    margin-top: 60px;
    font-size: 13px;
  }

  .info-archive__content {
    margin-top: -45px;
    padding: 0 20px 60px;
  }

  .info-archive__content::before {
    width: 62%;
    height: 95px;
    border-radius: 45px 0 0 0;
  }

  .info-archive__box {
    padding-top: 100px;
  }

  .info-list__item {
    grid-template-columns: 1fr 36px;
    gap: 12px;
    padding: 20px 0;
  }

  .info-list__item time {
    grid-column: 1 / 2;
    font-size: 14px;
  }

  .info-list__item p {
    grid-column: 1 / 2;
    font-size: 15px;
  }

  .info-list__arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}





.column-archive-page {
  background: #fff;
  color: #333;
  overflow: hidden;
}

.column-hero {
  background: #f3f3ee;
  min-height: 330px;
  padding: 95px 20px 0;
  position: relative;
}

.column-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.column-hero__bgtext {
  position: absolute;
  top: 0px;
  left: -15px;
  margin: 0;
  color: #fff;
  font-size: clamp(82px, 12vw, 142px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  z-index: 1;
  white-space: nowrap;
}

.column-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 48px;
  color: #444;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.column-breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 88px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.column-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.column-content {
  position: relative;
  margin-top: -66px;
  padding: 0 20px 80px;
}

.column-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 138px;
  background: #fff;
  border-radius: 58px 0 0 0;
}

.column-content__inner {
  position: relative;
  z-index: 2;
  max-width: 890px;
  margin: 0 auto;
  padding-top: 175px;
}

.column-list {
  width: 100%;
}

.column-card {
  display: grid;
  grid-template-columns: 162px 1fr 38px;
  align-items: center;
  gap: 45px;
  min-height: 132px;
  padding: 0 18px 18px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid #cfcfcf;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
}

.column-card__image {
  width: 162px;
  height: 114px;
  background: #4b4b4b;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.column-card__image span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.column-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-card__text time {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.column-card__text h2 {
  margin: 0 0 5px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.column-card__text p {
  margin: 0;
  color: #555;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
}

.column-card__arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #009966;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
  transition: 0.3s ease;
}

.column-card:hover {
  opacity: 0.85;
}

.column-card:hover .column-card__arrow {
  transform: translateX(5px);
  background: #007f55;
}

.column-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 90px;
}

.column-pagination a {
  width: 27px;
  height: 27px;
  border: 2px solid #009966;
  border-radius: 50%;
  color: #009966;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease;
}

.column-pagination a.is-current,
.column-pagination a:hover {
  background: #009966;
  color: #fff;
}

/* スマホ */
@media (max-width: 768px) {
  .column-hero {
    min-height: 260px;
    padding: 70px 20px 0;
  }

  .column-hero__bgtext {
    top: -10px;
    left: 0;
    font-size: 72px;
  }

  .column-hero h1 {
    padding-top: 42px;
    font-size: 30px;
  }

  .column-breadcrumb {
    margin-top: 60px;
    font-size: 13px;
  }

  .column-content {
    margin-top: -45px;
    padding: 0 20px 60px;
  }

  .column-content::before {
    width: 62%;
    height: 95px;
    border-radius: 45px 0 0 0;
  }

  .column-content__inner {
    padding-top: 115px;
  }

  .column-card {
    grid-template-columns: 110px 1fr 32px;
    gap: 15px;
    min-height: auto;
    padding: 0 0 18px;
    margin-bottom: 22px;
  }

  .column-card__image {
    width: 110px;
    height: 78px;
  }

  .column-card__text time {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .column-card__text h2 {
    font-size: 13px;
    line-height: 1.45;
  }

  .column-card__text p {
    display: none;
  }

  .column-card__arrow {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .column-pagination {
    margin-top: 55px;
  }
}

@media (max-width: 480px) {
  .column-card {
    grid-template-columns: 100px 1fr;
    position: relative;
    padding-right: 42px;
  }

  .column-card__image {
    width: 100px;
    height: 72px;
  }

  .column-card__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .column-card:hover .column-card__arrow {
    transform: translateY(-50%) translateX(4px);
  }
}
























.company-page {
  background: #fff;
  color: #333;
  overflow: hidden;
}

.company-hero {
  background: #f2f2ed;
  min-height: 330px;
  padding: 95px 20px 0;
  position: relative;
}

.company-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.company-hero__bgtext {
  position: absolute;
  top: -35px;
  left: -15px;
  margin: 0;
  color: #fff;
  font-size: clamp(78px, 12vw, 142px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  z-index: 1;
  white-space: nowrap;
}

.company-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 48px;
  color: #444;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.company-breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 88px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.company-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.company-content {
  position: relative;
  margin-top: -66px;
  padding: 0 20px 100px;
}



.company-content__inner {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
  padding-top: 175px;
}

.company-content h2 {
  margin: 0 0 45px;
  color: #444;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.company-table th,
.company-table td {
  border: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}

.company-table th {
  width: 27%;
  background: #f2f2ed;
  padding: 38px 32px;
  color: #111;
  font-size: 16px;
  font-weight: 400;
}

.company-table td {
  padding: 38px 34px;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.company-table td small {
  display: block;
  margin-top: 4px;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
}

/* タブレット */
@media (max-width: 900px) {
  .company-content__inner {
    max-width: 100%;
  }

  .company-table th {
    width: 30%;
    padding: 30px 24px;
    font-size: 18px;
  }

  .company-table td {
    padding: 30px 24px;
    font-size: 18px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .company-hero {
    min-height: 260px;
    padding: 70px 20px 0;
  }

  .company-hero__bgtext {
    top: -10px;
    left: 0;
    font-size: 66px;
  }

  .company-hero h1 {
    padding-top: 42px;
    font-size: 30px;
  }

  .company-breadcrumb {
    margin-top: 60px;
    font-size: 13px;
  }

  .company-content {
    margin-top: -45px;
    padding: 0 20px 70px;
  }

  .company-content::before {
    width: 62%;
    height: 95px;
    border-radius: 45px 0 0 0;
  }

  .company-content__inner {
    padding-top: 115px;
  }

  .company-content h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table tr {
    margin-bottom: 0;
  }

  .company-table th {
    box-sizing: border-box;
    padding: 16px 18px;
    font-size: 15px;
    border-bottom: none;
  }

  .company-table td {
    box-sizing: border-box;
    padding: 18px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .company-table td small {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .company-hero__bgtext {
    font-size: 54px;
  }

  .company-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-table td {
    word-break: break-word;
  }
}












.register-page {
  background: #fff;
  color: #444;
  overflow: hidden;
}

.register-hero {
  background: #f2f2ed;
  min-height: 300px;
  padding: 90px 20px 0;
  position: relative;
}

.register-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}



.register-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 42px;
  color: #444;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}



.register-content {
  position: relative;
  margin-top: -62px;
  padding: 0 20px 100px;
}

.register-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 130px;
  background: #fff;
  border-radius: 58px 0 0 0;
}

.register-content__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 170px;
}

.register-lead {
  margin: 0 0 85px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.register-block {
  max-width: 560px;
}

.register-block p {
  margin: 18px 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.register-btn {
  width: 350px;
  min-height: 70px;
  padding: 0 22px 0 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.register-btn em {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  transition: 0.3s ease;
}

.register-btn--blue {
  border: 2px solid #0071bc;
  color: #0071bc;
  background: #e6f1f8;
}

.register-btn--blue em {
  background: #0071bc;
}

.register-btn--green {
  border: 2px solid #009966;
  color: #009966;
  background: #f8fbfa;
}

.register-btn--green em {
  background: #009966;
}

.register-btn:hover {
  transform: translateY(-3px);
  background: #fff;
}

.register-btn:hover em {
  transform: translateX(4px);
}

.register-line {
  max-width: 860px;
  height: 1px;
  background: #ddd;
  margin: 45px 0 60px;
}

/* スマホ */
@media (max-width: 768px) {
  .register-hero {
    min-height: 250px;
    padding: 70px 20px 0;
  }



  .register-hero h1 {
    padding-top: 40px;
    font-size: 30px;
  }

  .register-content {
    margin-top: -45px;
    padding: 0 20px 70px;
  }

  .register-content::before {
    width: 62%;
    height: 95px;
    border-radius: 45px 0 0 0;
  }

  .register-content__inner {
    padding-top: 120px;
  }

  .register-lead {
    margin-bottom: 55px;
    font-size: 17px;
  }

  .register-block {
    max-width: 100%;
  }

  .register-btn {
    width: 100%;
    min-height: 68px;
    box-sizing: border-box;
    padding: 0 18px 0 20px;
    font-size: 18px;
  }

  .register-block p {
    margin: 14px 0 0;
    font-size: 15px;
  }

  .register-line {
    margin: 38px 0 48px;
  }
}

@media (max-width: 480px) {



  .register-btn {
    font-size: 16px;
  }
}







/* =========================
   校舎一覧
========================= */

.locations-page {
  position: relative;
  overflow: hidden;
  background: #f2f2ed;
  color: #111;
  padding: 120px 20px 140px;
}

.locations-bg-shape {
  position: absolute;
  top: 180px;
  left: -160px;
  width: 900px;
  height: 900px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
  z-index: 1;
  animation: locationFloat 9s ease-in-out infinite alternate;
}

@keyframes locationFloat {
  0% {
    transform: translate(-20px, -10px) scale(1);
  }
  100% {
    transform: translate(60px, 40px) scale(1.08);
  }
}

.locations-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.locations-heading {
  margin-bottom: 95px;
  padding-bottom: 95px;
  border-bottom: 1px solid #cfcfcf;
}

.locations-heading h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.03em;
}

.locations-heading p {
  margin: 8px 0 0;
  color: #777;
  font-size: 26px;
  letter-spacing: 0.12em;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 80px;
}

.location-card {
  padding-bottom: 65px;
  border-bottom: 1px solid #d2d2d2;
}

.location-card h2 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 24px;
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.location-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  background: #15986b;
  border-radius: 50%;
}

.location-card p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.location-capacity {
  margin-top: 10px !important;
}

.location-media {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 10px;
  margin-top: 34px;
  align-items: stretch;
  overflow: hidden;
}

.location-media img {
  display: block;
  width: 165px;
  height: 175px;
  object-fit: cover;
}

.location-map {
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  background: #eee;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  border: 0 !important;
}

/* スマホ */
@media (max-width: 768px) {
  .locations-page {
    padding: 150px 18px 90px;
  }

  .locations-bg-shape {
    top: -110px;
    left: -260px;
    width: 620px;
    height: 620px;
  }

  .locations-heading {
    margin-bottom: 55px;
    padding-bottom: 50px;
  }

  .locations-heading h1 {
    font-size: 34px;
  }

  .locations-heading p {
    font-size: 20px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    row-gap: 55px;
  }

  .location-card {
    padding-bottom: 50px;
  }

  .location-card h2 {
    font-size: 26px;
  }

  .location-card p {
    font-size: 14px;
  }

  .location-media {
    grid-template-columns: 1fr;
    gap: 15px;
  }

   .location-media img {
    width: 50%;
    height: auto;
    object-fit: contain;
  }

  .location-map {
    height: 220px;
  }


}





.post-hero {
  background: #f2f2ed;
  min-height: 260px;
  padding: 70px 20px 0;
}

.post-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.post-hero__bgtext {
  position: absolute;
  top: -35px;
  left: -10px;
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 12vw, 100px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.post-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 45px;
  color: #444;
  font-size: 30px;
  font-weight: 600;
}

.post-breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  font-size: 13px;
  color: #555;
}

.post-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.post-content-wrap {
  position: relative;
  margin-top: -45px;
  padding: 0 20px 90px;
}

.post-content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 110px;
  background: #fff;
  border-radius: 55px 0 0 0;
}

.post-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 120px;
}

.post-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.post-title {
  margin: 0 0 45px;
  color: #444;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.7;
}

.post-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.post-thumb--small {
  width: 120px;
  margin-bottom: 20px;
}

.post-thumb--large {
  max-width: 420px;
  margin: 0 auto 60px;
}

.post-body {
  color: #333;
  font-size: 15px;
  line-height: 2;
}

.post-body p {
  margin: 0 0 28px;
}

.post-body h2,
.post-body h3 {
  margin: 45px 0 18px;
  padding: 10px 16px;
  border: 1px solid #009966;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.post-body blockquote {
  margin: 40px 0;
  padding: 22px 28px;
  border-left: 4px solid #009966;
  background: #f4fbf8;
}

.post-back {
  text-align: center;
  margin-top: 80px;
}

.post-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 42px;
  border: 1px solid #009966;
  border-radius: 999px;
  color: #009966;
  text-decoration: none;
  font-weight: 700;
}

.post-back a:hover {
  background: #009966;
  color: #fff;
}












.column-pagination .page-numbers {
  width: 27px;
  height: 27px;
  border: 2px solid #009966;
  border-radius: 50%;
  color: #009966;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.column-pagination .page-numbers.current,
.column-pagination .page-numbers:hover {
  background: #009966;
  color: #fff;
}







.info-pagination .page-numbers {
  width: 24px;
  height: 24px;
  border: 1px solid #009966;
  border-radius: 50%;
  color: #009966;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.info-pagination .page-numbers.current,
.info-pagination .page-numbers:hover {
  background: #009966;
  color: #fff;
}







