@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* PC、SPの非表示 */
.yellow__underline {
  text-decoration: underline 10px #FFD900;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none; /* インクスキップを無効化 */
}

body {
  color: #333333;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
img {
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1160px) and (min-width: 768px) {
  html {
    font-size: 0.8620689655vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 14.6666666667px);
  }
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* 親テーマの影響をリセット */
.header, .footer {
  all: unset; /* 親テーマのスタイルを無効化 */
}

ul {
  list-style: none !important;
}

.footer__color {
  color: #fff;
  background: linear-gradient(to bottom right, rgb(10, 63, 88), rgb(13, 64, 70));
}

.footer__wrap {
  max-width: 146rem;
  padding-top: 4.5rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 1rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__wrap {
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}

.footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -0.4rem;
}
@media (max-width: 767px) {
  .footer__flex {
    display: block;
    margin-bottom: 3rem;
  }
}

.footer__logo {
  display: block;
  width: 20rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__logo:hover {
  opacity: 0.8;
}

.footer__nav {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.15;
  letter-spacing: -0.05rem;
  transform: translateX(2.5rem);
}

.footer__right-item {
  transition: all 0.5s;
  position: relative;
  color: #FFF !important;
}

.footer__right-item:hover {
  color: #009FE8;
}

.footer__right-item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0rem;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.footer__right-item:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.footer__contact {
  transform: translateY(-1.5rem);
}
@media (max-width: 767px) {
  .footer__contact {
    transform: unset;
    margin-top: 2rem;
  }
}

.footer__contact-text {
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__contact-text {
    margin-bottom: 0.5rem;
  }
}

.footer__btn {
  width: 25rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0rem;
  padding-left: 1rem;
  transition: all 0.5s;
}
.footer__btn:hover {
  opacity: 0.7;
}
.footer__btn p {
  font-size: 1.6rem;
}

.footer__mail {
  width: 1.8rem;
  padding-bottom: 1.4rem;
}

.footer__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
  margin-left: 2rem;
}

.footer__arrow::before,
.footer__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.footer__arrow::before {
  transform: rotate(45deg);
}

.footer__arrow::after {
  transform: rotate(-45deg);
}

.footer__link {
  display: flex;
  justify-content: right;
  align-items: center;
  font-size: 1.2rem;
  column-gap: 1.5rem;
}
@media (max-width: 767px) {
  .footer__link {
    justify-content: center;
  }
}

.footer__pp,
.footer__sp {
  position: relative;
  transition: all 0.5s;
  color: #FFF !important;
}

.footer__pp::after,
.footer__sp::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0rem;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.footer__pp:hover::after,
.footer__sp:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.footer__copyright {
  background-color: #001D2B;
  text-align: center;
  font-size: 10px;
  padding-block: 0.5rem;
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #fff;
}

.header__wrap {
  max-width: 128rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  column-gap: 0rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 4rem;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header__wrap {
    height: 4.5rem;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
}

.header__title {
  transition: all 0.5s;
}
.header__title:hover {
  opacity: 0.8;
}
.header__title a {
  display: block;
  width: 30rem;
}
@media (max-width: 767px) {
  .header__title a {
    width: 21.7rem;
  }
}

.header__right-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
}
@media (max-width: 767px) {
  .header__right-nav {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 4.5rem;
    left: 120%;
    background: linear-gradient(to bottom, #E9F7EB, #E6F5FD);
    z-index: 10000;
    padding: 7rem 2rem;
    transition: all 0.5s;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .header__right-nav.active {
    left: 0;
  }
}

.header__right-item {
  font-size: max(1.6rem, 11px);
  font-weight: 400;
  transition: all 0.5s;
  letter-spacing: 0.05rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  color: #333333 !important;
}
.header__right-item:hover {
  color: #009FE8;
}
@media (max-width: 767px) {
  .header__right-item {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    padding: 0;
    height: 5rem;
    border-bottom: 0.1rem solid #A6B5C0;
    font-size: 2rem;
    padding-left: 2rem;
    width: 30rem;
  }
}

.header__right-item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #009FE8;
  bottom: 3.5rem;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.header__right-item:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header__right--btn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #1EAA39;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
.header__right--btn:hover {
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 767px) {
  .header__right--btn {
    margin-top: 2.5rem;
    margin-left: 2rem;
    width: 20rem;
  }
}

.header__mail {
  width: 1.8rem;
  padding-bottom: 0.9rem;
}

@media (max-width: 767px) {
  .sp-border {
    width: 17rem;
    border-bottom: 0.1rem solid #A6B5C0;
  }
}

@media (max-width: 767px) {
  .sp-border-long {
    width: 28rem;
    border-bottom: 0.1rem solid #A6B5C0;
  }
}

@media (max-width: 767px) {
  .header__right-logo {
    display: block;
    width: 13.4rem;
    transform: translate(20rem, 4rem);
  }
}

.header__hb-btn-wrap {
  border: 0.2rem solid #009FE8;
  padding: 0.75rem;
}

.header__hb-btn {
  width: 2rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
}
.header__hb-btn span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #009FE8;
  position: absolute;
  left: 0;
  transition: all 0.5s;
}

.header__hb-btn span:nth-of-type(1) {
  top: 0.2rem;
}

.header__hb-btn span:nth-of-type(2) {
  top: 0.9rem;
}

.header__hb-btn span:nth-of-type(3) {
  top: 1.6rem;
}

.header__hb-btn.active span:nth-of-type(1) {
  top: 1rem;
  transform: rotate(45deg);
}

.header__hb-btn.active span:nth-of-type(2) {
  display: none;
}

.header__hb-btn.active span:nth-of-type(3) {
  top: 1rem;
  transform: rotate(-45deg);
}

.header__hb-btn-wrap {
  border: none !important;
  padding: 0.4rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.header__hb-btn span {
  background-color: #333 !important;
}

.header__hb-menu-text {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1;
}

.FV {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.FV__img {
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .FV__img {
    z-index: 10;
    padding-bottom: 6rem;
  }
}

.FV__text {
  position: absolute;
  top: 19.8275862069vw;
  left: 3.4482758621vw;
  z-index: 11;
}
@media (max-width: 767px) {
  .FV__text {
    top: unset;
    left: unset;
    position: relative;
    margin-top: -30rem;
  }
}
.FV__text p {
  font-size: 1.8965517241vw;
  color: #009FE8;
  letter-spacing: 0.0862068966vw;
}
@media (max-width: 767px) {
  .FV__text p {
    font-size: 1.5rem;
    text-align: center;
  }
}

.FV__text-first {
  margin-bottom: 0.0862068966vw;
}
@media (max-width: 767px) {
  .FV__text-first {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .FV__text-first p {
    width: 20rem;
    margin: 0 auto;
    margin-block-end: -2rem;
  }
}

.FV__line {
  width: 24.1379310345vw;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .FV__line {
    width: 18.8rem;
    margin: 0 auto;
  }
}

.FV__text-main {
  font-size: 2.5862068966vw;
  color: #009FE8;
  margin-top: -0.0862068966vw;
}
@media (max-width: 767px) {
  .FV__text-main {
    font-size: 1.9rem;
    text-align: center;
    margin-top: 0rem;
  }
}

.FV__flex {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  margin-top: -1.1206896552vw;
  letter-spacing: 0.0862068966vw;
}
@media (max-width: 767px) {
  .FV__flex {
    justify-content: center;
  }
}

.FV__text-yellow-small {
  font-size: 2.7586206897vw;
  color: #E1AC1B;
  padding-bottom: 0.2586206897vw;
}
@media (max-width: 767px) {
  .FV__text-yellow-small {
    font-size: 2rem;
    text-align: center;
  }
}

.FV__zero {
  width: 3.1896551724vw;
  transform: translate(0.1rem, 0.4rem);
}
@media (max-width: 767px) {
  .FV__zero {
    width: 2.3rem;
    transform: translate(0.1rem, 0.4rem);
  }
}

.FV__text-yellow {
  font-size: 3.7068965517vw;
  color: #E1AC1B;
}
@media (max-width: 767px) {
  .FV__text-yellow {
    font-size: 2.8rem;
    text-align: center;
  }
}

.FV__text-second {
  width: 34.4827586207vw;
  font-size: 2.4137931034vw;
  font-weight: 400;
  color: #009FE8;
  background-color: #fff;
  padding-inline: 2.5862068966vw;
  padding-top: 1.724137931vw;
  padding-bottom: 1.724137931vw;
  line-height: 3.275862069vw;
  letter-spacing: 0.0862068966vw;
  margin-top: 1.724137931vw;
}
@media (max-width: 767px) {
  .FV__text-second {
    font-size: 2.2rem;
    background-color: unset;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    max-width: unset;
    width: 29rem;
    line-height: 0.5;
    margin: 0 auto 2rem;
    background-color: #fff;
  }
}

.FV__text-blue-small {
  font-size: 2.0689655172vw;
}
@media (max-width: 767px) {
  .FV__text-blue-small {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .FV-sp-left {
    width: 0.7rem;
  }
}

@media (max-width: 767px) {
  .FV-sp-right {
    width: 0.7rem;
  }
}

.FV__bottom {
  background: linear-gradient(to top right, #CAEBFB, #EEF9FE);
  padding-block: 2.5rem;
}

.FV__bottom-img {
  width: 68.5rem;
  margin: 0 auto;
  transform: translateX(-2.5rem);
}
@media (max-width: 767px) {
  .FV__bottom-img {
    width: 32.5rem;
    transform: unset;
  }
}

#worried {
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0));
  width: 100%;
}

.worried {
  max-width: 146rem;
  padding-top: 4.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .worried {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.worried__title {
  margin-bottom: -0.8rem;
  position: relative;
  z-index: 2;
}
.worried__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .worried__title h2 {
    font-size: 2.8rem;
  }
}

.worried__line {
  max-width: 14.7rem;
  margin: 0 auto;
  position: relative;
  transform: translate(-10.6rem, -3.2rem);
  z-index: 1;
}
@media (max-width: 767px) {
  .worried__line {
    width: 10.4rem;
    max-width: unset;
    transform: translate(3.4rem, -6.9rem);
  }
}

.worried__flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 5rem;
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 5rem;
  padding-inline: 5rem;
  margin: 0 auto;
  max-width: 110rem;
  box-shadow: 1px 1px 10px -5px #777777;
}
@media (max-width: 767px) {
  .worried__flex {
    flex-direction: column;
    padding-inline: 0rem;
    padding-bottom: 0rem;
    width: 100%;
    max-width: unset;
    box-shadow: unset;
    background-color: unset;
    row-gap: 2rem;
  }
}

.worried__flex-item {
  max-width: 30rem;
  width: 100%;
}
@media (max-width: 767px) {
  .worried__flex-item {
    width: 33.5rem;
    max-width: unset;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #fff;
    box-shadow: 1px 1px 10px -5px #777777;
  }
}
.worried__flex-item h3 {
  font-size: 3rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .worried__flex-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.worried__flex-item p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .worried__flex-item p {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 auto 1.5rem;
    width: 31.5rem;
  }
}

.worried__flex-img {
  max-width: 30rem;
  margin-bottom: 4.1rem;
}
@media (max-width: 767px) {
  .worried__flex-img {
    width: 100%;
    margin: 0 auto 4rem;
  }
}

.margin-adjust01 {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .margin-adjust01 {
    margin-top: 0rem;
    text-align: left;
  }
}

.margin-adjust02 {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .margin-adjust02 {
    margin-top: 0rem;
    text-align: left;
  }
}

#flow {
  background: linear-gradient(to bottom, rgba(250, 245, 231, 0.1), rgb(250, 245, 231));
}

.flow {
  max-width: 146rem;
  padding-top: 14rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 5rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .flow {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.flow__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}
.flow__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .flow__title h2 {
    font-size: 2.8rem;
  }
}
.flow__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.flow__text {
  margin-bottom: 3.6rem;
}
.flow__text p {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .flow__text p {
    font-size: 1.6rem;
    text-align: left;
    width: 33.5rem;
    margin: 0 auto;
  }
}

.flow__flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 4.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .flow__flex {
    position: relative;
    column-gap: 0.7rem;
  }
}

.flow__flex-item h3 {
  font-size: 3rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}
.flow__flex-item p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .flow__flex-item p {
    width: 17.5rem;
  }
}

.flow__flex-chart-img {
  width: 19rem;
}
@media (max-width: 767px) {
  .flow__flex-chart-img {
    width: 15rem;
  }
}

.flow__flex-text {
  font-size: 3rem;
  padding-top: 1.5rem;
  width: 40.5rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .flow__flex-text {
    font-size: 1.8rem;
    width: 17.5rem;
    padding-top: 3.5rem;
  }
}
.flow__flex-text-first {
  margin-bottom: 5.2rem;
}
@media (max-width: 767px) {
  .flow__flex-text-first {
    margin-bottom: 9rem;
  }
}
.flow__flex-text-second {
  margin-bottom: 6.9rem;
}
@media (max-width: 767px) {
  .flow__flex-text-second {
    margin-bottom: 10rem;
  }
}
.flow__flex-text-third {
  margin-bottom: 8.2rem;
}
@media (max-width: 767px) {
  .flow__flex-text-third {
    margin-bottom: 9.5rem;
  }
}

.flow__flex-picture-img-first {
  width: 23rem;
  margin-top: 8.4rem;
  margin-bottom: 3rem;
  margin-left: -2.9rem;
}
@media (max-width: 767px) {
  .flow__flex-picture-img-first {
    width: 7rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    position: absolute;
    top: 12rem;
    left: 75%;
  }
}

.flow__flex-picture-img-second {
  width: 21rem;
  margin-left: -3.2rem;
}
@media (max-width: 767px) {
  .flow__flex-picture-img-second {
    width: 6.7rem;
    margin-left: 0rem;
    position: absolute;
    bottom: 15rem;
    left: 75%;
  }
}

#CTA {
  background-image: url(../img-file/PC-CTA-bg.png);
}

