@charset "UTF-8";
/* 2025toprenewal */
/* body {
  font:
    15px/1.2 "Kosugi Maru",
    sans-serif;
} */

/* header------------- */
.site-header {
  width: 100%;
  height: 100px;
  background: #9bb7d4;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}
.header-logo {
  width: 220px;
}
.nav-grid {
  display: flex;
  gap: 25px;
  font-size: 1.4em;
}
.nav-link {
  color: #fafafa;
}
.nav-link:hover {
  opacity: 0.7;
}
.menu {
  background-color: #9bb7d4;
  gap: 25px;
  font-size: 1.6em;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .nav-grid {
    display: flex;
    gap: 12px;
    font-size: 1em;
  }
  .menu {
    gap: 10px;
    font-size: 1.4em;
  }
  .header-logo {
    width: 182px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    display: block;
    text-align: center;
  }
  .site-header {
    height: 120px;
  }
  .menu {
    gap: 10px;
    font-size: 1.2em;
    height: 100%;
  }
  .sp-nav {
    display: flex;
    justify-content: center;
    gap: 7px;
    color: #fafafa;
    font-size: 1.2rem;
    margin-top: 7px;
  }
  .sp-nav li::after {
    content: "/";
  }
  .sp-nav-link {
    padding-right: 3px;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    background: #fafafa;
  }
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}
.sticky .signup {
  background: #274875;
  color: #fafafa;
}
.sticky .login {
  background: #edb918;
  color: #fafafa;
}

/* footer------------- */
.footer-nav-menu {
  background: #9bb7d4;
}
#copyright {
  background: #a19a9a;
}
@media screen and (max-width: 1024px) {
  .footer-nav-list {
    border-bottom: 1px solid #fafafa;
  }
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.top-in {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 7px;
}
/* mv------------- */
.mv {
  position: relative;
}
.mv-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv-text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fafafa;
  font-weight: 900;
  width: 100%;
}
.mv-text {
  font-size: 2.8em;
}
.mv-small-text {
  font-size: 2em;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 425px) {
  .mv-text {
    font-size: 1.8em;
  }
  .mv-small-text {
    font-size: 1em;
  }
}

/* toptitle丸------------- */
.title-maru,
.title-maru-2 {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}
.title-maru::before,
.title-maru-2::before {
  content: "";
  position: absolute;
  left: 1%;
  top: -90%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9fc7d8;
}
.title-maru::after,
.title-maru-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #9fc7d8;
}
/* sp2行になるtitle */
@media screen and (max-width: 425px) {
  .title-maru-2::before {
    top: 0;
  }
}

/* btn */
.btn-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btn-blue {
  background: #9fc7d8;
}
.btn-blue-koi {
  background: #274875;
}
.btn-blue,
.btn-blue-koi {
  width: 280px;
  display: inline-block;
  color: #fafafa;
  text-decoration: none;
  padding: 20px 0;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-align: center;
}
.btn-blue:hover,
.btn-blue-koi:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}
.btn-blue::after,
.btn-blue-koi::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fafafa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-blue::before,
.btn-blue-koi::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
.btn-blue::before {
  border-top: 2px solid #9fc7d8;
  border-right: 2px solid #9fc7d8;
}
.btn-blue-koi::before {
  border-top: 2px solid #274875;
  border-right: 2px solid #274875;
}
@media screen and (max-width: 425px) {
.btn-area{
  gap: 0;
  }
  .btn-box{
    margin-top: 20px;
  }
}

/* news------------- */
.news-list {
  border-bottom: 1px solid #7d7d7d;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.news-text {
  position: relative;
  width: 95%;
}
.news-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3a3a3a;
  border-right: 2px solid #3a3a3a;
  transform: translateY(-50%) rotate(45deg);
}

/* about------------- */
.about-bg {
  background: url("../img/top/bg.png") center / cover no-repeat;
}
.about-text-box {
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

/* benefits------------- */
.benefits-grid,
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}
.benefits-card {
  position: relative;
  background: #fafafa;
  border: 1px solid #9fc7d8;
  border-radius: 25px;
  padding: 20px;
  max-width: 380px;
  height: 300px;
  margin: 0 auto;
}
.benefits-no {
  background: #9fc7d8;
  border-radius: 50%;
  color: #fafafa;
  width: 65px;
  height: 65px;
  position: absolute;
  top: -8%;
  left: -3%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-text-box {
  margin-top: 10%;
}
.benefits-h4 {
  border-bottom: 1px dotted #9fc7d8;
  font-size: 1.4em;
  margin-bottom: 5%;
}
.benefits-text {
  margin-top: 5%;
}
@media screen and (max-width: 768px) {
  .benefits-grid,
  .facility-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}

/* step------------- */
.bg-blue {
  background: #e8f1f6;
  padding: 10px;
}
.step-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: nowrap;
  position: relative;
}
.step-box {
  flex: 1;
  text-align: center;
  padding: 10px;
  max-width: 200px;
  margin: 0;
  position: relative;
}
.step-box::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -70%;
  width: 100%;
  height: 1px;
  background-color: #e4c963;
  z-index: 0;
}
.step-box:last-child::after {
  display: none;
}
.step-header {
  display: inline-block;
  background: #e4c963;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  padding: 15px 0;
  position: relative;
  z-index: 1;
  width: 180px;
}
.step-img {
  width: 180px;
  margin: 10px auto;
  display: block;
}

/*  SP用  */
@media screen and (max-width: 768px) {
  .step-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .step-box {
    display: flex;
    position: relative;
    max-width: 100%;
  }
  .step-header {
    margin-right: 20px;
    height: 45px;
    width: 160px;
  }
  .step-content {
    flex: 1;
  }
  .step-img {
    margin: 0 auto 10px;
    display: block;
  }
  .step-box::after {
    top: auto;
    bottom: -24%;
    left: 88px;
    width: 2px;
    height: 100%;
    transform: none;
    background-color: #e4c963;
  }
  .step-box:last-child::after {
    display: none;
  }
}

/* facility------------- */
.facility-card {
  width: 100%;
  height: 360px;
  background: #fafafa;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.facility-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.facility-textbox {
  padding: 0 12px;
}
.facility-cate {
  padding: 10px 0;
  margin: 12px 0;
  background: #9fc7d8;
  color: #fafafa;
  width: 40%;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .facility-card {
    height: auto;
  }
  .facility-textbox {
    padding: 20px 12px;
  }
}

/* map */
.map-area {
  text-align: center;
}
.top-map {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
@media screen and (max-width: 768px) {
  .top-map {
    width: 90%;
    height: 520px;
  }
}

/* photo-menu------------- */
.photo-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  justify-items: center;
}
.photo-menu-card {
  max-width: 330px;
  position: relative;
}
.photo-menu-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}
.photo-menu-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fafafa;
}
@media (max-width: 768px) {
  .photo-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* member-content------------- */
.member-content-bg {
  background: url("../img/top/member.png") center / cover no-repeat;
  padding: 10px;
}
.btn-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
/* sns------------- */
.sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 768px) {
  .sns-icon {
    width: 40px;
    height: auto;
  }
}
