@charset "UTF-8";
/* setting */
:root {
  --blue1: #268acc;
  --blue2: #1a3e87;
  --black: #000000;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  line-height: 1.6;
}
body .menu {
  display: block;
  padding: 0rem 1.875rem 1.25rem;
  z-index: 60;
  position: fixed;
  right: -100vw;
  transition: 0.3s all;
  right: -100vw;
  width: 430px;
  height: 100vh;
  background: #2f8acc;
  visibility: hidden;
}
@media (max-width: 768px) {
  body .menu {
    width: 100%;
  }
}
body .menu .header-head {
  margin-bottom: 5.625rem;
  width: min(100%, 250px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 14px 14px;
}
body .menu .header-head__logo {
  padding: 0rem 0.625rem 0.625rem;
}
body .menu .header-head__logo img {
  width: 70px;
}
body .menu .header-head__lead {
  font-size: 0.625rem;
  padding: 0.3125rem 0.625rem 0.3125rem;
}
body.is-active .menu {
  visibility: visible;
  right: 0;
  z-index: 100;
}
body.is-active .menu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
body.is-active .menu-list__item {
  margin-bottom: 1.25rem;
  padding: 0.3125rem 0;
}
body.is-active .menu-list__item--x a::after {
  content: "";
  background: transparent url("../img/common/icon_x.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.is-active .menu-list__item a {
  color: #fff;
  padding: 0 1.25rem 0.125rem;
  border-bottom: 1px solid #5b9ece;
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}
body.is-active .menu-list__item a::before {
  content: "";
  border-radius: 50%;
  background: #1a3e87;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.is-active .menu-list-child {
  padding: 0.625rem 0 0;
}
body.is-active .menu-list-child__item {
  padding: 0 1.25rem;
}
body.is-active .menu-list-child__item a {
  font-size: 1rem;
  padding-top: 0.625rem;
}
body.is-active .menu-list-child__item a::before {
  content: "";
  background: #b59510;
  top: 60%;
  transform: translateY(-50%);
}

.main {
  overflow-x: hidden;
}

.inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

@media (max-width: 1020px) {
  .inner {
    padding: 0 10px;
  }
}
.menu {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 86;
  padding: 0 1.875rem;
  opacity: 1;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .header {
    width: 100%;
    padding: 0 0.625rem;
  }
}
.header.is-nofixed {
  opacity: 0;
}
.header-head {
  width: min(100%, 412px);
  border-radius: 0 0 0 14px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header-head {
    max-width: 70%;
  }
}
.header-head a {
  display: flex;
}
.header-head a:hover {
  opacity: 1;
}
.header-head__logo {
  background: #fff;
  padding: 1.25rem;
}
@media (max-width: 768px) {
  .header-head__logo {
    padding: 0 0.9375rem 0.9375rem;
  }
}
.header-head__logo img {
  width: 160px;
}
@media (max-width: 768px) {
  .header-head__logo img {
    width: 100px;
  }
}
.header-head__lead {
  background: #2f8acc;
  display: flex;
  align-items: center;
  border-radius: 0 0 14px 0;
  font-size: 0.875rem;
  padding: 0.9375rem;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header-head__lead {
    font-size: 0.625rem;
    padding: 0.5rem;
  }
}
.header-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: fixed;
  top: 1.25rem;
  right: 1.875rem;
  background: #fff;
  cursor: pointer;
  z-index: 105;
}
@media (max-width: 768px) {
  .header-toggle {
    top: 0.625rem;
    right: 0.625rem;
    width: 50px;
    height: 50px;
  }
}
.header-toggle span {
  transition: 0.3s all;
}
.header-toggle.is-active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 20px;
  z-index: 5;
}
@media (max-width: 768px) {
  .header-toggle.is-active span:nth-child(1) {
    top: 16px;
  }
}
.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: 0px;
}
.header-toggle__inner {
  border: 4px solid #268acc;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .header-toggle__inner {
    width: 44px;
    height: 44px;
    gap: 4px;
  }
}
.header-toggle__inner span {
  width: 28px;
  display: block;
  height: 5px;
  top: 11px;
  background: #000;
  background: #1a3e87;
  border-radius: 1px;
}
@media (max-width: 768px) {
  .header-toggle__inner span {
    top: 8px;
    width: 22px;
    height: 4px;
  }
}
.header-toggle__inner span:nth-child(2) {
  background: #268acc;
}
.header-toggle__inner span:nth-child(3) {
  background: #b59510;
}