.CTA {
  max-width: 146rem;
  padding-top: 2.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 3.4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .CTA {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.CTA__area {
  max-width: 88rem;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .CTA__area {
    width: 35.5rem;
    max-width: unset;
    border-radius: 15rem;
    padding-bottom: 0rem;
  }
}

.CTA__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .CTA__subtitle {
    font-size: 1.6rem;
    column-gap: 1rem;
  }
}

.CTA-line-left,
.CTA-line-right {
  width: 2.3rem;
}

.CTA__title {
  font-size: 4rem;
  color: #1EAA39;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .CTA__title {
    font-size: 3rem;
  }
}

.CTA__text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .CTA__text {
    font-size: 1.4rem;
    text-align: left;
    width: 29rem;
    margin: 0 auto 2rem;
  }
}

.CTA__area-btn {
  width: 45rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7rem;
  padding-left: 8rem;
  padding-block: 1.5rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .CTA__area-btn {
    width: 30rem;
    font-size: 1.8rem;
    column-gap: 1rem;
    padding-left: 0rem;
    padding-block: 2rem;
  }
}

.CTA__area-btn:hover {
  opacity: 0.7;
}

.CTA__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.CTA__arrow::before,
.CTA__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  .CTA__arrow::before,
  .CTA__arrow::after {
    top: 50%;
  }
}

.CTA__arrow::before {
  transform: rotate(45deg);
}

.CTA__arrow::after {
  transform: rotate(-45deg);
}

