@charset "UTF-8";
/* -----------------------------------------------------------------------------------
HOME（TOPページ）
----------------------------------------------------------------------------------- */
.home header {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.home header.is_scroll {
  -webkit-box-shadow: 0px 24px 30px -20px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 24px 30px -20px rgba(0, 0, 0, 0.15);
}
.home main {
  background: transparent;
}

/*--------------------------------------
メインビジュアル
----------------------------------------*/
.fv {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .fv {
    height: 100vh;
  }
}
.fv__background {
  width: 90%;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv__background {
    width: 65vw;
  }
}
.fv__background-img {
  width: 100%;
  padding: 40vh 0 0;
  background: url(../img/img_home_fv_sp.jpg) center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .fv__background-img {
    padding: 66.6666666667% 0 0;
    background: url(../img/img_home_fv.jpg) center no-repeat;
    background-size: cover;
  }
}
.fv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(100%, 1240px);
  padding: 40vh 0 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fv__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100%;
  }
}
.fv__content {
  width: 90%;
  min-height: 50vh;
  padding: 48px 16px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .fv__content {
    width: min(100%, 500px);
    min-height: 60vh;
    padding: 64px 40px 48px;
    border-top-right-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.fv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.fv__title {
  color: #014865;
  font-size: 36px;
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .fv__title {
    font-size: 42px;
  }
}
.fv__subtitle {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #014865;
  font-size: 18px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  line-height: 1.25;
  word-wrap: break-word;
}
.fv__description {
  width: 420px;
  color: #014865;
  font-size: 18px;
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.fv .scroll-indicator-wrap {
  -webkit-animation: bounce 1.5s infinite ease-in-out;
          animation: bounce 1.5s infinite ease-in-out;
}
.fv .scroll-indicator {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 120px;
  left: 8px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
@media (min-width: 768px) {
  .fv .scroll-indicator {
    left: 20px;
    bottom: calc(216px + 5vh);
  }
}
.fv .scroll-indicator__text {
  color: #014865;
  font-size: 18px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
.fv .scroll-indicator::after {
  content: "";
  width: 40px;
  height: 8px;
  background: url(../img/icon_fv_scroll.png) center right no-repeat;
  background-size: cover;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

/*--------------------------------------
イントロ
----------------------------------------*/
.home-intro {
  display: block;
  position: relative;
}
.home-intro::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F0F4F8;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media (min-width: 768px) {
  .home-intro::before {
    height: 60%;
  }
}
.home-intro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-intro__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 auto 0 0;
  }
}
.home-intro__background {
  width: 100%;
  height: auto;
  padding: 75% 0 0;
  background: url(../img/img_home_intro.jpg) top center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .home-intro__background {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: min(100%, 695px);
    height: 521px;
    padding: 0;
    border-radius: 20px;
    background: url(../img/img_home_intro.jpg) center no-repeat;
    background-size: cover;
  }
}
.home-intro__content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: min(100% - 20px, 640px);
  min-height: 455px;
  padding: 16px 32px;
  margin: -32px 0 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
}
@media (min-width: 768px) {
  .home-intro__content {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 64px 32px 64px 64px;
    margin: 104px 0 0 -96px;
    border-radius: 20px;
  }
}
.home-intro__heading {
  color: #014865;
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 20px;
}
@media (min-width: 768px) {
  .home-intro__heading {
    font-size: 24px;
  }
}
.home-intro__heading > * {
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.home-intro__heading-large {
  font-size: 1.6666666667em;
}
.home-intro__heading-medium {
  font-size: 1.3333333333em;
}
.home-intro__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
  color: #014865;
  font-size: 16px;
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .home-intro__description {
    font-size: 18px;
  }
}

/*--------------------------------------
新着情報
----------------------------------------*/
.home-news {
  display: block;
  padding: 80px 0 64px;
  background: #F0F4F8;
  /* > width_contents */
  /* 左側 見出しエリア */
  /* 右側 コンテンツエリア */
}
@media (min-width: 768px) {
  .home-news {
    padding: 140px 0 80px;
  }
}
.home-news__container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .home-news__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.home-news__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home-news__content {
  width: min(100%, 960px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 48px;
}
.home-news__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

/*--------------------------------------
HOME共通 > セクションタイトル
----------------------------------------*/
.home-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(10px, 1.5vw, 16px);
}
.home-title__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-left: clamp(12px, 2vw, 16px);
  color: #014865;
  font-weight: 400;
  font-size: clamp(48px, 4.5vw, 56px);
  line-height: 1;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  word-wrap: break-word;
}
.home-title__main::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(4px, 0.8vw, 8px);
  height: 80%;
  background: -webkit-gradient(linear, left top, left bottom, from(#68c2e7), to(#67be95));
  background: linear-gradient(#68c2e7 0%, #67be95 100%);
  content: "";
}
.home-title__sub {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #014865;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
}

/*--------------------------------------
HOME共通 > セクション導入文
----------------------------------------*/
.home-lead-text {
  width: 100%;
  color: #014865;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.8;
}

/*--------------------------------------
当法人について
----------------------------------------*/
.home-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
  padding: 64px 0 48px;
  background-image: repeating-linear-gradient(0deg, rgb(236, 248, 255) 0px, rgb(236, 248, 255) 1px, transparent 1px, transparent 21px), repeating-linear-gradient(90deg, rgb(236, 248, 255) 0px, rgb(236, 248, 255) 1px, transparent 1px, transparent 21px), -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background-image: repeating-linear-gradient(0deg, rgb(236, 248, 255) 0px, rgb(236, 248, 255) 1px, transparent 1px, transparent 21px), repeating-linear-gradient(90deg, rgb(236, 248, 255) 0px, rgb(236, 248, 255) 1px, transparent 1px, transparent 21px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
@media (min-width: 768px) {
  .home-about {
    gap: 48px 0;
    padding: 80px 0 64px;
  }
}
.home-about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .home-about__container {
    gap: 32px 0;
  }
}
.home-about__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
}

.pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  .pickup {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.pickup__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  border-left: 1px solid #68c2e7;
  border-top: 1px solid #68c2e7;
  padding: clamp(8px, 1vw, 16px);
}
@media (min-width: 768px) {
  .pickup__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.pickup__subtitle {
  color: #014865;
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2903225806vw, 16px);
  line-height: 1;
  letter-spacing: 0.5em;
}
@media (min-width: 768px) {
  .pickup__subtitle {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.pickup__heading {
  color: #014865;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(32px, 2.9032258065vw, 36px);
}
@media (min-width: 768px) {
  .pickup__heading {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}
.pickup__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 480px) {
  .pickup__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .pickup__content {
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 960px);
  }
}
.pickup__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(6px, 1vw, 8px);
  width: 100%;
}
.pickup__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(6px, 1vw, 8px);
  width: 100%;
  position: relative;
}
.pickup__link .pickup__image {
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.pickup__link:hover .pickup__image {
  -webkit-box-shadow: 0 0 20px rgba(163, 218, 240, 0.6);
          box-shadow: 0 0 20px rgba(163, 218, 240, 0.6);
}
.pickup__image {
  display: block;
  width: 100%;
  padding: 75% 0 0;
  border-top-right-radius: 50px;
  border: 1px solid #ececec;
  overflow: hidden;
  position: relative;
}
.pickup__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.pickup__description {
  color: #014865;
  font-weight: 500;
  word-wrap: break-word;
  /* 1240px基準で14px相当 */
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 480px) {
  .pickup__description {
    font-size: 14px;
  }
}
.pickup__popup {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*--------------------------------------
業務内容
----------------------------------------*/
.home-service {
  display: block;
  padding: 64px 0 56px;
  background: #F0F4F8;
}
@media (min-width: 768px) {
  .home-service {
    padding: 80px 0 64px;
  }
}
.home-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 32px;
}
@media (min-width: 768px) {
  .home-service__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.home-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .home-service__item {
    gap: 32px 0;
  }
}
.home-service__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 180px;
  gap: clamp(12px, 2vw, 16px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
@media (min-width: 480px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .service-cards {
    width: 640px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  width: 100%;
  height: 180px;
  border: 1px solid #68c2e7;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(67, 67, 67, 0.05);
          box-shadow: 0 0 10px rgba(67, 67, 67, 0.05);
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.service-card:hover {
  -webkit-box-shadow: 0 0 20px rgba(163, 218, 240, 0.6);
          box-shadow: 0 0 20px rgba(163, 218, 240, 0.6);
}
.service-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 16px;
}
.service-card__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34px;
  height: 32px;
  border-radius: 0 0 8px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#68c2e7), to(#67be95));
  background: linear-gradient(180deg, #68c2e7 0%, #67be95 100%);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.5;
}
.service-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.service-card__icon {
  width: 72px;
  height: 72px;
}
.service-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card__text {
  color: #014865;
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.5;
  text-align: center;
}

/*--------------------------------------
料金表
よくあるご質問
----------------------------------------*/
.home-outer {
  display: block;
  background: #F0F4F8;
  position: relative;
  z-index: 0;
}
.home-outer::before {
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  background: #3483A3;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media (min-width: 768px) {
  .home-outer::before {
    height: 50%;
  }
}
.home-outer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .home-outer__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.home-outer__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
}

.outer-card {
  width: min(100%, 612px);
  padding: clamp(20px, 3vw, 40px);
  background: white;
  -webkit-box-shadow: 0 4px 10px rgba(67, 67, 67, 0.05);
          box-shadow: 0 4px 10px rgba(67, 67, 67, 0.05);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .outer-card {
    gap: 32px 0;
  }
}
.outer-card__description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #014865;
  line-height: clamp(24px, 2vw, 28.8px);
}

/*--------------------------------------
お客様の声
----------------------------------------*/
.home-voice {
  display: block;
  padding: 48px 0 64px;
  background: #3483A3;
}
@media (min-width: 768px) {
  .home-voice {
    padding: 64px 0 80px;
  }
}
.home-voice__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .home-voice__container {
    gap: 32px 0;
  }
}
.home-voice__title * {
  color: #fff;
}
.home-voice__title ::before {
  background: #fff;
}

/*--------------------------------------
ブログ
----------------------------------------*/
.home-blog {
  display: block;
  padding: 48px 0 64px;
  background: #F0F4F8;
}
@media (min-width: 768px) {
  .home-blog {
    padding: 80px 0 64px;
  }
}
.home-blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .home-blog__container {
    gap: 32px 0;
  }
}
.home-blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0;
}
@media (min-width: 768px) {
  .home-blog__item {
    gap: 16px 0;
  }
}
.home-blog__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.home-blog__more-text {
  font-size: 14px;
}

