@charset "UTF-8";
/**** 共通カラー ****/
.header_switch {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  appearance: none;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  background-color: #ffffff;
}

.header_inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  padding: 8px 40px;
}
@media screen and (max-width: 700px) {
  .header_inner {
    padding: 16px 20px;
  }
}

.header_logo {
  position: relative;
  z-index: 2;
  width: auto;
  flex-shrink: 0;
}
.header_logo img {
  display: block;
  height: 6.25vw;
  max-height: 90px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header_logo img {
    height: 47px;
  }
}

.header_hamburger {
  display: none;
}

.header_nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px 0 0;
}

p {
  line-height: 1.6;
}

.header_list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 4rem);
}
.header_list a {
  width: auto;
  color: #333333;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.header_list a:hover, .header_list a.is_current {
  color: #1e78c8;
}

.header_line_btn {
  display: none;
}

.line_cv_btn {
  position: absolute;
  bottom: 5.5555555556vw;
  right: 6.9444444444vw;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 184, 148, 0.28);
  transition: box-shadow 0.45s ease;
}
@media screen and (max-width: 768px) {
  .line_cv_btn {
    line-height: 1.6;
  }
}
.line_cv_btn:hover {
  box-shadow: 0 10px 32px rgba(0, 140, 112, 0.38);
}
.line_cv_btn a {
  display: inline-block;
  width: fit-content;
  background-color: #00b894;
  color: #ffffff;
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  padding: 15px 60px 15px 20px;
  position: relative;
}
.line_cv_btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #12c49a 0%, #00967a 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}
.line_cv_btn a span {
  position: relative;
  z-index: 1;
}
.line_cv_btn a::after {
  content: "";
  display: inline-block;
  background-image: url(../image/common/arrow.svg);
  background-size: contain;
  width: 27px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 1;
  transition: transform 0.45s ease;
}
.line_cv_btn a:hover::before {
  opacity: 1;
}
.line_cv_btn a:hover::after {
  transform: translate(8px, -50%);
}

@media screen and (max-width: 700px) {
  .header_hamburger {
    display: block;
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #2c8ed6;
  }
  .header_hamburger span, .header_hamburger::before, .header_hamburger::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 30px;
    height: 1px;
    background-color: #eaf6ff;
    transition: 0.3s;
    transform: translate(-50%, -50%);
  }
  .header_hamburger span {
    top: 50%;
  }
  .header_hamburger::before {
    top: calc(50% - 8px);
  }
  .header_hamburger::after {
    top: calc(50% + 8px);
  }
  .header_switch:checked ~ .header_inner .header_hamburger span {
    opacity: 0;
  }
  .header_switch:checked ~ .header_inner .header_hamburger::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header_switch:checked ~ .header_inner .header_hamburger::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header_nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overscroll-behavior: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header_switch:checked ~ .header_nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header_list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 3.2rem;
    text-align: center;
  }
  .header_list a {
    width: auto;
    margin: 0 auto;
    padding: 0;
    font-size: 1.8rem;
    text-align: center;
  }
  .header_line_btn {
    display: block;
    position: static;
    width: calc(100% - 40px);
    max-width: 320px;
    margin: 0 auto;
    box-shadow: none;
  }
  .header_line_btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: clamp(1.4rem, 1.111vw, 1.6rem);
    padding: 14px 40px 14px 16px;
    text-align: center;
    white-space: nowrap;
  }
  .header_line_btn a::after {
    width: 18px;
    height: 8px;
    right: 16px;
  }
}
body:not(.top) {
  padding-top: 7.2rem;
}

.footer {
  color: #ffffff;
  background-color: #2c8ed6;
}

.footer_inner {
  max-width: 1200px;
  width: calc(100% - 6.4vw);
  margin: auto;
  padding: min(80px, 5.5555555556vw) 0 min(40px, 2.7777777778vw);
}
@media screen and (max-width: 768px) {
  .footer_inner {
    padding-bottom: 30px;
  }
}