.recommend {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 16.9rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recommend {
    padding-top: 7rem;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.recommend__board-img {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .recommend__board-img {
    width: 100%;
    margin: 0 auto 5rem;
    max-width: 500px;
  }
}

.recommend__text-wrap {
  position: relative;
  z-index: 2;
  margin-top: -42rem;
  margin-inline: auto;
  width: 50rem;
}
@media (max-width: 767px) {
  .recommend__text-wrap {
    width: 100%;
    margin-top: -46rem;
    max-width: 500px;
  }
}

.recommend__title {
  margin-bottom: 3.3rem;
  letter-spacing: 0.1rem;
}
.recommend__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .recommend__title h2 {
    font-size: 2.8rem;
  }
}
.recommend__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.recommend__flex-item {
  display: flex;
  justify-content: left;
  align-items: center;
  column-gap: 2.7rem;
  margin-bottom: 2.4rem;
  text-align: left;
}
@media (max-width: 767px) {
  .recommend__flex-item {
    column-gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.recommend__flex-item-img {
  width: 2.8rem;
}
@media (max-width: 767px) {
  .recommend__flex-item-img {
    width: 2rem;
    flex-shrink: 0;
  }
}

.recommend__flex-item-text {
  font-size: 2.4rem;
  letter-spacing: 0.06rem;
}
@media (max-width: 767px) {
  .recommend__flex-item-text {
    font-size: 1.8rem;
    flex: 1;
  }
}

#feature {
  background-color: #E6EFF3;
}

.feature {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 6.9rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .feature {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.feature__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .feature__title {
    margin-bottom: 3rem;
  }
}
.feature__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .feature__title h2 {
    font-size: 2.8rem;
  }
}
.feature__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.feature__box {
  max-width: 110rem;
  margin: 0 auto 3rem;
}
@media (max-width: 767px) {
  .feature__box {
    max-width: unset;
    width: 33.5rem;
  }
}

.feature__flex {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3.2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature__flex {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

.feature__flex-number {
  width: 5.5rem;
  padding-top: 0.6rem;
}
@media (max-width: 767px) {
  .feature__flex-number {
    width: 4rem;
    max-width: calc(50% - 10px);
    padding-top: unset;
  }
}

.feature__flex-text {
  line-height: 1.5;
  padding-top: 0.8rem;
  width: 62.8rem;
}
@media (max-width: 767px) {
  .feature__flex-text {
    order: 1;
    width: 100%;
  }
}
.feature__flex-text h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .feature__flex-text h3 {
    font-size: 2rem;
    letter-spacing: 0rem;
  }
}
.feature__flex-text p {
  font-size: 1.8rem;
  padding-left: 2.9rem;
  letter-spacing: 0.06rem;
}
@media (max-width: 767px) {
  .feature__flex-text p {
    font-size: 1.6rem;
    padding-left: 0rem;
    letter-spacing: 0rem;
  }
}

.feature__flex-img {
  width: 30rem;
}
@media (max-width: 767px) {
  .feature__flex-img {
    width: 24.8rem;
    width: 75%;
  }
}

.feature__flex-second {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  column-gap: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature__flex-second {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

.feature__flex-third {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  column-gap: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature__flex-third {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

.feature__flex-fourth {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  column-gap: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature__flex-fourth {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

.feature__flex-fifth {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  column-gap: 2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature__flex-fifth {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

.price {
  max-width: 120rem;
  padding-top: 4rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .price {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.price__title {
  margin-bottom: 2.4rem;
  letter-spacing: 0.1rem;
}
.price__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .price__title h2 {
    font-size: 2.8rem;
  }
}
.price__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.price__text {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05rem;
  margin-bottom: 3.8rem;
}
@media (max-width: 767px) {
  .price__text {
    font-size: 1.6rem;
    width: 33.5rem;
    margin-inline: auto;
  }
}

.price__img {
  max-width: 60rem;
  margin: 0 auto;
  /* 中央揃え */
  transform: translateX(-7rem);
}
@media (max-width: 767px) {
  .price__img {
    width: 30rem;
    transform: translateX(-2rem);
    margin-bottom: 2rem;
  }
}

.price__attention {
  font-size: 1.4rem;
  text-align: center;
  margin-top: -1.1rem;
}
@media (max-width: 767px) {
  .price__attention {
    font-size: 1.2rem;
    text-align: left;
    margin-inline: auto;
    width: 35rem;
  }
}

#feature-second {
  background-color: #E6EFF3;
}

.feature-second {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 6.9rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .feature-second {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.feature-second__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .feature-second__title {
    margin-bottom: 3rem;
  }
}
.feature-second__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .feature-second__title h2 {
    font-size: 2.8rem;
  }
}
.feature-second__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.feature-second__text {
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.05rem;
  margin-bottom: 3.6rem;
  padding-left: 11rem;
  padding-right: 12rem;
}
@media (max-width: 767px) {
  .feature-second__text {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 33.5rem;
    margin: 0 auto 3rem;
  }
}

.feature-second__box {
  max-width: 110rem;
  margin: 0 auto 3rem;
}
@media (max-width: 767px) {
  .feature-second__box {
    width: 35.5rem;
    background-color: #fff;
  }
}

.feature-second__flex {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 3rem;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 4.6rem;
  padding-bottom: 2.2rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .feature-second__flex {
    width: 35.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.feature-second__flex-img {
  width: 30rem;
  min-width: 30rem;
}
@media (max-width: 767px) {
  .feature-second__flex-img {
    width: 24.6rem;
    min-width: unset;
    order: 1;
  }
}

.feature-second__flex-text-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 2rem;
  flex: 1;
  width: 68rem;
}
@media (max-width: 767px) {
  .feature-second__flex-text-wrap {
    display: none;
  }
}

.feature-second__flex-number {
  width: 5.2rem;
  padding-top: 1.2rem;
}
@media (max-width: 767px) {
  .feature-second__flex-number {
    width: 4rem;
    max-width: calc(50% - 10px);
    padding-top: unset;
  }
}

.feature-second__flex-text {
  line-height: 1.5;
  padding-top: 0.8rem;
  flex: 1;
}
@media (max-width: 767px) {
  .feature-second__flex-text {
    width: 100%;
    padding-top: 0rem;
    flex: unset;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
  }
}
.feature-second__flex-text h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03rem;
}
@media (max-width: 767px) {
  .feature-second__flex-text h3 {
    font-size: 2rem;
    letter-spacing: 0rem;
  }
}
.feature-second__flex-text p {
  font-size: 1.8rem;
  padding-left: 2rem;
  letter-spacing: 0.06rem;
}
@media (max-width: 767px) {
  .feature-second__flex-text p {
    font-size: 1.6rem;
    padding-left: 0rem;
    letter-spacing: 0rem;
  }
}

#cases {
  background-color: #E6EFF3;
}

.cases {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 8.8rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cases {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.cases__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .cases__title {
    margin-bottom: 3rem;
  }
}
.cases__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .cases__title h2 {
    font-size: 2.8rem;
  }
}
.cases__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.cases__flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 2.5rem;
}
@media (max-width: 767px) {
  .cases__flex {
    flex-direction: column;
    row-gap: 2.5rem;
  }
}

.case__flex-box {
  border-radius: 1rem;
}
.case__flex-box h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.7rem;
}

.case__flex-box-item {
  box-shadow: 1px 1px 10px -5px #777777;
  border-radius: 1rem;
  width: 33.5rem;
  margin: 0 auto;
}

.case__img {
  display: block;
  width: 35rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .case__img {
    width: 33.5rem;
    margin: 0 auto;
  }
}

.case__img:hover {
  opacity: 0.5;
}

.case__text-wrap {
  background-color: #F9F6F0;
  width: 35rem;
  padding-top: 2rem;
  padding-inline: 2rem;
  padding-bottom: 5rem;
  font-size: 2rem;
  border-radius: 0 0 1rem 1rem;
  height: 37rem;
}
@media (max-width: 767px) {
  .case__text-wrap {
    width: 33.5rem;
    margin: 0 auto;
    height: auto;
  }
}

.case__comment {
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .case__comment {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
}

.case__industry {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .case__industry {
    font-size: 1.8rem;
  }
}
.case__industry span {
  display: inline-block;
  background-color: #E2EDF5;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .case__industry span {
    font-size: 1.8rem;
  }
}

.case__info {
  font-size: 1.4rem;
}

.message {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 8.9rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .message {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.message__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .message__title {
    margin-bottom: 3rem;
  }
}
.message__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .message__title h2 {
    font-size: 2.8rem;
  }
}
.message__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.message__flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-left: 11rem;
  padding-right: 11rem;
}
@media (max-width: 767px) {
  .message__flex {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.message__flex-text {
  flex: 1;
}
.message__flex-text h3 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2.3rem;
}
@media (max-width: 767px) {
  .message__flex-text h3 {
    font-size: 2rem;
  }
}

.message__flex-info {
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
  padding-right: 4.5rem;
  line-height: 1.45;
  margin-bottom: 4.4rem;
}
@media (max-width: 767px) {
  .message__flex-info {
    font-size: 1.6rem;
    padding-right: 0rem;
  }
}

.message-name {
  font-size: 2rem;
  text-align: right;
  padding-right: 5.2rem;
}
@media (max-width: 767px) {
  .message-name {
    font-size: 1.8rem;
    padding-right: 0rem;
  }
}

.message__flex-img {
  width: 33rem;
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .message__flex-img {
    width: 28.5rem;
    margin-top: 0rem;
    margin-block-start: 2rem;
    margin: 0 auto;
  }
}

#members {
  background: linear-gradient(to bottom right, rgba(30, 170, 57, 0.1), rgba(0, 159, 232, 0.1));
}

.members {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 12.8rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .members {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.members__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .members__title {
    margin-bottom: 3rem;
  }
}
.members__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .members__title h2 {
    font-size: 2.8rem;
  }
}
.members__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.members__wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5.9rem;
  row-gap: 4.1rem;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .members__wrap {
    flex-direction: column;
    width: 33.5rem;
    margin: 0 auto;
  }
}

.members__box {
  padding-top: 4rem;
  padding-bottom: 4.2rem;
  padding-left: 5rem;
  padding-right: 6rem;
  background-color: #fff;
  border-radius: 1rem;
  box-sizing: border-box;
  max-width: calc(48% - 10px);
  /* 最大幅を50%に設定 */
  box-shadow: 1px 1px 10px -5px #777777;
}
@media (max-width: 767px) {
  .members__box {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: unset;
    width: 33.5rem;
  }
}
.members__box h3 {
  font-size: 2.4rem;
  color: #033151;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .members__box h3 {
    font-size: 2rem;
  }
}

.members__box:after {
  content: "";
  display: block;
  width: 48%;
  height: 0;
}
@media (max-width: 767px) {
  .members__box:after {
    display: none;
  }
}

.members__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 3rem;
  column-gap: 2rem;
}
@media (max-width: 767px) {
  .members__flex {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.members__img {
  width: 18rem;
  max-width: 18rem;
  margin-bottom: 2.8rem;
  flex: 1;
}
@media (max-width: 767px) {
  .members__img {
    width: 14rem;
    max-width: 14rem;
  }
}

.members__text {
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .members__text {
    padding-top: 3.5rem;
  }
}

.members__job {
  font-size: 1.8rem;
  background-color: #E2EDF5;
  border-radius: 0.1rem;
  text-align: center;
  margin-bottom: 2.9rem;
  margin-right: -1rem;
  width: 17rem;
  padding-block: 0.25rem;
}
@media (max-width: 767px) {
  .members__job {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

.members__name {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin-top: -1rem;
  padding-left: 1.9rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .members__name {
    font-size: 2rem;
    padding-left: 1rem;
  }
}

.members__en {
  font-size: 1rem;
  text-align: center;
  margin-top: -0.5rem;
  padding-left: 1.9rem;
}
@media (max-width: 767px) {
  .members__en {
    padding-left: 1rem;
  }
}

.members__info {
  font-size: 1.6rem;
  line-height: 1.3;
  padding-left: 1rem;
  letter-spacing: 0.04rem;
}

.members__text02 {
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .members__text02 {
    padding-top: 3rem;
  }
}

.members__job02 {
  font-size: 1.8rem;
  background-color: #E2EDF5;
  padding: 0.5rem 2rem;
  border-radius: 0.1rem;
  text-align: center;
  margin-bottom: 1.6rem;
  margin-right: -1rem;
}
@media (max-width: 767px) {
  .members__job02 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-inline: 3.5rem;
  }
}

.members__adjust07 {
  padding-left: 0rem;
  letter-spacing: -0.1rem;
}

.plan {
  max-width: 128rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .plan {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: -20rem;
  }
}

.plan__flex {
  display: flex;
  justify-content: right;
  align-items: center;
}
@media (max-width: 767px) {
  .plan__flex {
    flex-direction: column;
  }
}

.plan__text {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 2.3rem;
  position: relative;
  z-index: 2;
  margin-right: -15.9rem;
}
@media (max-width: 767px) {
  .plan__text {
    column-gap: 1rem;
    width: 33.5rem;
    margin-right: 0rem;
  }
}

.plan__line-img {
  width: 0.5rem;
}
@media (max-width: 767px) {
  .plan__line-img {
    width: 1rem;
  }
}
.plan__line-img img {
  padding-top: 1.6rem;
}
@media (max-width: 767px) {
  .plan__line-img img {
    padding-top: 1.2rem;
  }
}

.plan__title h2 {
  font-size: 4rem;
  color: #E1AC1B;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .plan__title h2 {
    font-size: 2.6rem;
    margin-bottom: 10rem;
  }
}
.plan__title h2 span {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .plan__title h2 span {
    font-size: 2rem;
  }
}
.plan__title p {
  font-size: 1.8rem;
  max-width: 62rem;
  padding-left: 9rem;
  line-height: 1.45;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .plan__title p {
    font-size: 1.6rem;
    padding-left: 0rem;
  }
}

.plan__img {
  width: 61rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .plan__img {
    width: 24.4rem;
    padding-top: unset;
    transform: translate(5rem, -25rem);
  }
}

#follow {
  background: linear-gradient(to bottom right, rgba(30, 170, 57, 0.1), rgba(0, 159, 232, 0.1));
}

.follow {
  position: fixed;
  z-index: 1000;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.follow__btn-text {
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 0.1px #FFF;
}
.follow__btn-text p {
  padding-top: 0.6rem;
}

.follow__btn-text-left,
.follow__btn-text-right {
  width: 1rem;
}

.follow__btn {
  width: 45rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10rem;
  padding-left: 12rem;
  padding-block: 1.5rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .follow__btn {
    width: 33.5rem;
    column-gap: 3rem;
    padding-left: 4rem;
  }
}
.follow__btn:hover {
  opacity: 0.7;
}

.follow__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.follow__arrow::before,
.follow__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.follow__arrow::before {
  transform: rotate(45deg);
}

.follow__arrow::after {
  transform: rotate(-45deg);
}

.pagetop {
  position: fixed;
  z-index: 1000;
  bottom: min(13.4699853587vw, 184px);
  right: min(2.9282576867vw, 40px);
  cursor: pointer;
  border-width: 0;
  background-color: unset;
}
@media (max-width: 767px) {
  .pagetop {
    bottom: min(16vw, 60px);
  }
}

.pagetop__img {
  display: block;
  max-width: 7rem;
  width: 5rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .pagetop__img {
    width: min(13.3333333333vw, 50px);
  }
}

.pagetop__img:hover {
  opacity: 0.7;
}

.company__title {
  background-image: url(../img-file/PC-company-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.company__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .company__title h2 {
    font-size: 2.8rem;
  }
}
.company__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.company {
  max-width: 128rem;
  padding-top: 7rem;
  padding-left: 30rem;
  padding-right: 30rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .company {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
  }
}

.company__message {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 6rem;
}
@media (max-width: 767px) {
  .company__message {
    text-align: left;
  }
}

.company__info {
  width: 60rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .company__info {
    width: 33.5rem;
    width: 100%;
  }
}

.company__item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 6rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .company__item {
    column-gap: 3rem;
  }
}

.company__subtitle {
  text-align: left;
  flex: 1;
}

.company__content {
  text-align: left;
  flex: 2;
}

.company__btn {
  width: 31.5rem;
  color: #FFF;
  background-color: #16669E;
  text-align: center;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0rem;
  padding-left: 1.5rem;
  transition: all 0.5s;
  padding-block: 1.2rem;
  margin-top: 6rem;
}
.company__btn:hover {
  opacity: 0.7;
}
.company__btn p {
  font-size: 1.6rem;
}

.company__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
  margin-left: 2rem;
}

.company__arrow::before,
.company__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.company__arrow::before {
  transform: rotate(45deg);
}

.company__arrow::after {
  transform: rotate(-45deg);
}

.privacy-policy__title {
  background-image: url(../img-file/PC-policy-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.privacy-policy__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .privacy-policy__title h2 {
    font-size: 2.8rem;
  }
}
.privacy-policy__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.privacy-policy__new {
  max-width: 168rem;
  padding-top: 1.6rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .privacy-policy__new {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.privacy-policy__item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .privacy-policy__item h3 {
    font-size: 1.8rem;
  }
}
.privacy-policy__item p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .privacy-policy__item p {
    font-size: 1.4rem;
  }
}
.privacy-policy__item ul {
  font-size: 1.6rem;
  margin-top: -2rem;
  margin-bottom: 2.7rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .privacy-policy__item ul {
    font-size: 1.4rem;
  }
}

.privacy-policy__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  transition: all 0.5s;
}

.privacy-policy__btn:hover {
  opacity: 0.5;
}

.pp__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.pp__arrow::before,
.pp__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  .pp__arrow::before,
  .pp__arrow::after {
    top: 50%;
  }
}

.pp__arrow::before {
  transform: rotate(45deg);
}

.pp__arrow::after {
  transform: rotate(-45deg);
}

.site-policy__title {
  background-image: url(../img-file/PC-policy-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.site-policy__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .site-policy__title h2 {
    font-size: 2.8rem;
  }
}
.site-policy__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.site-policy {
  max-width: 168rem;
  padding-top: 1.6rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .site-policy {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-policy__item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .site-policy__item h3 {
    font-size: 1.8rem;
  }
}
.site-policy__item p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .site-policy__item p {
    font-size: 1.4rem;
  }
}
.site-policy__item ul {
  font-size: 1.6rem;
  margin-bottom: 2.7rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .site-policy__item ul {
    font-size: 1.4rem;
  }
}

.site-policy__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  transition: all 0.5s;
}

.site-policy__btn:hover {
  opacity: 0.5;
}

.site__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.site__arrow::before,
.site__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  .site__arrow::before,
  .site__arrow::after {
    top: 50%;
  }
}

.site__arrow::before {
  transform: rotate(45deg);
}

.site__arrow::after {
  transform: rotate(-45deg);
}

.contact-form__title {
  background-image: url(../img-file/PC-contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.contact-form__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form__title h2 {
    font-size: 2.8rem;
  }
}
.contact-form__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.contact-form {
  max-width: 130rem;
  padding-top: 2rem;
  padding-left: 8rem;
  padding-right: 8rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact-form {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contact-form__info {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.05rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .contact-form__info {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0rem;
  }
}

.contact-form__item {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-form__item {
    font-size: 1.6rem;
  }
}

.contact-form__name,
.contact-form__company,
.contact-form__tel,
.contact-form__mail,
.contact-form__consultation,
.contact-form__content {
  display: flex;
  justify-content: left;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.absolutely {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #FCB900;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .absolutely {
    font-size: 1.6rem;
  }
}

.optional {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #888888;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .optional {
    font-size: 1.6rem;
  }
}

.contact-form__item-input {
  width: 100%;
  height: 5.5rem;
  border-radius: 1rem;
  border: 1px solid #BBC9C9;
  padding: 1rem;
  font-size: 1.6rem;
  background-color: #F8F8F8;
}

.contact-form__item-textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #BBC9C9;
  padding: 1rem;
  font-size: 1.6rem;
  background-color: #F8F8F8;
  margin-bottom: 2rem;
}

.contact-form__privacy-policy {
  width: 100%;
  max-width: 55rem;
  letter-spacing: 0.05rem;
  font-size: 2rem;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  -webkit-display: flex !important;
  -webkit-justify-content: center !important;
  -webkit-align-items: center !important;
  -webkit-text-align: center !important;
  margin: 0 auto 1.7rem;
}
@media (max-width: 767px) {
  .contact-form__privacy-policy {
    margin-bottom: 1.9rem;
    font-size: 1.4rem;
  }
}
.contact-form__privacy-policy p {
  text-align: center;
  letter-spacing: 0;
}

.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  padding-left: 3rem;
  position: relative;
  cursor: pointer;
  -webkit-display: flex;
  -webkit-align-items: center;
  -webkit-padding-left: 3rem;
  -webkit-position: relative;
  -webkit-cursor: pointer;
}

.wpcf7-list-item-label::before {
  display: block;
  content: "";
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0rem;
  width: 1.7rem;
  /*チェックボックスの横幅*/
  height: 1.7rem;
  /*チェックボックスの縦幅*/
  position: absolute;
  top: 55%;
  left: -1rem;
  transform: translateY(-50%);
}

.wpcf7-list-item-label::after {
  display: block;
  content: "";
  border-bottom: 2.5px solid #fff;
  /*チェックの太さ*/
  border-left: 2.5px solid #fff;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 0.7rem;
  /*チェックの高さ*/
  width: 0.9rem;
  /*チェックの横幅*/
  position: absolute;
  top: 45%;
  transform: translateY(-50%) rotate(-45deg);
  /*チェック時の位置調整*/
  left: -0.7rem;
  /*チェック時の位置調整*/
}

/*リセット */
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-opacity: 1;
}

.wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  background: #16669E;
  -webkit-background: #16669E;
}

.contact-form__pp-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.pp-first {
  border-bottom: 1px solid #333333;
  transition: all 0.5s;
}
.pp-first:hover {
  opacity: 0.5;
}

.contact-form__item-btn-wrap {
  text-align: center;
}

.contact-form__item-btn {
  position: relative;
  display: inline-block;
}

.contact-form__item-btn::after {
  position: absolute;
  content: "";
  background-image: url(../img-file/PC-contact-form-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 2rem;
  height: 1.6rem;
  top: 2.4rem;
  transform: translateY(-50%);
  right: 2rem;
}

.contact-form__btn {
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  transition: all 0.5s;
  margin-bottom: 5rem;
}

.contact-form__btn:hover {
  opacity: 0.5;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact__recaptcha-pp {
  border-bottom: 1px solid #333333;
  transition: all 0.5s;
}
.contact__recaptcha-pp:hover {
  opacity: 0.5;
}

.contact__recaptcha-rule {
  border-bottom: 1px solid #333333;
  transition: all 0.5s;
}
.contact__recaptcha-rule:hover {
  opacity: 0.5;
}

.contact-form__spam-note {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.breadcrumbs {
  margin-bottom: 4.2rem;
}

.breadcrumbs-text-area {
  font-size: 1.4rem;
  color: #777;
}

.not-found {
  max-width: 136.6rem;
  margin: 0 auto;
  padding-top: 7.9rem;
  padding-bottom: 18rem;
  padding-left: 18.3rem;
  padding-right: 18.3rem;
}
@media (max-width: 767px) {
  .not-found {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 10rem;
  }
}

.not-found__title {
  text-align: center;
  margin-bottom: 5.1rem;
}
@media (max-width: 767px) {
  .not-found__title {
    margin-bottom: 2rem;
  }
}
.not-found__title h2 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .not-found__title h2 {
    font-size: 3rem;
    margin-bottom: 0rem;
  }
}
.not-found__title p {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .not-found__title p {
    font-size: 1.6rem;
  }
}

.not-found__text {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3.9rem;
}

.not-found__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  transition: all 0.5s;
}

.not-found__btn:hover {
  opacity: 0.5;
}

.not-found__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.not-found__arrow::before,
.not-found__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  .not-found__arrow::before,
  .not-found__arrow::after {
    top: 50%;
  }
}

.not-found__arrow::before {
  transform: rotate(45deg);
}

.not-found__arrow::after {
  transform: rotate(-45deg);
}

.movie_container {
  width: 100%;
  padding: 0 10px;
}
.movie_container .movie_inner {
  width: fit-content;
  margin: 30px auto;
}
.movie_container .movie_inner iframe {
  aspect-ratio: 16/9;
  width: 700px;
}
@media screen and (max-width: 768px) {
  .movie_container .movie_inner iframe {
    aspect-ratio: 9/16;
    width: 300px;
  }
}

.news_container {
  width: 100%;
  padding: 0 10px 80px;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
@media (max-width: 767px) {
  .news_container {
    padding: 40px 0;
  }
}

.news__title {
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
}

.news_inner {
  width: fit-content;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .news_inner {
    border-radius: 6px;
  }
}

.news_item {
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.3s ease;
}
.news_item:last-child {
  border-bottom: none;
}
.news_item:hover {
  background-color: #f8f9fa;
}
.news_item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 25px 30px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .news_item a {
    padding: 20px 25px;
  }
}
@media (max-width: 767px) {
  .news_item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

.news_item_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  flex: 1;
  margin-right: 20px;
}
.news_item:hover .news_item_title {
  color: #007bff;
}
@media (max-width: 767px) {
  .news_item_title {
    font-size: 15px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.news_item_date {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-left: 20px;
  min-width: 150px;
}
@media (max-width: 767px) {
  .news_item_date {
    font-size: 13px;
    padding-left: 18px;
    min-width: auto;
  }
}

.news_inner p {
  text-align: center;
  font-size: 16px;
  color: #6c757d;
  padding: 40px 20px;
  font-style: italic;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .news_inner p {
    font-size: 14px;
    padding: 30px 20px;
    border-radius: 6px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news_inner {
  animation: fadeInUp 0.6s ease-out;
}

.news_item:nth-child(1) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.news_item:nth-child(2) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.news_item:nth-child(3) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.news_container {
  position: relative;
}
.news_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.news_item {
  position: relative;
}
.news_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.news_item:hover::after {
  transform: scaleX(1);
}

#FV {
  background: #b8d8f0;
}

.fv2 {
  position: relative;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  overflow: hidden;
}

.fv2__bg-wrap {
  display: block;
  width: 100%;
  line-height: 0;
  z-index: 0;
}

.fv2__bg-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.82) brightness(0.96);
}

.fv2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 100, 200, 0.72) 0%, rgba(0, 100, 200, 0.65) 28%, rgba(0, 100, 200, 0.42) 50%, rgba(0, 100, 200, 0.08) 72%, transparent 100%);
}
@media (max-width: 767px) {
  .fv2__overlay {
    background: rgba(0, 100, 200, 0.55);
  }
}