/*--------------------------------------
動画
----------------------------------------*/
.movie .title {
  margin: 0 0 24px;
}

.movie-container {
  display: block;
  position: relative;
  width: min(100%, 600px);
  margin: 0 auto;
  padding: min(52.5%, 315px) 0 0;
}
.movie-container > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------
お客様の声
----------------------------------------*/
.voice .title {
  margin: 0 0 24px;
}

.voice-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}

.voice-card {
  -webkit-box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
  width: 100%;
  padding: 40px clamp(16px, 4.1666666667vw, 32px) 56px;
  border-left: 8px solid #b8decc;
  background: #ffffff;
}
.voice-card__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: unset;
  font-size: 18px;
}
.voice-card__heading h3 {
  color: unset;
  font-weight: unset;
  font-size: 1em;
}
.voice-card__text {
  font-size: 14px;
}

/*--------------------------------------
代表ブログ
----------------------------------------*/
.blog .home-btn-wrap {
  margin: 48px 0 0;
}
.blog .home-btn-wrap p {
  font-weight: 600;
  font-size: 0.8125em;
  width: 100%;
  margin: 0.25em 1em 0;
  color: #014865;
  text-align: right;
}

.blog-lead {
  margin: 0 0 32px;
  text-align: center;
}

/* ----------------
// Feed.php
---------------- */
.blog-noto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 40px;
  width: min(100%, 945px);
  /* 事務所理念・リード文の横幅に合わせる */
  margin: 0 auto;
}
.blog-noto > li {
  width: max((100% - 80px) / 3, 240px);
}
.blog-noto > li > a {
  display: block;
}
.blog-noto > li > a > img {
  padding: 4px;
  border: 1px solid rgba(52, 131, 163, 0.6);
}
.blog-noto .heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5em 0 0;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: justify;
}

