/* -------------------------------------------------------------------------- */
/*                                   Colors                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Default Functions                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Default Mixins                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                Custom Layout                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                    Fonts                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                  Defaults                                  */
/* -------------------------------------------------------------------------- */
.mx-0 {
  margin-inline: 0 !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.fixed {
  height: 110px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

.cmn-py {
  padding-top: 9rem;
  padding-bottom: 10rem;
}

.cmn-mb {
  margin-bottom: 6rem;
}

.cmn-hl {
  background: linear-gradient(to bottom, transparent 60%, rgba(85, 188, 214, 0.6) 60%);
}

.cmn-bouten {
  position: relative;
}
.cmn-bouten::before {
  width: calc(25% + 1px);
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  inset: -5px 0 auto 0;
  position: absolute;
  margin-inline: auto;
  background-color: #55bcd6;
}

.cls-1 {
  color: red;
}

/* ------------------------------ Hover Effects ----------------------------- */
.cmn-hover:hover, .error__text a:hover {
  opacity: 0.7;
}

.move-t1:hover {
  transform: translateY(-3px);
}

.move-t2:hover {
  transform: translateY(-6px);
}

.move-t3:hover {
  transform: translateY(-9px);
}

.move-r1:hover {
  transform: translateX(3px);
}

.move-r2:hover {
  transform: translateX(6px);
}

.move-r3:hover {
  transform: translateX(9px);
}

.move-b1:hover {
  transform: translateY(3px);
}

.move-b2:hover {
  transform: translateY(6px);
}

.move-b3:hover {
  transform: translateY(9px);
}

.move-l1:hover {
  transform: translateX(-3px);
}

.move-l2:hover {
  transform: translateX(-6px);
}

.move-l3:hover {
  transform: translateX(-9px);
}

/* ------------------------------ Defaults (SP) ----------------------------- */
@media screen and (width <= 768px) {
  .cmn-py {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  .cmn-mb {
    margin-bottom: 3rem;
  }
  .fixed {
    height: 85px;
  }
  .sp-px-1 {
    padding-inline: 1.5rem;
  }
  .sp-px-2 {
    padding-inline: 3rem;
  }
  .sp-px-3 {
    padding-inline: 4.5rem;
  }
  .sp-mx-1 {
    margin-inline: 1.5rem;
  }
  .sp-mx-2 {
    margin-inline: 3rem;
  }
  .sp-mx-3 {
    margin-inline: 4.5rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                                    Table                                   */
/* -------------------------------------------------------------------------- */
.cmn-table {
  width: 100%;
  table-layout: fixed;
  background-color: #ffffff;
}
.cmn-table__row:not(:last-child) .cmn-table__title {
  border-bottom: 1px solid #ffffff;
}
.cmn-table__row:not(:last-child) .cmn-table__text {
  border-bottom: 1px solid #00abd6;
}
.cmn-table__title, .cmn-table__text {
  padding-block: clamp(10px, 2.5vw, 20px);
  padding-inline: clamp(10px, 2.5vw, 40px);
  line-height: clamp(25px, 2.5vw, 27px);
  letter-spacing: 0.04em;
}
.cmn-table__title {
  width: 30%;
  position: relative;
  vertical-align: middle;
  background-color: #00abd6;
  color: #ffffff;
}
.cmn-table--contact {
  margin-bottom: clamp(30px, 2.5vw, 50px);
}
.cmn-table--contact .cmn-table__title {
  width: 40%;
}
.cmn-table--contact .cmn-table__text {
  background-color: #e9f2f5;
}
.cmn-table--contact .cmn-table__text textarea,
.cmn-table--contact .cmn-table__text input {
  border: 1px solid #e9f2f5;
}

.contact-submits-wrap .submit {
  color: #ffffff;
  background-color: #fba52f;
  border: none;
  font-size: clamp(14px, 2.5vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 1em 2em;
  border-radius: 2px;
  transition: all 0.3s;
}
.contact-submits-wrap .submit:hover {
  cursor: pointer;
}

@media screen and (width <= 768px) {
  .cmn-table__title, .cmn-table__text,
  .cmn-table--contact__title,
  .cmn-table--contact__text {
    width: 100% !important;
    display: block;
  }
}
/* -------------------------------------------------------------------------- */
/*                                 Information                                */
/* -------------------------------------------------------------------------- */
.cmn-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: row nowrap;
  gap: 2rem;
}
.cmn-info--drawer {
  padding-block: 2rem;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

/* -------------------------------------------------------------------------- */
/*                                     SNS                                    */
/* -------------------------------------------------------------------------- */
.cmn-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 1.5rem;
}
.cmn-sns--drawer {
  padding-block: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                                Common Style                                */
/* -------------------------------------------------------------------------- */
.cmn-text {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: clamp(28px, 2.5vw, 36px);
  letter-spacing: 0.04em;
  text-align: justify;
}
.cmn-text:not(:last-child) {
  margin-bottom: clamp(15px, 2.5vw, 20px);
}

.cmn-button {
  width: 200px;
  height: 40px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  background-color: #0aceff;
}
.cmn-button span {
  color: #ffffff;
}
.cmn-button:hover {
  background-color: #00abd6;
}

.cmn-header {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: clamp(25px, 2.5vw, 48px);
}
.cmn-header__subtitle {
  color: #00abd6;
  text-transform: uppercase;
  font-size: clamp(19px, 2.5vw, 25px);
  margin-bottom: clamp(15px, 2.5vw, 28px);
}
.cmn-header__title {
  font-size: clamp(25px, 2.5vw, 40px);
}

.cmn-tel__note {
  color: #5c5c5d;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.cmn-tel__link span {
  position: relative;
  text-align: right;
  color: #15171e;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-left: 3rem;
}
.cmn-tel__link span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  height: 18px;
  border-radius: 0;
  margin-block: auto;
  background: no-repeat center/contain url("/img/common/icon_tel.png");
}
.cmn-tel--footer {
  margin-bottom: 1rem;
}
.cmn-tel--footer .cmn-tel__note {
  letter-spacing: 0.06em;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cmn-tel--footer .cmn-tel__link span {
  color: #ffffff;
  font-size: 2.4rem;
}
.cmn-tel--footer .cmn-tel__link span::before {
  width: 21px;
  height: 20px;
  border-radius: 0;
  background-image: url("/img/common/icon_tel-white.png");
}

.cmn-address {
  text-align: center;
}

.cmn-time {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  font-size: 1.4rem;
  gap: 10px;
}
.cmn-time__title {
  border: 1px solid #000;
  padding: 0 5px;
}
.cmn-time--footer {
  letter-spacing: 0.06em;
}
.cmn-time--footer .cmn-time__title {
  border-color: #fff;
  padding: 1px 7px;
}

.cmn-contact {
  width: 170px;
  height: 45px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fba52f;
}
.cmn-contact:hover {
  background-color: #fcbb61;
}
.cmn-contact span {
  position: relative;
  padding-left: 2.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.cmn-contact span::before {
  width: 17px;
  height: 13px;
  border-radius: 0;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  margin-right: 0.9rem;
  background: no-repeat center/contain url("/img/common/icon_mail.png");
}

.cmn-fs {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 2.5vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fba52f;
  color: #ffffff;
  width: clamp(50px, 2.5vw, 60px);
  height: clamp(50px, 2.5vw, 60px);
  border-radius: 0;
}

/* -------------------------------------------------------------------------- */
/*                                  Template                                  */
/* -------------------------------------------------------------------------- */
/*                                 Breadcrumbs                                */
/* -------------------------------------------------------------------------- */
.breadcrumbs {
  padding-block: 0.8rem;
}
.breadcrumbs__wrapper-m {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.breadcrumbs__item {
  font-size: clamp(12px, 2.5vw, 14px);
  text-align: left;
}
.breadcrumbs__item:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1 1 0;
  max-width: 30ch;
  color: #00abd6;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  padding-right: 15px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  border-style: solid;
  width: 0;
  height: 0;
  border-radius: 0;
  z-index: 10;
  border-color: transparent transparent transparent #aaaaaa;
  border-width: 4px 0 4px 5px;
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  transform: translateX(-4px);
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                                 Pagination                                 */
/* -------------------------------------------------------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  margin-top: 4.5rem;
  column-gap: 1rem;
}
.pagenation li {
  width: 4rem;
  height: 4rem;
  border-radius: 0;
  border-radius: 0.3rem;
  background: #e9f2f5;
  transition: background-color 0.3s;
}
.pagenation li a,
.pagenation li span {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation li:not(.current):hover {
  color: #ffffff;
  background-color: #0aceff;
}
.pagenation .current {
  color: #ffffff;
  background-color: #00abd6;
}

/* -------------------------------------------------------------------------- */
/*                                 Navigation                                 */
/* -------------------------------------------------------------------------- */
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  column-gap: 1rem;
  margin-top: 4.5rem;
}
.navigation__item a:hover {
  color: #55bcd6;
}
.navigation__item:nth-child(1), .navigation__item:nth-child(3) {
  padding-inline: 1rem;
}
.navigation__item:nth-child(1) {
  border-right: 1px solid;
}
.navigation__item:nth-child(3) {
  border-left: 1px solid;
}

/* -------------------------------------------------------------------------- */
/*                          Top Navigation (PageTop)                          */
/* -------------------------------------------------------------------------- */
.sbutton {
  width: fit-content;
  position: fixed;
  inset: auto 0 15vh auto;
  z-index: 110;
}
.sbutton__link {
  width: 240px;
  height: 110px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #fba52f, #fcbb61);
  text-align: center;
}
.sbutton__link span {
  line-height: clamp(25px, 2.5vw, 33px);
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #ffffff;
}
.sbutton__link span em {
  font-size: clamp(17px, 2.5vw, 20px);
}
.sbutton__link--drawer {
  width: 100%;
  height: fit-content;
  border-radius: 0;
  padding-block: 1rem;
}

/* -------------------------------------------------------------------------- */
/*                              Google Map (map)                              */
/* -------------------------------------------------------------------------- */
.map iframe {
  width: 100%;
  height: 40rem;
}

@media screen and (width <= 768px) {
  .map iframe {
    height: 20rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                                 Error (404)                                */
/* -------------------------------------------------------------------------- */
.error__text {
  font-size: clamp(14px, 2.5vw, 15px);
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 3rem;
}
.error__text a {
  display: inline-flex;
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                               Privacy Policy                               */
/* -------------------------------------------------------------------------- */
.privacy__box {
  text-align: justify;
}
.privacy__box:not(:last-child) {
  margin-bottom: 3.5rem;
}
.privacy__box p,
.privacy__box ul {
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0.06em;
  line-height: clamp(25px, 2.5vw, 27px);
}
.privacy__subtitle {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.privacy__subtitle::first-letter {
  color: #00abd6;
}

/* -------------------------------------------------------------------------- */
/*                               Sitemap (site)                               */
/* -------------------------------------------------------------------------- */
.sitemap {
  background: no-repeat bottom 19% right 18%/148px url("/img/active-school/about_bg-kazari.png"), linear-gradient(174deg, #ffffff 69%, #e9f2f5 31%);
}
.sitemap__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: column nowrap;
}
.sitemap__item {
  width: 100%;
  text-align: left;
  background-color: #ffffff;
  padding: 2.5rem 2rem;
}
.sitemap__item:not(:last-of-type) {
  border-bottom: 1px dashed #00abd6;
}
.sitemap__link {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  letter-spacing: 0.12em;
}
.sitemap__link:hover {
  color: #00abd6;
}

/* -------------------------------------------------------------------------- */
/*                                   Contact                                  */
/* -------------------------------------------------------------------------- */
.contact-form-table {
  width: 100%;
  table-layout: fixed;
  background-color: #ffffff;
}
.contact-form-table tr {
  border: 1px solid;
}
.contact-form-table th,
.contact-form-table td {
  padding-block: clamp(10px, 2.5vw, 20px);
  padding-inline: clamp(10px, 2.5vw, 40px);
}
.contact-form-table th {
  width: 35%;
  position: relative;
  vertical-align: middle;
}

/* --------------------------- Contact (complete) --------------------------- */
.complete {
  background: no-repeat bottom 19% right 18%/148px url("/img/active-school/about_bg-kazari.png"), linear-gradient(174deg, #ffffff 69%, #e9f2f5 31%);
}
.complete__box {
  margin-bottom: 1rem;
}
.complete__link {
  margin-inline: auto;
  width: fit-content;
}
.complete__link span {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                                News (index)                                */
/* -------------------------------------------------------------------------- */
.news-page__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.news-page__link {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 1.5rem;
  text-align: left;
  padding: clamp(15px, 2.5vw, 25px);
  border: 1px solid;
}
.news-page__item-date, .news-page__item-title {
  font-weight: 700;
}
.news-page__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: clamp(12px, 2.5vw, 15px);
}
.news-page__item-tags {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row wrap;
  gap: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.news-page__item-tag {
  color: #222222;
  background-color: #e9f2f5;
  padding-inline: 0.5rem;
}

/* -------------------------- News (Tag Exapanded) -------------------------- */
.news-page__box1 {
  padding: clamp(15px, 2.5vw, 25px);
  border: 1px solid;
  margin-bottom: 2.5rem;
}
.news-page__note {
  margin-bottom: clamp(10px, 2.5vw, 20px);
  text-align: left;
}
.news-page__tags {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.news-page__tag-link {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3rem;
  background-color: #e9f2f5;
  white-space: nowrap;
}
.news-page__tag-link::before {
  width: 12px;
  height: 12px;
  border-radius: 0;
  content: "";
  position: absolute;
  margin-block: auto;
  inset: 0 auto 0 10px;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #0aceff;
}
.news-page__tag-link:hover::before, .news-page__tag-link--current::before {
  background-color: #55bcd6;
}

/* ---------------------------- News (Tag Option) --------------------------- */
.news-page__box2 {
  padding: 0px;
  margin: 0 0 2.5rem auto;
  width: min(100%, 375px);
}
.news-page__select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  width: min(100%, 375px);
  padding: 0.8rem 1rem;
  border: 1px solid;
  background-color: #fff;
}

/* ------------------------------ News (detail) ----------------------------- */
.news-detail__date {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.news-detail__body {
  text-align: justify;
}
.news-detail__tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 0 0.5rem;
  margin-bottom: 1.5rem;
}
.news-detail__tag {
  color: #222222;
  background-color: #e9f2f5;
  padding-inline: 0.5rem;
}