.fv2__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  max-width: 700px;
  padding: 0 3rem 0 5vw;
}
@media (min-width: 1400px) {
  .fv2__content {
    padding-left: 10vw;
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .fv2__content {
    max-width: 100%;
    padding: 2rem 2.4rem;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}

.fv2__heading {
  font-size: clamp(2.2rem, 2.8vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .fv2__heading {
    white-space: normal;
  }
}

.fv2__em {
  font-size: 1.7em;
  letter-spacing: 0.04em;
  display: inline-block;
  line-height: 1.1;
  vertical-align: baseline;
  color: #fff;
}

.fv2__kana {
  letter-spacing: 0.02em;
}

.fv2__br {
  display: none;
}
@media (max-width: 1100px) {
  .fv2__br {
    display: inline;
  }
}
@media (max-width: 767px) {
  .fv2__br {
    display: inline;
  }
}

@media (max-width: 767px) {
  .fv2__heading {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
}
.fv2__cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .fv2__cta-wrap {
    justify-content: center;
  }
}

.fv2__free {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.35rem 1.1rem;
  border-radius: 2rem;
}

.fv2__cta-btn {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 2.8rem;
  border-radius: 3rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.fv2__cta-btn:hover {
  transform: translateY(-2px);
  background: #1e8449;
  box-shadow: 0 8px 28px rgba(39, 174, 96, 0.55);
  color: #fff;
  text-decoration: none;
}

.fv2__badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fv2__badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid #009fe8;
  padding: 0.9rem 1.4rem;
  max-width: 400px;
}
@media (max-width: 767px) {
  .fv2__badge {
    max-width: 100%;
  }
}

.fv2__badge-medal {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #009fe8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv2__badge-star {
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

.fv2__badge-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fv2__badge-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.fv2__badge-main {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.fv2__emblems {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.fv2__emblem {
  position: relative;
}

.fv2__emblem-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 340px;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #fffbe8 0%, #fff3c0 50%, #fde88a 100%);
  border: 2px solid #c8960c;
  box-shadow: 0 0 0 4px rgba(200, 150, 12, 0.2), 0 3px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  white-space: nowrap;
}
.fv2__emblem-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 56px;
  border: 1.5px dashed rgba(200, 150, 12, 0.45);
  pointer-events: none;
}

.fv2__emblem-star {
  font-size: 22px;
  color: #c8960c;
  line-height: 1;
  flex-shrink: 0;
}

.fv2__emblem-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fv2__emblem-label {
  font-size: 10px;
  font-weight: 700;
  color: #8a6500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.fv2__emblem-main {
  font-size: 16px;
  font-weight: 900;
  color: #1a3a6e;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.fv2__emblem-sub {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: #1a3a6e;
  color: #fff;
  padding: 1px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .fv2__emblems {
    align-items: center;
  }
  .fv2__emblem-ring {
    width: 290px;
    padding: 8px 16px;
  }
  .fv2__emblem-main {
    font-size: 14px;
  }
}
.worried__heading {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .worried__heading {
    font-size: 2rem;
    text-align: left;
  }
}

.worried__inner {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .worried__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.worried__img {
  flex: 0 0 42%;
}
.worried__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}

.worried__text {
  flex: 1;
}
.worried__text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 767px) {
  .worried__text p {
    font-size: 1.5rem;
  }
}

.plan__title p {
  padding-left: 0 !important;
  font-size: 1.6rem !important;
  max-width: unset !important;
}

.plan__title p:first-of-type {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #333;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .plan__title p:first-of-type {
    font-size: 1.8rem !important;
  }
}

.flow__title-note {
  color: #333;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.flow__step-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a3a6e;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .flow__step-title {
    font-size: 1.8rem;
  }
}

.flow__step-sub {
  font-size: 1.3rem;
  color: #009fe8;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.flow__step-desc {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.75;
}

.flow__step-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.flow__step-list li {
  font-size: 1.35rem;
  color: #555;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.7;
}
.flow__step-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #009fe8;
}