.btn a {
  display: block;
  background: #268acc;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 0.8125rem;
  font-weight: 600;
  border: 3px solid #fff;
  letter-spacing: 0.5px;
}
.btn a:hover {
  opacity: 1;
  filter: brightness(1.2);
}
.btn a span {
  padding: 0 1.5625rem;
}
.btn a span::before {
  content: "";
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
          clip-path: polygon(0 100%, 0 0, 100% 50%);
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #fff;
}
.btn input[type=button] {
  display: block;
  background: #f4f4f4;
  border-radius: 10px;
  text-align: center;
  padding: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  width: min(100%, 400px);
  cursor: pointer;
}

.fv {
  height: 790px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    height: 100vh;
  }
}
.fv::before {
  content: "";
  width : 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(2, 48, 65, 0.46);
  top: 0;
  left: 0;
  z-index: 5;
}
.fv-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .inner {
  z-index: 5;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  padding-top: 5rem;
}
.fv-main {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .fv-main {
    max-width: 300px;
    margin: 0 auto 3.125rem;
  }
}
@media (max-width: 520px) {
  .fv-main {
    margin: 0 auto 6.25rem;
  }
}
.fv-main::before {
  content: "";
  background: transparent url("../img/top/img_fv_object_01.svg");
  width: 62px;
  height: 70px;
  background-size: cover;
  position: absolute;
  top: 1.25rem;
  left: -8.75rem;
  display: block;
}
@media (max-width: 768px) {
  .fv-main::before {
    left: -10vw;
    top: 5rem;
    width: 40px;
    height: 45px;
  }
}
.fv-main::after {
  content: "";
  background: transparent url("../img/top/img_fv_object_02.svg");
  width: 62px;
  height: 70px;
  background-size: cover;
  position: absolute;
  top: 1.25rem;
  right: -8.75rem;
  display: block;
}
@media (max-width: 768px) {
  .fv-main::after {
    right: -10vw;
    width: 40px;
    height: 45px;
  }
}
.fv-detail {
  z-index: 5;
  color: #fff;
  width: min(100%, 850px);
}
@media (max-width: 768px) {
  .fv-detail {
    width: 80%;
  }
}
@media (max-width: 520px) {
  .fv-detail {
    width: 100%;
  }
}
.fv-detail__title {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .fv-detail__title {
    font-size: 1.25rem;
  }
}
.fv-detail__text {
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .fv-detail__text {
    font-size: 0.75rem;
    line-height: 2;
  }
}
.fv-detail__caption {
  display: flex;
  gap: 1.875rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .fv-detail__caption {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.fv-detail__nav {
  width: min(100%, 215px);
}
@media (max-width: 768px) {
  .fv-detail__nav {
    margin: 0 auto;
  }
}

.title {
  margin: 0 auto 1.25rem;
  text-align: center;
}

.top-news {
  padding: 8.125rem 0;
  background: transparent url("../img/top/bg_news.png") no-repeat center center;
  background-size: cover;
}
.top-news .title {
  margin-bottom: 2.5rem;
  width: clamp(225px, 6vw, 287px);
}
.top-news .inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 3.125rem 3.125rem 4.375rem;
}
@media (max-width: 768px) {
  .top-news .inner {
    width: 95%;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
  }
}
.top-info {
  padding: 5.625rem;
}
@media (max-width: 1000px) {
  .top-info {
    padding: 2.5rem 0.625rem;
  }
}
.top-info .title {
  margin-bottom: 2.5rem;
  width: 287px;
}
.top-about {
  padding-top: 2.5rem;
  overflow-x: hidden;
  padding-top: 10.625rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .top-about {
    padding-top: 9.375rem;
  }
}
.top-about::before {
  content: "";
  -webkit-clip-path: ellipse(50% 20% at 50% 50%);
          clip-path: ellipse(50% 20% at 50% 50%);
  background: #268acc;
  height: 350px;
  width: 110%;
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.top-about__inner {
  background: #268acc;
  padding-top: 1.25rem;
  padding-bottom: 5rem;
}
.top-about__head {
  margin-bottom: 1.5rem;
}
.top-about__icon {
  font-size: 1.5rem;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 2px solid #fff;
  padding: 4px 5rem;
  color: #fff;
  margin: 0 auto 1.875rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-about__icon {
    font-size: 1.1875rem;
  }
}
.top-about__lead {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3.125rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
 .top-about__lead {
   font-size: 1rem;
   margin-bottom: 1.825rem;
  }
}
.top-about__text {
  color: #fff;
  font-size :0.875rem;
  margin-bottom: 0.9375rem;
  font-weight: 600;
}

.top-about__image {
  margin-bottom: 1.25rem;
}

.top-about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap :  1.25rem;
}
@media (max-width: 768px) {
 .top-about__list {
   grid-template-columns: 1fr;
  }
}
.top-about__item {
  background : #fff;
  padding: 0.625rem;
}
.top-about__item:has(.top-about__coming) {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
 .top-about__item:has(.top-about__coming) {
   padding: 2rem 0;
  }
}
.top-about__list-image {
  margin-bottom: 0.625rem;
}

.top-about__label {
  font-weight: 600;
}

.top-about__desc {
  font-size: 0.875rem;
}
.top-about__coming {
  color: #1A3E87;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
}

.news-list {
  width: min(100%, 700px);
  margin: 0 auto;
}
.news-list__item {
  display: flex;
  border-bottom: 1px solid #d6d6d6;
  gap: 10px;
  align-items: center;
  padding: 0.625rem 0;
}
@media (max-width: 768px) {
  .news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.news-list__item a {
  text-decoration: underline;
}
.news-list__icon {
  color: #fff;
  font-size: 0.5625rem;
  background: #1a3e87;
  border-radius: 4px;
  padding: 4px 20px;
  text-align: center;
  width: min(100%, 356px);
}
.news-list__title {
  flex: 1;
  font-size: 0.875rem;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .info-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.info-list__lower {
  gap: 3.75rem 2.5rem;
  margin-bottom: 2.5rem;
}
.info-list__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .info-list__inner {
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.info-list__inner--left, .info-list__inner--right {
  display: grid;
}
@media (max-width: 768px) {
  .info-list__inner--left, .info-list__inner--right {
    display: none;
  }
}
.info-list__inner--mobile {
  display: none;
}
@media (max-width: 768px) {
  .info-list__inner--mobile {
    display: grid;
  }
}
.info-list__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}
.info-list__head--new {
  position: absolute;
  top: -2.5rem;
  left: -1.875rem;
  width: clamp(87px, 10vw, 112px);
}
@media (max-width: 768px) {
  .info-list__head--new {
    width: clamp(87px, 15vw, 112px);
    top: -1.25rem;
  }
}
@media (max-width: 520px) {
  .info-list__head--new {
    top: -1.875rem;
  }
}
.info-list__head--title {
  top: -1.25rem;
  width: clamp(166px, 20vw, 248px);
}
@media (max-width: 768px) {
  .info-list__head--title {
    width: clamp(166px, 40vw, 248px);
  }
}
.info-list__head--pickup {
  position: absolute;
  top: -1.25rem;
  right: 0rem;
  width: clamp(56px, 6vw, 72px);
}
@media (max-width: 768px) {
  .info-list__head--pickup {
    width: clamp(56px, 10vw, 72px);
    top: -1.5625rem;
  }
}
.info-list__item {
  padding: 0 1.25rem 1.25rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.info-list__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  display: block;
}
.info-list__item--know {
  background: #e0f4fc;
}
.info-list__item--know::after {
  background: transparent url("../img/common/bg_info_01.jpg");
  background-size: cover;
}
.info-list__item--experience {
  background: #def0e5;
}
.info-list__item--experience::after {
  background: transparent url("../img/common/bg_info_04.jpg");
  background-size: cover;
}
.info-list__item--live {
  background: #f8e7f1;
}
.info-list__item--live::after {
  background: transparent url("../img/common/bg_info_02.jpg");
  background-size: cover;
}
.info-list__item--nurture {
  background: #fcf1d7;
}
.info-list__item--nurture::after {
  background: transparent url("../img/common/bg_info_03.jpg");
  background-size: cover;
}
.info-list__image {
  margin-bottom: 1.225rem;
}
.info-list__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.info-list__detail {
  font-size: 0.875rem;
  font-weight: 600;
  flex: 1;
}
.info-list__date {
  margin-bottom: 0.3125rem;
  margin-top: -0.625rem;;
}
.info-list__text {
  padding-right: 1.875rem;
  z-index: 5;
}
.info-list__wrap.is-flex {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
}
.info-list__wrap.is-flex .info-list__image {
  width: 260px;
  height: 160px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .info-list__wrap.is-flex .info-list__image {
    width: 220px;
  }
}
@media (max-width: 520px) {
  .info-list__wrap.is-flex .info-list__image {
    width: 180px;
  }
}
.info-list__wrap.is-flex .info-list__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.info-list__wrap.is-flex .info-list__text {
  padding: 0;
}
.info-list__nav {
  width: min(100%, 444px);
  margin: 0 auto;
}

.lower-fv {
  background: #1a3e87;
  height: 210px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 0 20px;
}
.lower-fv__title--text {
  color: #fff;
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .lower-fv__title--text {
    font-size: 1.25rem;
  }
}
.lower-main {
  padding: 3.125rem 0 8.125rem;
  border-bottom: 2px solid #268acc;
  margin-bottom: 1.875rem;
}

.about-ttl {
  text-align: center;
  margin-bottom: 3.125rem;
}
.about-first {
  margin-bottom: 8.125rem;
}
@media (max-width: 768px) {
  .about-first {
    margin-bottom: 7.5rem;
  }
}
.about-first__wrap {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 1.5625rem;
}
@media (max-width: 768px) {
  .about-first__wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
.about-first__text {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
}
@media (max-width: 768px) {
  .about-first__text {
    gap: 1.875rem;
  }
}
.about-first__text p {
  font-weight: 600;
  line-height: 2.4;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .about-first__text p {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.about-first__image--pc {
  display: block;
}
@media (max-width: 768px) {
  .about-first__image--pc {
    display: none;
  }
}
.about-first__image--sp {
  display: none;
}
@media (max-width: 768px) {
  .about-first__image--sp {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
.about-detail__lead {
  color: #2f8acc;
  font-size: 1.625rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .about-detail__lead {
    font-size: 1.375rem;
    text-align: left;
    margin-bottom: 1.875rem;
  }
}
.about-detail__image {
  margin-bottom: 4.375rem;
  text-align: center;
}
@media (max-width: 768px) {
  .about-detail__image {
    margin-bottom: 1.875rem;
  }
}
.about-detail__text {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (max-width: 768px) {
  .about-detail__text {
    gap: 1.875rem;
  }
}
.about-detail__text p {
  font-weight: 600;
  line-height: 2.4;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .about-detail__text p {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.list-title {
  color: #2f8acc;
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .list-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .list-head {
    flex-direction: column;
  }
}
.list-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4.375rem;
}
@media (max-width: 768px) {
  .list-check {
    gap: 0.625rem;
    width: 90%;
    margin: 0 0 0 auto;
  }
}
.list-check__radio {
  display: none;
}
.list-check__item {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .list-check__item {
    font-size: 1rem;
  }
}
.list-check__item label {
  cursor: pointer;
}
.list-check__item label::before {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translateY(-50%);
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .list-check__item label::before {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 768px) {
  .list-check__item--01 {
    flex: 0 0 100%;
  }
}
.list-check__item--01 > label {
  color: #1a3e87;
}
.list-check__item--01 > label::before {
  border-color: #1a3e87;
}
.list-check__item--01 > .list-check__radio:checked + label::before {
  background: #1a3e87;
}
@media (max-width: 768px) {
  .list-check__item--02 {
    flex: 1 1 calc(50% - 10px);
  }
}
.list-check__item--02 > label {
  color: #2f8acc;
}
.list-check__item--02 > label::before {
  border-color: #2f8acc;
}
.list-check__item--02 > .list-check__radio:checked + label::before {
  background: #2f8acc;
}
@media (max-width: 768px) {
  .list-check__item--03 {
    flex: 1 1 calc(50% - 10px);
  }
}
.list-check__item--03 > label {
  color: #519615;
}
.list-check__item--03 > label::before {
  border-color: #519615;
}
.list-check__item--03 > .list-check__radio:checked + label::before {
  background: #519615;
}
@media (max-width: 768px) {
  .list-check__item--04 {
    flex: 1 1 calc(50% - 10px);
  }
}
.list-check__item--04 > label {
  color: #eb67d7;
}
.list-check__item--04 > label::before {
  border-color: #eb67d7;
}
.list-check__item--04 > .list-check__radio:checked + label::before {
  background: #eb67d7;
}
@media (max-width: 768px) {
  .list-check__item--05 {
    flex: 1 1 calc(50% - 10px);
  }
}
.list-check__item--05 > label {
  color: #b59510;
}
.list-check__item--05 > label::before {
  border-color: #b59510;
}
.list-check__item--05 > .list-check__radio:checked + label::before {
  background: #b59510;
}
.list-map {
  width: 100%;
  height: 500px;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .list-map {
    height: 400px;
    margin-bottom: 2.5rem;
  }
}
.list-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .list-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    max-width: 500px;
    margin: 0 auto 5rem;
  }
}
@media (max-width: 520px) {
  .list-nav__list {
    max-width: 100%;
  }
}
.list-more {
  width: min(100%, 450px);
  margin: 0 auto;
}
.list-more.is-hidden {
  display: none;
}
.list-more__loading {
  text-align: center;
  padding: 0.3125rem 0;
  display: block;
  -webkit-animation: blink 0.3s step-start infinite;
          animation: blink 0.3s step-start infinite;
  display: none;
}
.list-ballown {
  max-width: 200px;
}
.list-ballown img {
  display: block;
  margin-bottom: 0.625rem;
  width: 100%;
}
.list-ballown p {
  font-weight: 600;
}

@-webkit-keyframes blink {
  50% {
    opacity: 0.5;
  }
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}
.single-head {
  display: flex;
  gap: 1.875rem;
  align-items: center;
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .single-head {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.single-head__title {
  font-size: clamp(1.25rem, 5vw, 1.875rem);
  color: #2f8acc;
}
.single-head__date {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
.single-thum {
  margin: 0 auto;
  margin-bottom: 3.125rem;
  width: min(100%, 600px);
}
.single-contents {
  margin-bottom: 3.75rem;
  font-size: var(--wp--preset--font-size--medium);
}
@media (max-width: 768px) {
  .single-contents {
    margin-bottom: 2.5rem;
    font-size: 95%;
  }
}
.single-contents .wp-block-media-text {
  margin-bottom: 1.25rem;
  overflow: hidden;
  clear: both;
}
@media (max-width: 768px) {
  .single-contents .wp-block-media-text {
    margin-bottom: 1.25rem;
  }
}
.single-contents .aligncenter {
  text-align: center;
}

.single-contents .is-content-justification-right .wp-block-image {
  width: fit-content;
  margin: 0;
}

.single-contents .is-style-sme-speech-left {
  position: relative;
  left : 20px;
  width: calc(100% - 130px);
  max-width: fit-content;
}

.is-style-sme-speech-right {
  position: relative;
  right : 20px;
  width: calc(100% - 130px);
  max-width: fit-content;
}

.single-contents .wp-block-group {
  margin-bottom: 1.875rem;
  overflow: hidden;
  clear: both;
}
@media (max-width: 768px) {
  .single-contents .wp-block-group {
    margin-bottom: 1.25rem;
  }
}
.single-contents .wp-block-group p:last-child {
  margin-bottom: 0;
}
.single-contents .wp-block-image {
  width: min(100%, 800px);
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .single-contents .wp-block-image {
    margin-bottom: 1.25rem;
  }
}
.single-contents .wp-block-quote {
  background: #f4f4f4;
  padding: 1.875rem;
}
.single-contents .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.single-contents .wp-block-quote .wp-block-image {
  margin-bottom: 1.25rem;
}
.single-contents h2.wp-block-heading {
  color: #2f8acc;
  font-size: 140%;
  margin-bottom: 1.25rem;
  clear: both;
}
@media (max-width: 768px) {
  .single-contents h2.wp-block-heading {
    margin-bottom: 0.625rem;
  }
}
.single-contents h3.wp-block-heading {
  border-bottom: 1px solid #000;
  font-size: 120%;
  margin-bottom: 1.875rem;
  clear: both;
}
@media (max-width: 768px) {
  .single-contents h3.wp-block-heading {
    margin-bottom: 1.25rem;
  }
}
.single-contents p {
  line-height: 2;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .single-contents p {
    margin-bottom: 0.625rem;
  }
}
.single-contents p a {
  text-decoration: underline;
  color: var(--blue1);
}
@media (max-width: 768px) {
  .single-contents .wp-block-media-text {
    gap: 1.25rem;
  }
  .single-contents .wp-block-media-text__content > .wp-block-heading {
    margin-bottom: 0.625rem;
  }
  .single-contents .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
  }
}
.single-contents .wp-block-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.single-contents .wp-block-list li {
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  gap: 0.3125rem;
}
.single-contents .wp-block-list li::before {
  content: "・";
}
.single-contents .wp-block-table {
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.single-contents iframe {
  width: 100%;
  height: 100%;
  aspect-ratio : 4/3;
}
.single-contents .wp-block-column iframe {
  aspect-ratio : auto;
  height: revert-layer;
}
.single-contents iframe.instagram-media {
  margin: 0 auto !important;
  height: revert-layer;
}
.single-contents .wp-block-buttons {
  margin-bottom: 2.5rem;
}
.single-contents .wp-block-buttons > .wp-block-button {
  display: block;
}
.single-contents .wp-block-buttons a {
  display: block;
  background: #2f8acc;
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}
.single-btn {
  width: min(100%, 400px);
  margin: 0 auto;
}

.contact-wrap {
  background: #edf7ff;
  padding: 3.125rem 7.5rem;
}
@media (max-width: 1000px) {
  .contact-wrap {
    padding: 3.125rem 3.125rem;
  }
}
@media (max-width: 768px) {
  .contact-wrap {
    padding: 1.25rem 1.25rem 3.125rem;
  }
}
.contact-set {
  margin-bottom: 1.25rem;
}
.contact-set__label {
  display: flex;
  font-weight: 600;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 0.3125rem;
}
.contact-set__icon {
  color: #fff;
  background: #f0532d;
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 2px;
  font-weight: 500;
}
.contact-set__select::before {
  content: "";
  width: 10px;
  height: 7px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: var(--blue2);
  z-index: 5;
  pointer-events: none;
}
.contact-set__contents input[type=text] {
  width: 100%;
  border: 1px solid #00559c;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-weight: 500;
}
.contact-set__contents input[type=text]::-moz-placeholder {
  color: #c4c4c4;
}
.contact-set__contents input[type=text]::placeholder {
  color: #c4c4c4;
}
.contact-set__contents select {
  width: 100%;
  border: 1px solid #00559c;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-set__contents textarea {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #00559c;
  height: 260px;
  width: 100%;
}
.contact-check {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.contact-check input[type=checkbox] {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 3px solid #f0532d;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: #fff;
}
.contact-check input[type=checkbox]:checked::before {
  content: "";
  border-left: 3px solid #f0532d;
  border-bottom: 3px solid #f0532d;
  width: 12px;
  height: 7px;
  transform: rotate(-45deg);
  position: relative;
  left: 2px;
  top: 3px;
  display: block;
}
.contact-check a {
  text-decoration: underline;
}
.contact-check label {
  flex: 1;
}
.contact-send {
  width: min(100%, 300px);
  margin: 0 auto;
}
.contact-send::before {
  content: "";
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
          clip-path: polygon(0 100%, 0 0, 100% 50%);
  width: 13px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background: #fff;
  display: block;
  z-index: 5;
  pointer-events: none;
}
.contact-send input[type=submit] {
  background: #1a3e87;
  color: #fff;
  padding: 20px 0;
  display: block;
  border-radius: 10px;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s all;
  border: none;
}
.contact-send input[type=submit]:hover {
  opacity: 0.7;
}
.contact-thanks__lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}
.contact-thanks__text {
  margin-bottom: 3.125rem;
  text-align: center;
}
.contact-thanks__text--err {
  color: #f0532d;
}
.contact-thanks .btn {
  max-width: 400px;
  margin: 0 auto;
}

.footer {
  padding-bottom: 3.75rem;
  clear: both;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 3.75rem;
  }
}
@media (max-width: 520px) {
  .footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.footer-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  margin-bottom: 3.75rem;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1000px) {
  .footer-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .footer-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto 3.75rem;
  }
}
@media (max-width: 1000px) {
  .footer-banner__item {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .footer-banner__item {
    max-width: 100%;
    max-width: 360px;
  }
}
.footer-copy {
  font-size: 0.75rem;
  text-align: center;
}
/*# sourceMappingURL=layout.css.map */