@charset "UTF-8";
html {
  font-size: 10px;
  font-family: "noto-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.l_container-wide {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
  box-sizing: border-box;
}

.l_container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

p {
  font-size: 1.8rem;
  line-height: 2;
}

.jpn {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l_container-wide, .l_container {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*
====================================
header
====================================
*/
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l_header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px 0 20px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  position: relative;
}

.l_header__logo {
  margin: 0;
  flex-shrink: 0;
  transform: translate(10%, 0);
  position: relative;
  z-index: 120;
}

.l_header__logo a {
  display: block;
  transform: translate(-8px, 0);
}

.l_header__logo img {
  display: block;
  width: 300px;
  max-width: 100%;
}

.l_header__nav {
  padding-top: 0;
  padding-left: 20px;
}

.l_header__menu {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l_header__menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.l_header__menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 20px;
  background: transparent;
}
.l_header__menu > li > a {
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #243a7a;
  letter-spacing: 0;
  padding: 8px 0;
}
.l_header__menu > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.l_header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  z-index: 50;
  width: 332px;
  margin: 0;
  padding: 28px 24px 30px 40px;
  list-style: none;
  background: rgba(93, 145, 176, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 0 0 56px 0;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.l_header__menu .sub-menu li {
  margin: 0;
  padding: 0;
}
.l_header__menu .sub-menu li + li {
  margin-top: 20px;
}
.l_header__menu .sub-menu a {
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-size: 2.5rem;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ハンバーガーはPCでは非表示 */
.l_header__toggle {
  display: none;
}

/* =========================
SP
========================= */
@media screen and (max-width: 768px) {
  .l_header__inner {
    min-height: initial;
    padding: 0 16px 0 0;
    align-items: center;
    background: initial;
  }
  .l_header__logo {
    transform: none;
  }
  .l_header__logo a {
    transform: none;
  }
  .l_header__logo img {
    width: 180px;
  }
  .l_header__toggle {
    position: relative;
    z-index: 130;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .l_header__toggleLine {
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: #243a7a;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .l_header.is-open .l_header__toggleLine:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .l_header.is-open .l_header__toggleLine:nth-child(2) {
    opacity: 0;
  }
  .l_header.is-open .l_header__toggleLine:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .l_header__nav {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    width: 100%;
    padding-left: 0;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
  }
  .l_header.is-open .l_header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    transform: translateY(0);
  }
  .l_header__menu {
    display: block;
    padding: 12px 16px 20px;
  }
  .l_header__menu > li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(36, 58, 122, 0.12);
  }
  .l_header__menu > li::after {
    display: none;
  }
  .l_header__menu > li > a {
    display: block;
    padding: 16px 0 10px;
    font-size: 2rem;
    line-height: 1.3;
  }
  .l_header__menu .sub-menu {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 14px 16px;
    list-style: none;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .l_header__menu .sub-menu li {
    margin: 0;
    padding: 0;
  }
  .l_header__menu .sub-menu li + li {
    margin-top: 10px;
  }
  .l_header__menu .sub-menu a {
    display: block;
    font-size: 1.7rem;
    line-height: 1.5;
    color: #243a7a;
    white-space: normal;
  }
}
/*
====================================
module button
====================================
*/
.m_btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 280px;
  padding: 17px 20px 17px 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #25c56f 0%, #0077c8 100%);
}

.m_btn-contact__text {
  font-family: "futura-pt", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.m_btn-contact__icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.m_btn-contact__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .m_btn-contact {
    min-width: 200px;
    padding: 12px 12px 12px 12px;
    border-radius: 5px;
  }
  .m_btn-contact__text {
    font-size: 1.5rem;
  }
  .m_btn-contact__icon {
    width: 16px;
    height: 16px;
  }
  .m_btn-contact__icon::before {
    width: 6px;
    height: 6px;
  }
}
/*
====================================
module / section heading
====================================
*/
.m_sec-heading__title {
  margin: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 10rem;
  line-height: 1.05;
  font-weight: 300;
  color: #5b5b5b;
  letter-spacing: 0;
}
.m_sec-heading__line {
  position: relative;
  width: 455px;
  max-width: 100%;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, #28c370 0%, #0077c8 100%);
  border-radius: 999px;
}
.m_sec-heading__line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #28c370;
  border: 2px solid #fff;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px #28c370;
}

@media screen and (max-width: 768px) {
  .m_sec-heading__title {
    font-size: 4.6rem;
  }
  .m_sec-heading__line {
    width: 280px;
    margin-top: 14px;
  }
}
/*
====================================
module / partner logo
====================================
*/
.m_partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19%;
  height: auto;
  box-sizing: border-box;
  flex-shrink: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.m_partner-logo img {
  display: block;
  width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .m_partner-logo {
    width: 220px;
    height: 64px;
  }
  .m_partner-logo img {
    max-width: calc(100% - 14px);
    max-height: calc(100% - 0px);
  }
}
/*
====================================
common cta
====================================
*/
.c_cta {
  padding-top: 110px;
  padding-bottom: 110px;
}
.c_cta__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
.c_cta__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 80px;
  padding: 88px 88px 84px 72px;
  border-bottom-left-radius: 120px;
  overflow: hidden;
  background-image: url("../img/common/cta-back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c_cta__content::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  width: 620px;
  height: 100%;
  background: url("../img/common/cta_dot.png") left center/contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}
.c_cta__content::after {
  content: "";
  position: absolute;
  left: 460px;
  top: 210px;
  width: 220px;
  height: 220px;
  background: url("../img/common/cta_dot_small.png") center/contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}
.c_cta__left, .c_cta__right {
  position: relative;
  z-index: 2;
}
.c_cta__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}
.c_cta__title {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1.25;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}
.c_cta__btn {
  margin-top: 48px;
}
.c_cta__heading {
  margin: 0 0 32px;
  font-family: "futura-pt", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}