.footer_card {
  padding: min(56px, 3.8888888889vw) min(48px, 3.3333333333vw);
  color: #333333;
  background-color: #ffffff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .footer_card {
    padding: 32px 24px;
    border-radius: 12px;
  }
}

.footer_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(48px, 3.3333333333vw);
}
@media screen and (max-width: 768px) {
  .footer_main {
    flex-direction: column;
    gap: 32px;
  }
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
  width: 20%;
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .footer_info {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: none;
  }
}

.footer_logo {
  width: auto;
  flex-shrink: 0;
}
.footer_logo img {
  display: block;
  height: min(72px, 5vw);
  width: auto;
}
@media screen and (max-width: 768px) {
  .footer_logo img {
    height: 56px;
  }
}

.footer_address {
  font-style: normal;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.8;
}

.footer_nav {
  flex: 0 0 auto;
  width: 21.8181818182%;
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}

.footer_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer_list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  color: #333333;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer_list a::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2c8ed6;
}
.footer_list a:hover, .footer_list a.is_current {
  color: #1e78c8;
}

.footer_hours {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .footer_hours {
    max-width: none;
    width: 100%;
  }
}

.footer_hours_tit {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
}

.footer_hours_list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 28px;
}
.footer_hours_list > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
}
.footer_hours_list > div::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2c8ed6;
  transform: translateY(-0.1em);
}
.footer_hours_list dt {
  flex: 0 0 7.5em;
  font-weight: normal;
}
.footer_hours_list dd {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer_hours_list > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    padding-left: 18px;
  }
  .footer_hours_list > div::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    transform: none;
  }
  .footer_hours_list dt {
    flex: none;
  }
  .footer_hours_list dd {
    white-space: normal;
  }
}

.footer_line_btn {
  position: static;
  display: block;
  width: 100%;
  box-shadow: none;
}
.footer_line_btn:hover {
  box-shadow: none;
}
.footer_line_btn a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  padding: 14px 52px 14px 20px;
  text-align: center;
  white-space: nowrap;
}
.footer_line_btn a::after {
  width: 20px;
  height: 9px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .footer_line_btn a {
    font-size: clamp(1.4rem, 1.111vw, 1.6rem);
    padding: 14px 40px 14px 16px;
  }
  .footer_line_btn a::after {
    width: 18px;
    height: 8px;
    right: 24px;
  }
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: min(28px, 1.9444444444vw);
  font-size: clamp(1.2rem, 1vw, 1.44rem);
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-top: 24px;
  }
}

.footer_policy {
  width: auto;
  color: #ffffff;
  transition: opacity 0.3s;
}
.footer_policy:hover {
  opacity: 0.7;
}

.footer_copy {
  color: #ffffff;
}

.page_fv {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .page_fv {
    height: 300px;
  }
}

.page_fv_img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page_fv_img picture,
.page_fv_img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page_fv_img img {
  object-fit: cover;
}

.page_fv_title {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 20.8333333333vw;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page_fv_title {
    right: auto;
    left: 0;
  }
}

.page_fv_en {
  margin-bottom: 1.2rem;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  letter-spacing: 0.16em;
  font-family: "NotoSansJP-Bold";
  color: #2c8ed6;
}