/*--------------------------------------
ピックアップ
----------------------------------------*/
/* ----------------
// ポップアップ
---------------- */
.popup {
  display: block;
  position: relative;
  width: 100%;
  padding: 50% 0 0 0;
  overflow: hidden;
}
.popup > input[type=checkbox] {
  display: none;
}
.popup__body {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.popup__body::before, .popup__body::after {
  display: none;
  position: absolute;
  top: 32px;
  right: 32px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 40px;
  height: 2px;
  background: #ffffff;
  content: "";
}
.popup__body::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup__window {
  -webkit-box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.2);
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(90vw, 1200px);
  height: calc(90vh - 64px);
  overflow: hidden;
}
.popup__window--movie {
  width: min(90vw, 640px);
  height: min(56.25vw, 360px);
}
.popup__body > iframe,
.popup__body > img, .popup__window > iframe,
.popup__window > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.popup__body > img, .popup__window > img {
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: auto;
}
.popup > input[type=checkbox]:checked ~ .popup__body {
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}
.popup > input[type=checkbox]:checked ~ .popup__body::before, .popup > input[type=checkbox]:checked ~ .popup__body::after {
  display: block;
}
.popup > input[type=checkbox]:checked ~ .popup__body > img {
  display: none;
}
.popup > input[type=checkbox]:checked ~ .popup__window {
  display: block;
}

.play-icon {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  padding: 12px 8px 0 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 1px 1px 0 #67be95, -1px -1px 0 #67be95, -1px 1px 0 #67be95, 1px -1px 0 #67be95, 1px 0 0 #67be95, -1px 0 0 #67be95, 0 1px 0 #67be95, 0 -1px 0 #67be95;
}
.play-icon::before, .play-icon::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border: 34px solid;
  border-color: rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.25) transparent transparent;
  content: "";
}
.play-icon::after {
  z-index: -2;
  border-width: 38px;
  border-color: #67be95 #67be95 transparent transparent;
}

.popup > input[type=checkbox]:checked ~ .popup__body [class^=play-icon] {
  display: none;
}