.flow__step-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
  position: relative;
}
.flow__step-row:nth-child(1) {
  z-index: 4;
}
.flow__step-row:nth-child(2) {
  z-index: 3;
}
.flow__step-row:nth-child(3) {
  z-index: 2;
}
.flow__step-row:nth-child(4) {
  z-index: 1;
}
.flow__step-row:last-child .flow__step-left::after {
  display: none;
}

.flow__step-left {
  flex: 0 0 120px;
  background: linear-gradient(160deg, #f07a20 0%, #e05010 60%, #c03008 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  position: relative;
  min-height: 160px;
}
@media (max-width: 767px) {
  .flow__step-left {
    flex: 0 0 80px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  }
}

.flow__step-badge {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow__step-month {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.flow__step-month span {
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .flow__step-month {
    font-size: 1.6rem;
  }
}

.flow__step-content {
  flex: 1;
  padding: 2.4rem 3rem;
  background: transparent;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .flow__step-content {
    padding: 1.6rem 1.6rem;
  }
}

@media (max-width: 767px) {
  .flow__step-left {
    min-height: 140px;
  }
}
.price__flex {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .price__flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.price__flex-img {
  flex: 0 0 42%;
}
.price__flex-img img {
  width: 100%;
  border-radius: 0.8rem;
}

.price__flex-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: none;
}

.price__amount {
  margin-bottom: 2rem;
}

.price__amount-num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  gap: 0.4rem;
}

.price__amount-big {
  font-size: 8rem;
  color: #e00;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .price__amount-big {
    font-size: 5.5rem;
  }
}

.price__attention {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

.footer__nav--left ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.message__lead {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 700;
  color: #1a3a6e;
  line-height: 1.5;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .message__lead {
    font-size: 1.9rem;
  }
}

.message__interview-link {
  margin-top: 2.4rem;
}

.message__interview-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.8rem;
  border: 2px solid #1a3a6e;
  color: #1a3a6e;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.message__interview-btn:hover {
  background: #1a3a6e;
  color: #fff;
}

.message__interview-arrow {
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.message__interview-btn:hover .message__interview-arrow {
  transform: translateX(4px);
}

.flow__title h2,
.cases__title h2,
.members__title h2,
.price__title h2,
.worried__title h2,
.message__title h2,
.company__title h2,
.feature__title h2 {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .flow__title h2,
  .cases__title h2,
  .members__title h2,
  .price__title h2,
  .worried__title h2,
  .message__title h2,
  .company__title h2,
  .feature__title h2 {
    font-size: 2.4rem;
  }
}

.CTA__heading {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .CTA__heading {
    font-size: 2.4rem;
  }
}

.plan__title h2 {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .plan__title h2 {
    font-size: 2.4rem;
  }
}

.flow__title-note {
  color: #333 !important;
  font-size: 1.3rem !important;
  font-weight: 400;
}

.flow__main {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 767px) {
  .flow__main {
    flex-direction: column;
    gap: 2rem;
  }
}

.flow__step-list {
  flex: 1;
  min-width: 0;
}

.flow__step-month {
  white-space: nowrap;
}

.flow__illust-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 2rem;
  flex: 0 0 180px;
  width: 180px;
  padding-top: 0;
}
@media (max-width: 767px) {
  .flow__illust-col {
    flex-direction: row;
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
}

.flow__illust-first,
.flow__illust-second {
  width: 140px;
}
.flow__illust-first img,
.flow__illust-second img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .flow__illust-first,
  .flow__illust-second {
    width: 110px;
  }
}

.worried__text,
.plan__text,
.flow__text,
.members__lead {
  text-align: left;
}
.worried__text p,
.plan__text p,
.flow__text p,
.members__lead p {
  text-align: left;
}

.contact-form__not-sales {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form__spam-note {
  font-size: 1.2rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.contact-form__checkbox .wpcf7-list-item {
  display: block;
  margin: 0.5rem 0;
}
.contact-form__checkbox .wpcf7-list-item label {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.contact-form__checkbox .wpcf7-list-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}

.banner-strip {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.6rem 2rem 2rem;
}
.banner-strip--2 .banner-swiper {
  display: flex;
  gap: 2rem;
}
.banner-strip--2 .banner-swiper .swiper-wrapper {
  display: flex;
  gap: 2rem;
}
.banner-strip--2 .banner-swiper .banner-strip__item {
  flex: 1;
  min-width: 0;
}
.banner-strip--1 .banner-strip__item {
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .banner-strip {
    padding: 1.2rem 0 2rem;
  }
  .banner-strip .banner-swiper {
    display: block !important;
    overflow: hidden;
    padding: 0 0 2.4rem;
  }
  .banner-strip .banner-swiper .swiper-wrapper {
    display: flex;
    gap: 0;
  }
  .banner-strip .banner-swiper__pagination {
    text-align: center;
    margin-top: 0.8rem;
  }
  .banner-strip .banner-swiper__pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
  }
  .banner-strip .banner-swiper__pagination .swiper-pagination-bullet-active {
    background: #e05010;
  }
}

.banner-strip__item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .banner-strip__item {
    padding: 0 0.8rem;
  }
}

.seminar-banner__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #1a1a1a;
}
.seminar-banner__label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  border: 1px solid #e05010;
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  color: #e05010;
}
.seminar-banner__text {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}
.seminar-banner__img-wrap {
  margin: 0 auto 1.4rem;
  width: 100%;
  max-width: 320px;
  border-radius: 0.6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.seminar-banner__img-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 0.6rem;
}
.seminar-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e05010;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(224, 80, 16, 0.25);
}
.seminar-banner__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.seminar-banner__arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.seminar-banner__btn:hover .seminar-banner__arrow {
  transform: translateX(4px);
}