.page_fv_title h1 {
  font-size: clamp(3rem, 2.5vw, 3.6rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.breadcrumb {
  padding-top: 2.4rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem 0;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto 4rem;
  font-size: clamp(1.2rem, 1vw, 1.44rem);
}
@media screen and (max-width: 768px) {
  .breadcrumb-list {
    width: calc(100% - 30px);
  }
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
  content: "";
  margin: 0 1.2rem;
  opacity: 0.4;
  background-color: #2c8ed6;
  width: 16px;
  height: 1px;
  display: inline-block;
}
.breadcrumb-list a {
  width: auto;
  color: #333333;
  transition: opacity 0.3s;
}
.breadcrumb-list a:hover {
  opacity: 0.45;
}

.section_tit {
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .section_tit {
    margin-bottom: 20px;
  }
}
.section_tit h2 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  color: #333333;
}
.section_tit h2 .en {
  color: #1e78c8;
  font-size: clamp(1rem, 0.833vw, 1.2rem);
  display: block;
  font-family: "NotoSansJP-Bold";
  margin-bottom: 8px;
}
.section_tit h2 .en::before {
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 1;
  background-image: url(../image/common/tit_deco.svg);
  background-size: contain;
  margin-right: 6px;
}

.accent_text {
  color: #1e78c8;
}

.section_archive {
  padding: 0 0 8vw;
  color: #eaf6ff;
  background-color: #ffffff;
}

.archive_flex {
  display: flex;
  align-items: flex-start;
  gap: 4.8vw;
}
@media screen and (max-width: 768px) {
  .archive_flex {
    flex-direction: column;
    gap: 4rem;
  }
}

.archive_side {
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .archive_side {
    width: 100%;
  }
}

.archive_side_title {
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-family: "NotoSansJP-Bold";
  color: #1e78c8;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #2c8ed6;
}

.list_cat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .list_cat {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
  }
}
.list_cat a {
  width: auto;
  color: #333333;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  padding: 0.8rem 0;
  transition: color 0.3s;
}
.list_cat a:hover, .list_cat a.is_active {
  color: #2c8ed6;
  font-family: "NotoSansJP-Bold";
}
@media screen and (max-width: 768px) {
  .list_cat a {
    padding: 4px 14px;
    background-color: #eaf6ff;
    border-radius: 20px;
    color: #1e78c8;
  }
  .list_cat a:hover, .list_cat a.is_active {
    color: #ffffff;
    background-color: #2c8ed6;
    font-family: "NotoSansJP-Bold";
  }
}

.archive_main {
  flex: 1;
  min-width: 0;
}

.list_blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2vw 2.4vw;
}
@media screen and (max-width: 992px) {
  .list_blog {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.4rem;
  }
}

.section_archive .list_blog {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 992px) {
  .section_archive .list_blog {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .section_archive .list_blog {
    grid-template-columns: 1fr;
  }
}

.article_blog a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  color: #333333;
  transition: opacity 0.3s;
}
.article_blog a:hover {
  opacity: 0.7;
}

.article_blog_thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .article_blog_thumb {
    border-radius: 5px;
  }
}
.article_blog_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article_blog_meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .article_blog_meta {
    flex-wrap: wrap;
  }
}

.article_blog_date {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .article_blog_date {
    line-height: 1.6;
  }
}

.article_blog_cat {
  font-size: clamp(1.2rem, 1vw, 1.44rem);
  color: #2c8ed6;
  background-color: #2c8ed6;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .article_blog_cat {
    font-size: clamp(1rem, 0.833vw, 1.2rem);
    padding: 2px 10px;
  }
}

.article_blog_title {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
}

.section_news {
  border-radius: 20px;
  margin-top: -20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section_news {
    padding-top: 60px;
    background-color: #eaf6ff;
    margin-top: 0;
    border-radius: 0;
  }
}
.section_news .l_full {
  padding: 120px 0;
  background-color: #ffffff;
  z-index: 2;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .section_news .l_full {
    padding: 30px 0 60px 0;
  }
}
.section_news::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #eaf6ff;
  z-index: 1;
}

.list_news {
  border-top: 1px solid #2c8ed6;
  max-width: 55.5555555556vw;
  max-width: 800px;
  margin: auto;
}

.article_news {
  border-bottom: 1px solid #2c8ed6;
}
.article_news a {
  display: flex;
  align-items: center;
  gap: 2.4vw;
  padding: 2.4vw 0;
  color: #333333;
  transition: opacity 0.3s;
}
.article_news a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 576px) {
  .article_news a {
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
    padding: 2rem 0;
  }
}

.article_news_date {
  flex-shrink: 0;
  font-size: clamp(1.2rem, 1vw, 1.44rem);
  letter-spacing: 0.06em;
}