.c_cta__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c_cta__list li {
  position: relative;
  padding-left: 18px;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #fff;
  letter-spacing: 0;
}
.c_cta__list li + li {
  margin-top: 18px;
}
.c_cta__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .c_cta__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px 60px;
    border-bottom-left-radius: 80px;
  }
  .c_cta__content::before {
    left: 20px;
    width: 460px;
  }
  .c_cta__content::after {
    left: 320px;
    top: auto;
    bottom: 40px;
    width: 180px;
    height: 180px;
  }
  .c_cta__left {
    min-height: auto;
  }
  .c_cta__title {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c_cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .c_cta__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .c_cta__content {
    gap: 11px;
    padding: 32px 12px 32px;
    border-bottom-left-radius: 48px;
    background-image: url("../img/common/cta-back-sp.jpg");
  }
  .c_cta__content::before {
    left: 8px;
    width: 280px;
    opacity: 0.28;
  }
  .c_cta__content::after {
    left: auto;
    right: 20px;
    bottom: 70px;
    width: 120px;
    height: 120px;
    opacity: 0.24;
  }
  .c_cta__title {
    font-size: 2.5rem;
    line-height: 1.35;
  }
  .c_cta__btn {
    margin-top: 16px;
    text-align: center;
  }
  .c_cta__heading {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  .c_cta__list {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 5px;
  }
  .c_cta__list li {
    padding-left: 16px;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .c_cta__list li + li {
    margin-top: 6px;
  }
}
/*
====================================
module / white gradient button
====================================
*/
.m_btn-white-grad {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 370px;
  padding: 20px 26px 20px 34px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m_btn-white-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.m_btn-white-grad__text {
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  background: linear-gradient(90deg, #28c370 0%, #0077c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.m_btn-white-grad__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.m_btn-white-grad__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, #28c370 0%, #0077c8 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.m_btn-white-grad__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #28c370 0%, #0077c8 100%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .m_btn-white-grad {
    width: 220px;
    min-width: 0;
    padding: 12px 12px 12px 12px;
  }
  .m_btn-white-grad__text {
    font-size: 1.5rem;
  }
  .m_btn-white-grad__icon {
    width: 16px;
    height: 16px;
  }
  .m_btn-white-grad__icon::after {
    width: 6px;
    height: 6px;
  }
}
/*
====================================
module / news card
====================================
*/
.m_news-card {
  min-width: 0;
}
.m_news-card a {
  display: block;
  height: 100%;
  color: inherit;
}
.m_news-card__thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: #fff;
}
.m_news-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 32px;
  border: solid 1px #e0e0e0;
  border-radius: 17px 17px 0 0;
}
.m_news-card__thumb img.wp-post-image {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0;
  border: none;
  border-radius: 0;
}
.m_news-card__cat {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #55b8df;
  font-family: "futura-pt", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0;
}
.m_news-card__body {
  position: relative;
  padding: 20px 18px 18px;
  background: #97cae3;
  border-bottom-right-radius: 22px;
  box-sizing: border-box;
  transition: background 0.3s ease;
  overflow: hidden;
}
.m_news-card__body::after {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #28c370 0%, #0077c8 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.m_news-card__date {
  position: relative;
  z-index: 2;
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: "futura-pt", sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0;
}
.m_news-card__title {
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  word-break: break-word;
}
.m_news-card__excerpt {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}
.m_news-card:hover .m_news-card__body::after {
  opacity: 1;
  transition: opacity 0.35s ease;
}
.m_news-card--featured .m_news-card__thumb {
  height: 270px;
  border-top-left-radius: 18px;
  overflow: hidden;
}
.m_news-card--featured .m_news-card__body {
  min-height: 272px;
  padding: 24px 34px 26px;
  border-bottom-right-radius: 28px;
}
.m_news-card--featured .m_news-card__date {
  font-size: 1.8rem;
}
.m_news-card--featured .m_news-card__title {
  margin-top: 14px;
  font-size: 2rem;
  line-height: 1.5;
}
.m_news-card--featured .m_news-card__excerpt {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.75;
}
.m_news-card:not(.m_news-card--featured) .m_news-card__thumb {
  height: 164px;
  border-top-left-radius: 16px;
}
.m_news-card:not(.m_news-card--featured) .m_news-card__body {
  min-height: 107px;
}

@media screen and (max-width: 768px) {
  .m_news-card__thumb img {
    padding: 16px;
  }
  .m_news-card__thumb img.wp-post-image {
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0;
  }
  .m_news-card__cat {
    top: 8px;
    left: 8px;
    min-width: auto;
    padding: 3.5px 12px;
    font-size: 1.1rem;
  }
  .m_news-card__body {
    padding: 12px 12px;
  }
  .m_news-card__date {
    padding-bottom: 4px;
    font-size: 1.3rem;
  }
  .m_news-card__title {
    margin: 7px 0 0;
    font-size: 1.4rem;
  }
  .m_news-card__excerpt {
    margin: 7px 0 0;
    font-size: 1.1rem;
  }
  .m_news-card:hover .m_news-card__body::after {
    opacity: 1;
    transition: opacity 0.35s ease;
  }
  .m_news-card--featured .m_news-card__thumb {
    height: 270px;
    border-top-left-radius: 18px;
    overflow: hidden;
  }
  .m_news-card--featured .m_news-card__body {
    min-height: 272px;
    padding: 24px 34px 26px;
    border-bottom-right-radius: 28px;
  }
  .m_news-card--featured .m_news-card__date {
    font-size: 1.8rem;
  }
  .m_news-card--featured .m_news-card__title {
    margin-top: 14px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .m_news-card--featured .m_news-card__excerpt {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 1.75;
  }
  .m_news-card:not(.m_news-card--featured) .m_news-card__thumb {
    height: 164px;
    border-top-left-radius: 16px;
  }
  .m_news-card:not(.m_news-card--featured) .m_news-card__body {
    min-height: 107px;
  }
}
/*
====================================
common page mv
====================================
*/
.c_page-mv {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.c_page-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c_page-mv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_page-mv__bg::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/c_header-circle.png");
  opacity: 1;
  right: 0;
  top: 0;
  width: 51.3%;
  height: 118%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.c_page-mv__bg .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #94C9BD;
  opacity: 0.35;
  backdrop-filter: blur(2px);
  z-index: 2;
}
.c_page-mv__inner {
  position: relative;
  z-index: 3;
  min-height: 640px;
}
.c_page-mv__inner::after {
  content: "";
  position: absolute;
  right: 90px;
  top: 26px;
  width: 640px;
  height: 640px;
  background: url("../img/common/page_mv_dot.png") center/contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.c_page-mv__content {
  position: absolute;
  left: 56px;
  top: calc(50% + 40px);
  width: 100%;
  max-width: 1160px;
  color: #fff;
  transform: translateY(-50%);
}
.c_page-mv__title {
  margin: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 8rem;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.c_page-mv__subtitle {
  margin: 28px 0 0;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.c_page-mv__text {
  margin-top: 24px;
  max-width: 1120px;
}
.c_page-mv__text p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
}
.c_page-mv__pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(86, 95, 114, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}
.c_page-mv__pagetopText {
  font-family: "futura-pt", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #6f7c90;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .c_page-mv {
    min-height: 560px;
    border-bottom-left-radius: 72px;
  }
  .c_page-mv__inner {
    min-height: 560px;
  }
  .c_page-mv__inner::after {
    right: 20px;
    top: 40px;
    width: 460px;
    height: 460px;
  }
  .c_page-mv__content {
    left: 24px;
    bottom: 48px;
    max-width: calc(100% - 48px);
  }
  .c_page-mv__title {
    font-size: 6.4rem;
  }
  .c_page-mv__subtitle {
    margin-top: 22px;
    font-size: 2.2rem;
  }
  .c_page-mv__text {
    max-width: 900px;
  }
  .c_page-mv__pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c_page-mv {
    min-height: initial;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 45px;
    height: 52vw;
  }
  .c_page-mv__inner {
    min-height: initial;
    height: 52vw;
  }
  .c_page-mv__inner::after {
    right: -20px;
    top: 70px;
    width: 240px;
    height: 240px;
    opacity: 0.35;
  }
  .c_page-mv__content {
    left: 12px;
    top: 62%;
    bottom: initial;
  }
  .c_page-mv__title {
    font-size: 5.5rem;
  }
  .c_page-mv__title.small {
    font-size: 3.8rem;
  }
  .c_page-mv__subtitle {
    margin-top: 1px;
    font-size: 1.3rem;
  }
  .c_page-mv__text {
    display: none;
  }
  .c_page-mv__pagetop {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 12px;
  }
  .c_page-mv__pagetopText {
    font-size: 1.1rem;
  }
}
/*
====================================
footer
====================================
*/
.l_footer {
  padding-top: 60px;
  padding-bottom: 34px;
  background: #14b8aa;
  border-top: 2px solid #fff;
}
.l_footer__inner {
  max-width: 1400px;
}
.l_footer__head {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.l_footer__info {
  width: 100%;
  max-width: 510px;
}
.l_footer__logo {
  margin: 0;
}
.l_footer__logo a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
}
.l_footer__logo img {
  display: block;
  width: 348px;
  max-width: 100%;
  border-radius: 12px;
}
.l_footer__address {
  margin-top: 34px;
  color: #fff;
}
.l_footer__addressTitle {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.8;
  font-weight: 400;
}
.l_footer__addressText {
  margin: 0px 0 0;
  font-size: 1.7rem;
  line-height: 1.8;
  font-weight: 400;
}
.l_footer__nav {
  width: 100%;
  max-width: 620px;
  padding-top: 4px;
}
.l_footer__copy {
  margin: 56px 0 0;
  font-family: "futura-pt", sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}
.l_footer__menu {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 70px;
       column-gap: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l_footer__menu > li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 0 18px;
  padding: 0;
}
.l_footer__menu > li > a {
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-size: 2rem;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0;
}
.l_footer__menu .sub-menu {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.l_footer__menu .sub-menu li {
  margin: 0;
  padding: 0;
}
.l_footer__menu .sub-menu li + li {
  margin-top: 4px;
}
.l_footer__menu .sub-menu a {
  display: inline-block;
  padding-left: 24px;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #fff;
  position: relative;
}
.l_footer__menu .sub-menu a::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  .l_footer__head {
    flex-direction: column;
    gap: 44px;
  }
  .l_footer__nav {
    max-width: 100%;
  }
  .l_footer__menu {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .l_footer {
    padding-top: 44px;
    padding-bottom: 24px;
  }
  .l_footer__head {
    gap: 32px;
  }
  .l_footer__logo img {
    width: 280px;
  }
  .l_footer__address {
    margin-top: 24px;
  }
  .l_footer__addressTitle, .l_footer__addressText {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .l_footer__menu {
    -moz-columns: 1;
         columns: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .l_footer__menu > li {
    margin-bottom: 16px;
  }
  .l_footer__menu > li > a {
    font-size: 1.8rem;
  }
  .l_footer__menu .sub-menu {
    margin-top: 6px;
  }
  .l_footer__menu .sub-menu a {
    font-size: 1.5rem;
    padding-left: 14px;
  }
  .l_footer__copy {
    margin-top: 36px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}/*# sourceMappingURL=style.css.map */