.seminar-info {
  margin-bottom: 2.4rem;
  border: 2px solid #e05010;
  border-radius: 0.8rem;
  overflow: hidden;
}
.seminar-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}
.seminar-info__table tr {
  border-bottom: 1px solid #f5ddd0;
}
.seminar-info__table tr:last-child {
  border-bottom: none;
}
.seminar-info__table th {
  background: #e05010;
  color: #fff;
  font-weight: 700;
  padding: 1rem 1.4rem;
  white-space: nowrap;
  width: 8em;
  font-size: 1.3rem;
  vertical-align: middle;
}
.seminar-info__table td {
  padding: 1rem 1.6rem;
  color: #333;
  line-height: 1.6;
  vertical-align: middle;
}

.seminar-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.4rem 2rem;
  background: #fff8f5;
  border-top: 3px solid #e05010;
}
.seminar-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #e05010;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.4rem 4rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(224, 80, 16, 0.3);
  letter-spacing: 0.04em;
}
.seminar-cta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.seminar-cta__icon {
  font-size: 1.6rem;
}

.fv-trust {
  background: #fffbe8;
  border-top: 2px solid #c8960c;
  border-bottom: 2px solid #c8960c;
  padding: 1.4rem 2rem;
}

.fv-trust__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.fv-trust__item {
  display: flex;
  align-items: center;
}

.fv-trust__emblem-ring {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2.4rem;
  border-radius: 3rem;
  border: 2px solid #c8960c;
  background: linear-gradient(135deg, #fffbe8 0%, #fff3c0 50%, #fde88a 100%);
  box-shadow: 0 2px 8px rgba(200, 150, 12, 0.18);
  white-space: nowrap;
}

.fv-trust__star {
  font-size: 2.2rem;
  color: #c8960c;
  flex-shrink: 0;
  line-height: 1;
}

.fv-trust__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fv-trust__label {
  font-size: 1.15rem;
  color: #8a6500;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.fv-trust__main {
  font-size: 1.7rem;
  font-weight: 900;
  color: #1a3a6e;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.fv-trust__sub {
  font-size: 1.1rem;
  font-weight: 700;
  background: #1a3a6e;
  color: #fff;
  padding: 0.2rem 0.9rem;
  border-radius: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .fv-trust__inner {
    gap: 1rem;
  }
  .fv-trust__emblem-ring {
    padding: 0.7rem 1.4rem;
    gap: 0.8rem;
  }
  .fv-trust__star {
    font-size: 1.8rem;
  }
  .fv-trust__main {
    font-size: 1.4rem;
  }
  .fv-trust__label {
    font-size: 1rem;
  }
}
.cases__lead {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  color: #333;
}
@media (max-width: 767px) {
  .cases__lead {
    font-size: 1.5rem;
    text-align: left;
  }
}

.cases-swiper {
  padding-left: 1rem;
  padding-right: 1rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 340px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.case-card__img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card__img img {
  transform: scale(1.06);
}

.case-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.4rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: #009fe8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.case-card__company-name {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.3;
}

.case-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a6e;
  line-height: 1.5;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.case-card__body {
  padding: 1.6rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.case-card__catch {
  display: none;
}

.case-card__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.3rem;
  font-weight: 600;
  color: #009fe8;
  gap: 0.4rem;
}

.case-card__arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.case-card:hover .case-card__arrow {
  transform: translateX(4px);
}

.cases__empty {
  text-align: center;
  color: #888;
  font-size: 1.6rem;
  padding: 4rem 0;
}

.cases-archive {
  padding: 6rem 0 8rem;
}
.cases-archive__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cases-archive__header {
  text-align: left;
  margin-bottom: 5rem;
}
.cases-archive__title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a3a6e;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
.cases-archive__title span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #009fe8;
  letter-spacing: 0.2em;
  margin-top: 0.4rem;
}
.cases-archive__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  text-align: left;
}
.cases-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.4rem;
}
@media (max-width: 1023px) {
  .cases-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cases-archive__list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.cases-archive__empty {
  text-align: center;
  color: #888;
  font-size: 1.6rem;
  padding: 4rem 0;
}
.cases-archive__cta {
  margin-top: 6rem;
  text-align: center;
  background: linear-gradient(135deg, #1a3a6e 0%, #009fe8 100%);
  border-radius: 1.2rem;
  padding: 4rem 2rem;
  color: #fff;
}
.cases-archive__cta p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.cases-archive__cta strong {
  color: #ffe066;
}
.cases-archive__cta a {
  display: inline-block;
  background: #fff;
  color: #1a3a6e;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 3.2rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cases-archive__cta a:hover {
  opacity: 0.85;
}

.cases-detail__wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}

.cases-detail__breadcrumb {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 3rem;
}
.cases-detail__breadcrumb a {
  color: #009fe8;
  text-decoration: none;
}
.cases-detail__breadcrumb a:hover {
  text-decoration: underline;
}

.section-more {
  text-align: center;
  margin-top: 2.4rem;
}

.section-more__btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  border: 2px solid #1a3a6e;
  color: #1a3a6e;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.section-more__btn:hover {
  background: #1a3a6e;
  color: #fff;
}