.article_news_cat {
  flex-shrink: 0;
  font-size: clamp(1.2rem, 1vw, 1.44rem);
  color: #ffffff;
  background-color: #2c8ed6;
  padding: 4px 20px;
  border-radius: 10px;
}

.section_news_more {
  max-width: 800px;
  width: 55.5555555556vw;
  margin: 40px auto 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section_news_more {
    margin-right: 0;
    margin-left: auto;
  }
}

.article_news_title {
  flex: 1;
  min-width: 0;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .article_news_title {
    flex: 1 1 100%;
  }
}

.wp-pagenavi,
.pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 4.8vw;
}

.pagination .screen-reader-text {
  display: none;
}

.wp-pagenavi span,
.wp-pagenavi a,
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #eaf6ff;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  border: 1px solid #eaf6ff;
  transition: 0.3s;
}
.wp-pagenavi span:hover,
.wp-pagenavi a:hover,
.pagination .page-numbers:hover {
  color: #333333;
  background-color: #eaf6ff;
}

.wp-pagenavi .current,
.pagination .page-numbers.current {
  color: #333333;
  background-color: #eaf6ff;
  pointer-events: none;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 1.2rem;
}

.section_post {
  padding: 0 0 120px;
  color: #333333;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .section_post {
    padding-bottom: 60px;
  }
}
.section_post .l_inner {
  max-width: 800px;
}

.article_post_meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.article_post_date {
  font-size: clamp(1.2rem, 1vw, 1.44rem);
  letter-spacing: 0.06em;
}

.article_post_cat {
  flex-shrink: 0;
  font-size: clamp(1.2rem, 1vw, 1.44rem);
  color: #ffffff;
  background-color: #2c8ed6;
  padding: 4px 20px;
  border-radius: 10px;
}

.article_post_title {
  font-size: clamp(2.5rem, 2.083vw, 3rem);
  line-height: 1.5;
  margin-bottom: 4rem;
  color: #1e78c8;
  font-family: "NotoSansJP-Bold";
}

.article_post_thumb {
  margin-bottom: 4rem;
}
.article_post_thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.article_post_content {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.8;
  color: #333333;
}
.article_post_content p,
.article_post_content ul,
.article_post_content ol,
.article_post_content table,
.article_post_content blockquote,
.article_post_content figure {
  margin-bottom: 2.4rem;
}
.article_post_content ul,
.article_post_content ol {
  padding-left: 1.8em;
}
.article_post_content h1,
.article_post_content h2,
.article_post_content h3,
.article_post_content h4,
.article_post_content h5 {
  color: #1e78c8;
  font-family: "NotoSansJP-Bold";
  line-height: 1.5;
}
.article_post_content h1:first-child,
.article_post_content h2:first-child,
.article_post_content h3:first-child,
.article_post_content h4:first-child,
.article_post_content h5:first-child {
  margin-top: 0;
}
.article_post_content h1 {
  margin: 4.8rem 0 1.6rem;
  font-size: clamp(2.667rem, 2.222vw, 3.2rem);
}
.article_post_content h2 {
  margin: 4.8rem 0 1.6rem;
  font-size: clamp(2.5rem, 2.083vw, 3rem);
}
.article_post_content h3 {
  margin: 3.6rem 0 1.4rem;
  font-size: clamp(2rem, 1.667vw, 2.4rem);
}
.article_post_content h4 {
  margin: 2.8rem 0 1.2rem;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
}
.article_post_content h5 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
}
.article_post_content a {
  width: auto;
  display: inline;
  text-decoration: underline;
  color: #1e78c8;
}
.article_post_content img {
  width: 100%;
  height: auto;
  display: block;
}
.article_post_content .wp-block-image {
  margin: 4rem 0;
}

.section_blog_more,
.section_post_more {
  display: flex;
  justify-content: center;
  margin-top: 4.8vw;
}

