@charset "UTF-8";
/*==================================================
sp pc
==================================================*/
@media all and (max-width: 769px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*==================================================
leyout
==================================================*/
:root {
  /*size*/
  --site-width: 116rem;
  --site-width-lg: 136rem;
  --site-width-sm: 104rem;
  --site-width-xs: 96rem;
  --site-padding: 4rem;
  /*color*/
  --body-color: #354D6F;
  --body-color-lt: #899FBE;
  --dark-color: #000000;
  --main-color: #5FA9E0;
  --main-color-lt: #E0F4FF;
  --main-color-dk: #4298E2;
  --main-color-gr: linear-gradient(45deg, #5288FF 0%, #40DAFF 100%);
  --main-color-gr-lt: linear-gradient(45deg, #F1F6FF 0%, #F0FCFF 100%);
  --dispatch-color-gr: linear-gradient(45deg, #0ABAB5 0%, #00E2D9 100%);
  --ichi-navi-color-gr: linear-gradient(45deg, #0065CC 0%, #159CFF 100%);
  --contact-color-gr: linear-gradient(45deg, #9FAAFF 0%, #F29AEB 100%);
  --border-color: #CCD9E3;
  --gray: #707070;
  --gray-lt: #F2F2F2;
  --cyan: #1CA5AC;
  --orange: #D69122;
  --blue: #53C3D1;
  --green: #4C8953;
  --purple: #BF83BD;
  --red: #EC6E88;
  /*font*/
  --font-base: 1.6rem;
  --font-middle: 1.8rem;
  --font-large: 2.4rem;
  --font-small: 1.4rem;
  --font-extra-small: 1.2rem;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  --font-weight-base: 300;
  --font-weight-medium: 400;
  --font-weight-bold: 600;
  --base-line: 1.5;
  /*z-index*/
  --z-index-nav: 100;
  --z-index-header: 90;
  /*height*/
  --height-header: 8rem;
}
@media all and (max-width: 768px) {
  :root {
    /*size*/
    --site-padding: 2rem;
    /*height*/
    --height-header: 7rem;
  }
}

/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
  font-size: 62.5%;
}
@media all and (max-width: 389px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
          animation: fadeIn 1s ease 0s 1 normal;
  color: var(--body-color);
  font-family: var(--font-jp);
  font-size: var(--font-base);
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
  line-height: var(--base-line);
  overflow-wrap: anywhere;
}
body.-show {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anime-up {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: all 3s ease;
}
.anime-up.-show {
  -webkit-animation: anime-up 1s forwards;
          animation: anime-up 1s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes anime-up {
  0% {
    transform: translateY(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}

@keyframes anime-up {
  0% {
    transform: translateY(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
/*--------------------------------------
splide（スライダー）
----------------------------------------*/
.splide:not(.is-overflow) .splide__slide {
  margin-bottom: 0;
}
.splide__arrows {
  display: flex;
  justify-content: space-between;
  margin-bottom: -2.8rem;
  padding-inline: 1rem;
}
.splide:not(.is-overflow) .splide__arrows {
  display: none;
}
@media all and (max-width: 768px) {
  .splide__arrows.sp-only {
    display: flex;
  }
}
.splide__arrow {
  background-color: transparent;
  display: grid;
  height: 4rem;
  place-content: center;
  width: 4rem;
}
.splide__arrow::before {
  background: url(/assets/img/ico-arrow-right2.svg) center/contain no-repeat;
  content: "";
  height: 3.2rem;
  width: 1.9rem;
}
.splide__arrow:disabled {
  opacity: 0.3;
  transition: none;
}
.splide__arrow--prev {
  transform: scale(-1, 1);
  left: 1rem;
}
.splide__arrow--next {
  right: 1rem;
}
.splide__pagination {
  gap: 1.6rem;
}
.splide__pagination__page {
  background-color: var(--border-color);
  border-radius: 50%;
  box-shadow: 0.8rem 1rem 1.6rem rgba(0, 0, 0, 0.16);
  display: block;
  height: 1.6rem;
  margin: 0;
  padding: 0;
  width: 1.6rem;
}
.splide__pagination__page.is-active {
  background-color: var(--main-color-dk);
}

.cozy_content > *:first-child {
  margin-top: unset !important;
}
.cozy_content p {
  color: var(--body-color);
  font-family: var(--font-jp);
  font-size: var(--font-base);
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
  line-height: var(--base-line);
  overflow-wrap: anywhere;
  margin-top: 1em;
}
.cozy_content h2 {
  align-items: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  gap: 0.5em;
  justify-content: center;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 1.5em auto 0;
}
@media all and (max-width: 768px) {
  .cozy_content h2 {
    font-size: 2rem;
  }
}
.cozy_content h2::before, .cozy_content h2::after {
  color: #C2C9D4;
  font-size: 4.8rem;
  font-weight: var(--font-weight-base);
  line-height: 1;
  margin-top: -0.6rem;
}
@media all and (max-width: 768px) {
  .cozy_content h2::before, .cozy_content h2::after {
    flex: 1;
    font-size: 4rem;
  }
}
.cozy_content h2::before {
  content: "[";
}
.cozy_content h2::after {
  content: "]";
}
.cozy_content h3 {
  color: var(--main-color-dk);
  font-size: 2.4rem;
  font-weight: var(--font-weight-base);
  line-height: 1.46;
  margin-top: 1.5em;
}
@media all and (max-width: 768px) {
  .cozy_content h3 {
    font-size: 1.8rem;
  }
}
.cozy_content h4 {
  border-left: 0.4rem solid var(--main-color);
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.46;
  padding: 0 0 0.1rem 1rem;
  margin-top: 1.5em;
}
@media all and (max-width: 768px) {
  .cozy_content h4 {
    font-size: 1.6rem;
  }
}
.cozy_content h5 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}
@media all and (max-width: 768px) {
  .cozy_content h5 {
    font-size: 1.6rem;
  }
}
.cozy_content a {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.1rem;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .cozy_content a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.cozy_content b {
  font-weight: --font-weight-bold;
}
.cozy_content ul {
  display: grid;
  gap: 0.5em;
  margin-top: 1em;
}
.cozy_content ul ul ul {
  gap: 0.5em;
  margin-top: 0.5em;
}
.cozy_content ul li {
  padding-left: 1em;
  position: relative;
}
li .cozy_content ul li {
  padding-left: 0.7em;
}
@media all and (max-width: 768px) {
  .cozy_content ul li {
    font-size: 1.4rem;
  }
}
.cozy_content ul li::before {
  background-color: var(--main-color);
  border-radius: 50%;
  content: "";
  height: 0.5em;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 0.5em;
}
.cozy_content ul li::before ul li::before {
  background-color: var(--body-color);
  height: 0.3em;
  top: 0.7em;
  width: 0.3em;
}
.cozy_content ol {
  counter-reset: list-num 0;
  display: grid;
  gap: 0.5em;
  margin-top: 1em;
}
.cozy_content ol ol {
  gap: 0.5em;
  margin-top: 0.5em;
}
.cozy_content ol li {
  padding-left: 1em;
  text-indent: -1em;
}
@media all and (max-width: 768px) {
  .cozy_content ol li {
    font-size: 1.4rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
}
.cozy_content ol li::before {
  color: var(--main-color);
  content: counter(list-num) ".";
  counter-increment: list-num 1;
}
.cozy_content ol li ol li::before {
  margin-top: -0.5em;
  padding-left: 1.3em;
}
.cozy_content ol li ol li::before::before {
  content: counter(list-num) ")";
}
.cozy_content b {
  font-weight: var(--font-weight-bold);
}
.cozy_content .align-center {
  text-align: center;
}
.cozy_content .align-left {
  text-align: left;
}
.cozy_content .align-right {
  text-align: right;
}
.cozy_content .align-justify {
  text-align: justify;
}
.cozy_content figure {
  text-align: center;
  margin-top: 1.5em;
}
.cozy_content figure img {
  border-radius: 2.4rem;
}
@media all and (max-width: 768px) {
  .cozy_content figure img {
    border-radius: 1.6rem;
  }
}
.cozy_content figure .embed-content {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.cozy_content figure .embed-content iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.cozy_content span.--red {
  color: #E59BBF;
}
.cozy_content span.--blue {
  color: #28469B;
}
.cozy_content span.--green {
  color: #82CB93;
}
.cozy_content .m-box {
  background-color: #E5F1FA;
  border-radius: 0.8rem;
  padding: 3rem;
}
@media all and (max-width: 768px) {
  .cozy_content .m-box {
    padding: 2rem;
  }
}
.cozy_content .m-box > *:first-child {
  margin-top: unset !important;
}
.cozy_content .m-card__btn {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.cozy_content .m-card__btn a {
  text-decoration: none;
}