.cases-single {
  background: #fff;
}

.cases-single__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}

.cases-single__breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.cases-single__breadcrumb a {
  color: #009fe8;
  text-decoration: none;
}
.cases-single__breadcrumb a:hover {
  text-decoration: underline;
}

.cases-single__breadcrumb-sep {
  color: #ccc;
}

.cases-single__header {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cases-single__header {
    flex-direction: column;
    gap: 2rem;
  }
}

.cases-single__header-img {
  flex: 0 0 42%;
}
.cases-single__header-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.cases-single__header-body {
  flex: 1;
}

.cases-single__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.cases-single__tag--industry {
  background: #009fe8;
  color: #fff;
}

.cases-single__meta-tags {
  margin-bottom: 8px;
}

.cases-single__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cases-single__company {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cases-single__ext-link {
  font-size: 12px;
  color: #009fe8;
  text-decoration: none;
  border: 1px solid #009fe8;
  padding: 2px 10px;
  border-radius: 20px;
}
.cases-single__ext-link:hover {
  background: #009fe8;
  color: #fff;
}

.cases-single__info-table {
  width: 100%;
  font-size: 13px;
}

.cases-single__info-row {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}
.cases-single__info-row:first-child {
  border-top: 1px solid #e8e8e8;
}
.cases-single__info-row dt {
  flex: 0 0 100px;
  background: #f5f8fc;
  color: #1a3a6e;
  font-weight: 700;
  padding: 10px 12px;
  white-space: nowrap;
}
.cases-single__info-row dd {
  flex: 1;
  padding: 10px 12px;
  color: #333;
}

.cases-single__catch {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #1a3a6e;
  line-height: 1.6;
  border-left: 4px solid #009fe8;
  padding: 1rem 1.6rem;
  margin-bottom: 3rem;
  background: #f0f7ff;
  border-radius: 0 6px 6px 0;
}

.cases-single__body {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 5rem;
}
.cases-single__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 3rem 0 1rem;
  color: #1a3a6e;
}
.cases-single__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 2.4rem 0 0.8rem;
}
.cases-single__body p {
  margin-bottom: 1.4em;
}
.cases-single__body img {
  border-radius: 6px;
  margin: 1.6rem 0;
}

.cases-article-cta {
  background: linear-gradient(135deg, #1a3a6e 0%, #009fe8 100%);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  margin-bottom: 4rem;
}

.cases-article-cta__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.cases-article-cta__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cases-article-cta__btn {
  display: inline-block;
  background: #fff;
  color: #1a3a6e;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cases-article-cta__btn:hover {
  opacity: 0.85;
}

.cases-single__back {
  text-align: center;
}

.cases-single__back-btn {
  font-size: 14px;
  color: #009fe8;
  text-decoration: none;
}
.cases-single__back-btn:hover {
  text-decoration: underline;
}

.cases-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 58, 110, 0.96);
  backdrop-filter: blur(4px);
  z-index: 100;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cases-fixed-cta.is-visible {
  transform: translateY(0);
}

.cases-fixed-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cases-fixed-cta__text {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cases-fixed-cta__text {
    display: none;
  }
}

.cases-fixed-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #009fe8;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}
.cases-fixed-cta__btn:hover {
  background: #007fc0;
  color: #fff;
}

.members__lead {
  font-size: 1.7rem;
  line-height: 1.9;
  color: #333;
  max-width: 86rem;
  margin: 0 auto 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .members__lead {
    font-size: 1.5rem;
    text-align: left;
  }
}

.members-swiper {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2rem !important;
}
.members-swiper .swiper-slide {
  width: 200px;
}
@media (min-width: 768px) {
  .members-swiper .swiper-slide {
    width: 220px;
  }
}

.member-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 340px;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.member-card__photo {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
  position: relative;
}
.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s ease;
}

.member-card:hover .member-card__photo img {
  transform: scale(1.05);
}

.member-card__name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.68));
  padding: 24px 12px 10px;
}

.member-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.member-card__body {
  padding: 0.8rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.member-card__qualification {
  font-size: 13px;
  color: #009fe8;
  font-weight: 600;
  line-height: 1.5;
}

.member-card__catch {
  font-size: 14px;
  color: #333;
  line-height: 1.55;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.member-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.member-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.6;
  pointer-events: none;
}
.member-card__tag--industry {
  background: #ebf6fd;
  color: #009fe8;
}
.member-card__tag--specialty {
  background: #fff4e6;
  color: #e07b00;
}

.member-card__more {
  display: block;
  font-size: 12px;
  color: #009fe8;
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.8rem;
  text-align: right;
  letter-spacing: 0.03em;
}

.member-card__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.member-card:hover .member-card__arrow {
  transform: translateX(3px);
}

.members__empty {
  text-align: center;
  color: #888;
  font-size: 1.6rem;
  padding: 4rem 0;
}

.members-archive {
  padding: 6rem 0 8rem;
}
.members-archive__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .members-archive__inner {
    padding: 0 1.6rem;
  }
}
.members-archive__header {
  text-align: center;
  margin-bottom: 5rem;
}
.members-archive__title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a3a6e;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
.members-archive__title span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #009fe8;
  letter-spacing: 0.2em;
  margin-top: 0.4rem;
}
.members-archive__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #444;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.members-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2.4rem;
}
@media (max-width: 1023px) {
  .members-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .members-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.members-archive__cta {
  margin-top: 6rem;
  text-align: center;
  background: linear-gradient(135deg, #1a3a6e 0%, #009fe8 100%);
  border-radius: 1.2rem;
  padding: 4rem 2rem;
  color: #fff;
}
.members-archive__cta p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.members-archive__cta strong {
  color: #ffe066;
}
.members-archive__cta a {
  display: inline-block;
  background: #fff;
  color: #1a3a6e;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 3.2rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.members-archive__cta a:hover {
  opacity: 0.85;
}

.ma-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.ma-card:hover {
  opacity: 0.85;
}
.ma-card:hover .ma-card__photo {
  transform: scale(1.04);
}
.ma-card:hover .ma-card__arrow {
  transform: translateX(4px);
}
.ma-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.6rem;
  margin-bottom: 0.8rem;
}
.ma-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s ease;
}
.ma-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.ma-card__qualification {
  font-size: 1.1rem;
  color: #009fe8;
  font-weight: 600;
  line-height: 1.4;
}
.ma-card__name {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0.1rem 0 0.2rem;
}
.ma-card__catch {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ma-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.ma-card__more {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #009fe8;
  margin-top: auto;
  padding-top: 0.6rem;
  text-align: right;
}
.ma-card__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.member-single {
  padding-bottom: 10rem;
}
.member-single__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}
.member-single__breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.member-single__breadcrumb a {
  color: #009fe8;
  text-decoration: none;
}
.member-single__breadcrumb a:hover {
  text-decoration: underline;
}
.member-single__profile {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
  background: #f8fbff;
  border: 1px solid #ddedf9;
  border-radius: 14px;
  padding: 3rem 3.5rem;
}
@media (max-width: 767px) {
  .member-single__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1.6rem;
  }
}
.member-single__photo-wrap {
  flex-shrink: 0;
}
.member-single__photo {
  width: 200px;
  height: 200px;
  border-radius: 1.2rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .member-single__photo {
    width: 140px;
    height: 140px;
  }
}
.member-single__profile-body {
  flex: 1;
  padding-top: 0.4rem;
}
.member-single__qualification {
  font-size: 13px;
  color: #009fe8;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.member-single__name {
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.member-single__catch {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.member-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .member-single__tags {
    justify-content: center;
  }
}
.member-single__url {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #009fe8;
  text-decoration: none;
  margin-top: 0.6rem;
  font-weight: 500;
}
.member-single__url:hover {
  text-decoration: underline;
}
.member-single__detail {
  border: 1px solid #e2eaf2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4rem;
}
.member-single__detail-row {
  display: flex;
  border-bottom: 1px solid #e2eaf2;
}
.member-single__detail-row--strength {
  background: #f0f7ff;
}
.member-single__detail-row--strength dt {
  background: #1a3a6e;
  color: #fff;
}
.member-single__detail-row--strength dd {
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
}
.member-single__detail-row:last-child {
  border-bottom: none;
}
.member-single__detail-row dt {
  flex: 0 0 190px;
  padding: 16px 18px;
  background: #f4f8fc;
  font-size: 13px;
  font-weight: 700;
  color: #1a3a6e;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .member-single__detail-row dt {
    flex: 0 0 100px;
    padding: 12px;
    font-size: 12px;
  }
}
.member-single__detail-row dd {
  flex: 1;
  padding: 16px 18px;
  font-size: 14px;
  color: #333;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .member-single__detail-row dd {
    padding: 12px;
    font-size: 13px;
  }
}
.member-single__body {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 4rem;
}
.member-single__body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a3a6e;
  border-left: 4px solid #009fe8;
  padding-left: 12px;
  margin: 3rem 0 1.2rem;
}
.member-single__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a3a6e;
  margin: 2rem 0 0.8rem;
}
.member-single__body p {
  margin-bottom: 1.2rem;
}
.member-single__back {
  text-align: center;
  margin: 2rem 0 5rem;
}
.member-single__back-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #1a3a6e;
  border-radius: 32px;
  color: #1a3a6e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.member-single__back-btn:hover {
  background: #1a3a6e;
  color: #fff;
}