.btn_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 20rem;
  padding: 1.4rem 8rem 1.4rem 4rem;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  letter-spacing: 0.08em;
  text-align: center;
  background-color: #2c8ed6;
  color: #ffffff;
  border-radius: 50px;
  position: relative;
  transition: 0.3s;
}
.btn_more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
  background-image: url(../image/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.7rem;
  height: 1.2rem;
  transition: 0.3s;
  pointer-events: none;
}
.btn_more:hover {
  background-color: #f08300;
}
.btn_more:hover::after {
  right: 3.2rem;
}

section.table {
  padding: 0 0 8vw;
  color: #eaf6ff;
  background-color: #ffffff;
}

.data_table {
  width: 100%;
  min-width: 72rem;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
}
.data_table th,
.data_table td {
  padding: 1.6rem 2rem;
  border: 1px solid #eaf6ff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
.data_table thead th {
  color: #333333;
  background-color: #eaf6ff;
  letter-spacing: 0.06em;
}
.data_table tbody th {
  text-align: left;
  font-weight: normal;
  background-color: #f4f4f4;
}

.section_price {
  background-color: #eaf6ff;
  padding: 80px 0 120px 0;
}
@media screen and (max-width: 768px) {
  .section_price {
    padding: 60px 0 80px 0;
  }
}
.section_price .l_inner {
  background-color: #ffffff;
  border-radius: 10px;
  padding-top: 60px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_price .l_inner {
    padding: 30px 15px 40px 15px;
  }
}
.section_price .table_wrap {
  max-width: 800px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .section_price .table_wrap {
    margin-bottom: 30px;
  }
}
.section_price .table_wrap h3 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .section_price .table_wrap h3 {
    margin-bottom: 15px;
  }
}
.section_price .table_wrap h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30px;
  background-color: #2c8ed6;
  margin-right: 12px;
}
.section_price .table_wrap .note {
  padding-left: 1em;
  text-indent: -1em;
}
.section_price .table_wrap h4 {
  padding-left: 1em;
  margin-bottom: 24px;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
}
@media screen and (max-width: 768px) {
  .section_price .table_wrap h4 {
    margin-bottom: 10px;
  }
}
.section_price .functional-training_text {
  padding-left: 1em;
}

.price_table,
.shockwave_table {
  margin-bottom: 20px;
}
.price_table .data_table,
.price_table .data_table_shockwave,
.shockwave_table .data_table,
.shockwave_table .data_table_shockwave {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 10px;
  color: #333333;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
  background-color: #eaf6ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .price_table .data_table,
  .price_table .data_table_shockwave,
  .shockwave_table .data_table,
  .shockwave_table .data_table_shockwave {
    border-spacing: 6px;
  }
}
.price_table .data_table th,
.price_table .data_table td,
.price_table .data_table_shockwave th,
.price_table .data_table_shockwave td,
.shockwave_table .data_table th,
.shockwave_table .data_table td,
.shockwave_table .data_table_shockwave th,
.shockwave_table .data_table_shockwave td {
  padding: 10px;
  border: none;
  background-color: #ffffff;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.price_table .data_table thead th,
.price_table .data_table_shockwave thead th,
.shockwave_table .data_table thead th,
.shockwave_table .data_table_shockwave thead th {
  color: #333333;
  letter-spacing: 0.04em;
}
.price_table .data_table tbody th,
.price_table .data_table_shockwave tbody th,
.shockwave_table .data_table tbody th,
.shockwave_table .data_table_shockwave tbody th {
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .price_table .data_table,
  .price_table .data_table_shockwave,
  .shockwave_table .data_table,
  .shockwave_table .data_table_shockwave {
    min-width: 56rem;
  }
  .price_table .data_table th,
  .price_table .data_table td,
  .price_table .data_table_shockwave th,
  .price_table .data_table_shockwave td,
  .shockwave_table .data_table th,
  .shockwave_table .data_table td,
  .shockwave_table .data_table_shockwave th,
  .shockwave_table .data_table_shockwave td {
    padding: 10px;
  }
}

.shockwave_table .data_table_shockwave {
  table-layout: auto;
  width: max-content;
  min-width: 100%;
}
.shockwave_table .data_table_shockwave th:first-child,
.shockwave_table .data_table_shockwave td:first-child,
.shockwave_table .data_table_shockwave tbody th {
  width: auto;
  white-space: nowrap;
  text-align: left;
  padding-left: 2.7777777778vw;
}
.shockwave_table .data_table_shockwave th:last-child,
.shockwave_table .data_table_shockwave td:last-child {
  width: auto;
  text-align: left;
  padding-left: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .shockwave_table .data_table_shockwave {
    min-width: 0;
  }
  .shockwave_table .data_table_shockwave th {
    font-size: clamp(1.2rem, 1vw, 1.44rem);
  }
}

.section_hours {
  color: #333333;
  background-color: #eaf6ff;
  padding-bottom: 80px;
  overflow: hidden;
}
.section_hours .l_full {
  padding: 100px 0 210px 0;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section_hours .l_full {
    padding: 40px 0px 60px 0px;
  }
}
.section_hours .l_full::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  background-image: url(../image/common/section_bg_deco_top.webp);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  width: 91.6666666667vw;
  height: 37.9166666667vw;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .section_hours .l_full::before {
    top: 0;
  }
}
.section_hours .section_tit {
  margin-bottom: 4.8rem;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .section_hours .section_tit {
    margin-bottom: 20px;
  }
}
.section_hours .hours_flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .section_hours .hours_flex {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.section_hours .hours_wrap {
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .section_hours .hours_wrap {
    width: 100%;
  }
}
.section_hours .hours_wrap .note {
  margin-top: 20px;
}
.section_hours .image_wrap {
  position: relative;
  width: 29.1666666667vw;
  max-width: 420px;
  margin-right: min(60px, 4.1666666667vw);
}
@media screen and (max-width: 768px) {
  .section_hours .image_wrap {
    width: 53.3333333333vw;
    max-width: none;
    margin: auto;
  }
}
.section_hours .image_wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 19.4444444444vw;
  max-width: 280px;
  height: 24.3055555556vw;
  max-height: 350px;
  background-image: url(../image/common/hours_image02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  right: min(-60px, -4.1666666667vw);
  top: 190px;
}
@media screen and (max-width: 768px) {
  .section_hours .image_wrap::after {
    width: 37.3333333333vw;
    height: 46.4vw;
    top: 70px;
  }
}
.section_hours .line_cv_btn {
  display: block;
  position: static;
  width: fit-content;
  box-shadow: none;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .section_hours .line_cv_btn {
    margin: 130px auto 0;
  }
}

.hours_table_wrap {
  width: 100%;
}

.hours_table {
  width: auto;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px;
  color: #333333;
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.4;
  background-color: #eaf6ff;
  border-radius: 10px;
}
.hours_table .hours_table_col_time {
  width: 160px;
}
.hours_table .hours_table_col_day {
  width: 36px;
}
.hours_table .hours_table_col_sat {
  width: 130px;
}
.hours_table .hours_table_col_sun {
  width: 68px;
}
.hours_table th,
.hours_table td {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.hours_table thead th {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .hours_table {
    width: 100%;
    border-spacing: 3px;
    border-radius: 12px;
    font-size: clamp(1rem, 0.833vw, 1.2rem);
  }
  .hours_table th,
  .hours_table td {
    padding: 0.6rem 0.15rem;
    letter-spacing: 0;
  }
  .hours_table .hours_table_col_time {
    width: 30%;
  }
  .hours_table .hours_table_col_day {
    width: 8.5%;
  }
  .hours_table .hours_table_col_sat {
    width: 52px;
  }
  .hours_table .hours_table_col_sun {
    width: 19%;
  }
  .hours_table tbody th {
    white-space: normal;
    height: 52px;
  }
  .hours_table thead th:nth-child(7),
  .hours_table td:nth-child(7) {
    white-space: normal;
  }
}

.section_map {
  width: 100%;
}

.map_wrap {
  width: 100%;
  aspect-ratio: 21/4.5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .map_wrap {
    aspect-ratio: 1/1.15;
  }
}
.map_wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/*# sourceMappingURL=module.css.map */