.member-single .member-card__tag {
  font-size: 12px;
  padding: 3px 10px;
}

.sns-section {
  padding: 4rem 1.5rem 12rem;
  background: #f7f8fa;
  text-align: center;
}
.sns-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.sns-section__label {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.sns-section__text {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a6e;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.sns-section__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.sns-section__item {
  flex: 0 0 auto;
}
.sns-section__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #555;
  transition: opacity 0.2s, transform 0.2s;
}
.sns-section__link:hover {
  opacity: 0.75;
  transform: translateY(-3px);
}
.sns-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sns-section__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.sns-section__name {
  font-size: 11px;
  letter-spacing: 0.03em;
}
.sns-section__link--facebook {
  color: #1877f2;
}
.sns-section__link--instagram {
  color: #e1306c;
}
.sns-section__link--youtube {
  color: #ff0000;
}
.sns-section__link--line {
  color: #06c755;
}
@media (max-width: 767px) {
  .sns-section {
    padding: 3rem 1.5rem 11rem;
  }
  .sns-section__list {
    gap: 1.5rem;
  }
  .sns-section__icon {
    width: 48px;
    height: 48px;
  }
  .sns-section__icon svg {
    width: 24px;
    height: 24px;
  }
}

.blog-list-page {
  background: #f7f9fc;
  min-height: 60vh;
  padding-bottom: 8rem;
}
.blog-list-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-list-page__hero {
  text-align: center;
  padding: 5rem 0 3rem;
  border-bottom: 1px solid #e2eaf2;
  margin-bottom: 2.4rem;
}
.blog-list-page__title {
  font-size: 28px;
  font-weight: 900;
  color: #1a3a6e;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.blog-list-page__subtitle {
  font-size: 14px;
  color: #888;
}
.blog-list-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3rem;
  justify-content: center;
}
.blog-list-page__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-list-page__layout {
    grid-template-columns: 1fr;
  }
}
.blog-list-page__pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.blog-list-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #1a3a6e;
  background: #fff;
  border: 1px solid #dde6f0;
  transition: background 0.2s, color 0.2s;
}
.blog-list-page__pagination .page-numbers:hover, .blog-list-page__pagination .page-numbers.current {
  background: #1a3a6e;
  color: #fff;
  border-color: #1a3a6e;
}
.blog-list-page__pagination .page-numbers.prev, .blog-list-page__pagination .page-numbers.next {
  width: auto;
  padding: 0 14px;
}
.blog-list-page__empty {
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 5rem 0;
}

.blog-filter-btn {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #1a3a6e;
  background: #fff;
  border: 1.5px solid #c8d8ea;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-filter-btn:hover, .blog-filter-btn.is-active {
  background: #1a3a6e;
  color: #fff;
  border-color: #1a3a6e;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}
.blog-card__img {
  height: 180px;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}
.blog-card__cats {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 20px);
}
.blog-card__cat {
  display: inline-block;
  background: #1a3a6e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.blog-card__cat.is-active {
  background: #009fe8;
}
.blog-card__body {
  padding: 1.4rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-card__date {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.04em;
}
.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

.blog-list-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-self: start;
}

.blog-sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.blog-sidebar-widget__title {
  font-size: 14px;
  font-weight: 800;
  color: #1a3a6e;
  letter-spacing: 0.06em;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #009fe8;
  margin-bottom: 1.4rem;
}

.blog-sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar-categories__item {
  border-bottom: 1px solid #f0f0f0;
}
.blog-sidebar-categories__item:last-child {
  border-bottom: none;
}
.blog-sidebar-categories__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 4px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-sidebar-categories__item a:hover, .blog-sidebar-categories__item a.is-active {
  color: #009fe8;
  font-weight: 600;
}
.blog-sidebar-categories__item a span {
  font-size: 11px;
  color: #aaa;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 10px;
}

.blog-sidebar-popular {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-sidebar-popular__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.blog-sidebar-popular__link:hover .blog-sidebar-popular__title {
  color: #009fe8;
}
.blog-sidebar-popular__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #1a3a6e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.blog-sidebar-popular__img {
  flex-shrink: 0;
  width: 60px;
  height: 50px;
  overflow: hidden;
  border-radius: 4px;
}
.blog-sidebar-popular__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-sidebar-popular__title {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.blog-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-sidebar-tag {
  display: inline-block;
  font-size: 12px;
  color: #555;
  background: #f4f7fa;
  border: 1px solid #dde6f0;
  padding: 4px 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.blog-sidebar-tag:hover {
  background: #009fe8;
  color: #fff;
  border-color: #009fe8;
}

.single-with-sidebar {
  background: #f7f9fc;
}
.single-with-sidebar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .single-with-sidebar__inner {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }
}
.single-with-sidebar__main {
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 3rem 1.8rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .single-with-sidebar__main {
    padding: 2rem 1.6rem;
  }
}

.single-sidebar {
  margin-top: 2rem;
}

.qa-page {
  background: #f7f9fc;
  min-height: 60vh;
  padding-bottom: 8rem;
}
.qa-page__hero {
  background: linear-gradient(135deg, #1a3a6e 0%, #009fe8 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
}
.qa-page__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.qa-page__subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  line-height: 1.7;
}
.qa-page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.qa-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  position: sticky;
  top: 9rem;
  z-index: 100;
  background: #f7f9fc;
  padding: 1.2rem 0;
}
@media (max-width: 767px) {
  .qa-tabs {
    top: 4.5rem;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
  }
}

.qa-tab-btn {
  padding: 0.8rem 2.2rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #c8d8ea;
  background: #fff;
  color: #1a3a6e;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.qa-tab-btn:hover, .qa-tab-btn.is-active {
  background: #1a3a6e;
  color: #fff;
  border-color: #1a3a6e;
}
@media (max-width: 767px) {
  .qa-tab-btn {
    font-size: 1.2rem;
    padding: 0.6rem 1.4rem;
  }
}

.qa-group {
  margin-bottom: 5rem;
  scroll-margin-top: 16rem;
}
@media (max-width: 767px) {
  .qa-group {
    scroll-margin-top: 12rem;
    margin-bottom: 4rem;
  }
}
.qa-group__label {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a3a6e;
  padding-bottom: 1rem;
  border-bottom: 2px solid #009fe8;
  margin-bottom: 1.6rem;
}

.qa-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e8edf5;
}
.qa-item__question {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  user-select: none;
  transition: background 0.15s;
}
.qa-item__question:hover {
  background: #f4f8ff;
}
@media (max-width: 767px) {
  .qa-item__question {
    font-size: 1.4rem;
    padding: 1.4rem 1.6rem;
  }
}
.qa-item__q-icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #1a3a6e;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qa-item__q-text {
  flex: 1;
}
.qa-item__toggle {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}
.qa-item__toggle::before, .qa-item__toggle::after {
  content: "";
  position: absolute;
  background: #1a3a6e;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.qa-item__toggle::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qa-item__toggle::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qa-item.is-open .qa-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.qa-item__answer {
  display: none;
  padding: 0 2rem 1.8rem 6rem;
  font-size: 1.4rem;
  line-height: 1.85;
  color: #444;
}
@media (max-width: 767px) {
  .qa-item__answer {
    padding: 0 1.6rem 1.6rem 1.6rem;
  }
}
.qa-item.is-open .qa-item__answer {
  display: block;
}
.qa-item__a-icon {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #009fe8;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 2.4rem;
  margin-right: 0.8rem;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.qa-sync-info {
  text-align: right;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.qa-empty {
  text-align: center;
  color: #999;
  font-size: 1.5rem;
  padding: 4rem 0;
}

.co-message {
  padding: 6rem 0 4rem;
}
.co-message__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3rem;
}
.co-message__intro {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3.6rem;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  .co-message__intro {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.co-message__intro-text {
  flex: 1;
}
.co-message__catch {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: #1a3a6e;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.co-message__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.co-message__author {
  font-size: 13px;
  color: #888;
  padding-top: 1.2rem;
  border-top: 1px solid #e0e0e0;
}
.co-message__intro-img {
  flex: 0 0 240px;
}
.co-message__intro-img img {
  width: 100%;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .co-message__intro-img {
    width: 180px;
    margin: 0 auto;
  }
}
.co-message__body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 1.4em;
}
.co-message__h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a3a6e;
  padding-left: 1rem;
  border-left: 4px solid #009fe8;
  margin: 3rem 0 1.2rem;
  line-height: 1.5;
}
.co-message__float-img {
  float: right;
  width: 200px;
  margin: 0 0 1.6rem 2.4rem;
  border-radius: 6px;
  shape-outside: border-box;
}
@media (max-width: 767px) {
  .co-message__float-img {
    float: none;
    display: block;
    width: 140px;
    margin: 0 auto 2rem;
    border-radius: 6px;
  }
}
.co-message__body::after {
  content: "";
  display: block;
  clear: both;
}
