@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #000;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/*画像の縦横比設定*/
/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

body.page-id-8 {
  background: #F4F4F4;
}

.inner {
  width: 100%;
  padding-inline: 10px;
  margin-inline: auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

.fv {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 6.875rem;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-bottom: 5.1875rem;
  }
}

.fv__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 33.333%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 33.333%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv__center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.fv__catch {
  width: 100%;
  max-width: 29.6875rem;
  margin: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .fv__catch {
    max-width: 11rem;
  }
}

.fv__catch-img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33.333%;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fv__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.333%;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fv__photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv__left .fv__photo {
  height: 33.333%;
}

.fv__right .fv__photo {
  height: 33.333%;
}

.fv__top .fv__photo {
  width: 33.333%;
}

.fv__bottom .fv__photo {
  width: 33.333%;
}

.fv__photo-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
  will-change: opacity, transform;
}

.fv__photo-layer.is-active {
  opacity: 1;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  z-index: 1;
}

.fv__photo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.fv__photo-img--pc {
  display: block;
}

.fv__photo-img--sp {
  display: none;
}

@media screen and (max-width: 768px) and (min-width: 440px) {
  .fv__photo-img {
    -o-object-position: center 20%;
       object-position: center 20%;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fv__left {
    display: none;
  }
  .fv__right {
    display: none;
  }
  .fv__center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    z-index: 10;
  }
  .fv__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fv__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fv__photo-img--pc {
    display: none;
  }
  .fv__photo-img--sp {
    display: block;
  }
}
.read-more {
  position: relative;
  margin-bottom: 22rem;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .read-more {
    margin-bottom: 10.9375rem;
  }
}

.read-more__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 1080px) {
  .read-more__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.read-more__text {
  width: 29.0625rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29.0625rem;
          flex: 0 0 29.0625rem;
}
@media screen and (max-width: 1080px) {
  .read-more__text {
    margin-inline: auto;
  }
}

.read-more__en {
  color: #1D2088;
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .read-more__en {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.read-more__title {
  max-width: 22.5rem;
  margin-bottom: 4.75rem;
}
@media screen and (max-width: 768px) {
  .read-more__title {
    max-width: 13.5rem;
    margin-bottom: 1.25rem;
  }
}

.read-more__body {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .read-more__body {
    margin-bottom: 2.5rem;
  }
}

.read-more__body p {
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.0625rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .read-more__body p {
    font-size: 0.9375rem;
  }
}

.read-more__images {
  position: relative;
  margin-right: calc((100vw - 100%) / 2 * -1);
}

.read-more__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.read-more__image--main {
  width: 100%;
  max-width: 62.5rem;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .read-more__image--main {
    max-width: 90%;
    margin-left: auto;
  }
}

.read-more__image--overlay {
  position: absolute;
  bottom: -2.5rem;
  right: 3%;
  width: 100%;
  max-width: 25rem;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .read-more__image--overlay {
    max-width: 40%;
    bottom: -4.375rem;
  }
}

.read-more__img {
  width: 100%;
  height: auto;
  display: block;
}

.top-youtube {
  position: relative;
  width: 100%;
  background: #F4F4F4;
  margin-bottom: 16.875rem;
}
@media screen and (max-width: 768px) {
  .top-youtube {
    margin-bottom: 7.375rem;
  }
}

.top-youtube__inner {
  max-width: 90rem;
}

.top-youtube::after {
  content: "";
  background-image: url(../../top_img/youtube_bg_pc2x.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: -10.5625rem;
  left: -1.5625rem;
  width: 100%;
  max-width: 97.5rem;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .top-youtube::after {
    top: -1.875rem;
    background-image: url(../../top_img/youtube_bg_sp2x.png);
  }
}

.top-youtube__player {
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}

.top-youtube__player iframe {
  width: 100%;
  height: 100%;
}

.business {
  position: relative;
  width: 100%;
  padding-bottom: 16.9375rem;
}
@media screen and (max-width: 1080px) {
  .business {
    padding-bottom: 6.5625rem;
  }
}

.business__head {
  margin-bottom: 5.8125rem;
}
@media screen and (max-width: 1080px) {
  .business__head {
    margin-bottom: 5.4375rem;
    max-width: 30.625rem;
    margin-inline: auto;
  }
}

.business__en {
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1D2088;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 1080px) {
  .business__en {
    font-size: 1.375rem;
    margin-bottom: 1.5625rem;
  }
}

.business__title {
  margin-bottom: 4.875rem;
}
@media screen and (max-width: 1080px) {
  .business__title {
    margin-bottom: 2.75rem;
  }
}

.business__title-img {
  max-width: 10rem;
}
@media screen and (max-width: 1080px) {
  .business__title-img {
    max-width: 6rem;
  }
}

.business__summary {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4.875rem;
}
@media screen and (max-width: 1080px) {
  .business__summary {
    font-size: 0.9375rem;
    margin-bottom: 2.75rem;
    line-height: 1.8;
  }
}

.business__list {
  margin-right: calc((100vw - 100%) / 2 * -1);
}

.business__item {
  margin-bottom: 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .business__item {
    max-width: 43.75rem;
  }
}

.business__item:last-child {
  margin-bottom: 0;
}

.business__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .business__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.business__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45.625rem;
          flex: 0 0 45.625rem;
}
@media screen and (max-width: 1080px) {
  .business__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.75rem;
            flex: 0 0 18.75rem;
  }
}

.business__item-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.375rem;
}

.business__number-img {
  max-width: 5.625rem;
  margin-inline: auto;
  padding-top: 2.125rem;
  display: block;
}
@media screen and (max-width: 1080px) {
  .business__number-img {
    max-width: 4.1875rem;
    padding: 1.0625rem 0 1.0625rem 1.0625rem;
    margin-inline: initial;
  }
}

.business__item-text {
  padding: 3.6875rem 0 3.8125rem 4.9375rem;
  border-left: 0.29rem solid #F4F4F4;
}
@media screen and (max-width: 1080px) {
  .business__item-text {
    border-top: 0.29rem solid #F4F4F4;
    border-left: none;
    padding: 1.875rem 1.875rem 3.25rem 1.875rem;
  }
}

.business__item-title {
  margin-bottom: 3.4375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1A3EB6;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1080px) {
  .business__item-title {
    font-size: 1.3125rem;
    margin-bottom: 1.875rem;
  }
}

.business__item-desc {
  margin-bottom: 2.8125rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 2.1;
  color: #000;
}
@media screen and (max-width: 1080px) {
  .business__item-desc {
    margin-bottom: 3.125rem;
    font-size: 0.875rem;
  }
}

.business__item-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1A3EB6;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.business__item-image {
  width: 100%;
  max-width: 47.3125rem;
  overflow: hidden;
}

.business__item-img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.business__link:hover {
  text-decoration: none;
  opacity: 1;
}

.business__link:hover .business__item-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.business__link:hover .btn:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.business__link:hover .btn {
  border-color: #1A3EB6;
}

.business__link:hover .btn__text {
  color: #1A3EB6;
}

.product {
  padding-top: 13.6875rem;
  padding-bottom: 9rem;
  background: #d2d3e8;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .product {
    padding-top: 6.875rem;
    padding-bottom: 7.1875rem;
    margin-bottom: 6.25rem;
  }
}

@media screen and (max-width: 1080px) {
  .product__inner {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .product__head {
    margin-bottom: 3.125rem;
    max-width: 21.125rem;
    margin-inline: auto;
  }
}

.product__en {
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1D2088;
  margin-bottom: 2.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .product__en {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.product__title {
  margin-bottom: 2.5rem;
}

.product__title-img {
  max-width: 9.25rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .product__title-img {
    max-width: 5.875rem;
  }
}

.product__summary {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: left;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
  .product__summary {
    font-size: 0.9375rem;
  }
}

.product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.125rem;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .product__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product__item {
  max-width: 24.25rem;
  background: #FFF;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .product__item {
    margin-inline: auto;
  }
}

.product__item-image {
  padding-top: 1.25rem;
  width: 100%;
}

.product__item-content {
  padding: 3.125rem 1.125rem 3.875rem 1.125rem;
}

.product__item-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #1A3EB6;
}

.product__item-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  text-align: center;
}

.product__btn {
  margin-inline: auto;
}

.top-btn {
  position: relative;
  background: #1D2088;
  border-radius: 1.5625rem;
  width: 15rem;
  height: 3.125rem;
  overflow: hidden;
  border: 0.0625rem solid transparent;
}
@media screen and (max-width: 768px) {
  .top-btn {
    width: 9.375rem;
    height: 2.1875rem;
  }
}

.top-btn a {
  position: relative;
  z-index: 1;
  font-size: 1.4375rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1.25rem;
  width: 15rem;
  height: 3.125rem;
  border-radius: 1.5625rem;
  color: #FFF;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-btn a {
    font-size: 0.9375rem;
    padding: 0.625rem 1.6875rem;
    width: 9.375rem;
    height: 2.1875rem;
  }
}

.top-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #FFF;
  border-radius: 1.5625rem;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.top-btn:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top-btn:hover {
  border-color: #1A3EB6;
}

.top-btn:hover a {
  color: #1A3EB6;
  opacity: 1;
  text-decoration: none;
}

.top-btn__text {
  position: relative;
  z-index: 1;
  font-size: 1.4375rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1.25rem;
  width: 15rem;
  height: 3.125rem;
  border-radius: 1.5625rem;
  color: #FFF;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-btn__text {
    font-size: 0.9375rem;
    padding: 0.625rem 1.6875rem;
    width: 9.375rem;
    height: 2.1875rem;
  }
}

.top-btn:hover .top-btn__text {
  color: #1A3EB6;
}

.contact {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-bottom: 2.5rem;
  }
}

.contact__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin-inline: auto;
  margin-bottom: 7.5rem;
  padding: 0;
  max-width: 75rem;
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .contact__social {
    margin: 2.5rem auto 3.125rem;
  }
}

.contact__social::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.125rem;
  height: 100%;
  background: #1A3EB6;
}

.contact__social::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.125rem;
  height: 100%;
  background: #1A3EB6;
}

.contact__social-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25rem;
}

.contact__social-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.125rem;
  height: 100%;
  background: #1A3EB6;
}

.contact__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__social-link {
    padding: 0.9375rem 1.5625rem;
  }
}

.contact__social-link:hover {
  text-decoration: none;
}

.contact__social-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .contact__social-icon {
    width: 1.875rem;
    height: 1.875rem;
    margin-bottom: 0.3125rem;
  }
}

.contact__social-text {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #1D2088;
}
@media screen and (max-width: 768px) {
  .contact__social-text {
    font-size: 0.875rem;
  }
}

.contact__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .contact__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
}

.contact__cta-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.9375rem 0 0.75rem 0;
  background: #FFF;
  border: 1px solid #1A3EB6;
  border-radius: 3.125rem;
  width: 21.875rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .contact__cta-tel {
    width: 12.5rem;
    padding: 0.5rem 0;
  }
}

.contact__cta-tel:hover {
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.contact__cta-tel-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1D2088;
  margin-bottom: 0.3125rem;
  letter-spacing: 0.125rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact__cta-tel-num {
    font-size: 1.0625rem;
    margin-bottom: 0.125rem;
  }
}

.contact__cta-tel-hour {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1D2088;
  line-height: 1;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 768px) {
  .contact__cta-tel-hour {
    font-size: 0.625rem;
  }
}

.contact__cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 21.875rem;
  height: 5rem;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .contact__cta-btn {
    width: 12.5rem;
    height: 2.8125rem;
  }
}

.contact__cta-btn-link {
  width: 100%;
  height: 100%;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact__cta-btn-link {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .contact__cta-btn:hover .contact__cta-btn-link {
    opacity: 0.8;
  }
}
.company-links {
  width: 100%;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .company-links {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

.company-links__inner {
  max-width: 102.5rem;
}

.company-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 1080px) {
  .company-links__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company-links__item {
  position: relative;
  max-width: 49.6875rem;
  overflow: hidden;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 1080px) {
  .company-links__item {
    max-width: 37.5rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .company-links__item {
    max-width: 100%;
  }
}

.company-links__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.company-links__item-image {
  max-width: 49.6875rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 1080px) {
  .company-links__item-image {
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 768px) {
  .company-links__item-image {
    max-width: 18.75rem;
  }
}

.company-links__link:hover .company-links__item-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

/* 黒フィルター */
.company-links__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.company-links__item-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  gap: 1.25rem;
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .company-links__item-label {
    gap: 0.5rem;
    width: 1.875rem;
    padding-top: 0.625rem;
  }
}

.company-links__item-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.25rem;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .company-links__item-label::after {
    width: 0.125rem;
  }
}

.company-links__item-en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: clamp(1.375rem, 2vw, 2.25rem);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 1080px) {
  .company-links__item-en {
    font-size: 1.375rem;
    letter-spacing: 0.00625rem;
  }
}
@media screen and (max-width: 768px) {
  .company-links__item-en {
    font-size: 0.875rem;
  }
}

.company-links__item-ja {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  font-size: clamp(1.375rem, 2.3vw, 2.25rem);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.125rem;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .company-links__item-ja {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .company-links__item-ja {
    font-size: 0.75rem;
  }
}

.column__title h1 {
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.025rem;
  position: relative;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .column__title h1 {
    font-size: 2rem;
  }
}

.column__title::after {
  content: "COLUMN";
  position: absolute;
  bottom: 14.375rem;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 0.0625rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.025rem;
}
@media screen and (max-width: 768px) {
  .column__title::after {
    font-size: 2.5rem;
    bottom: 7.5rem;
  }
}

.column__category {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .column__category {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.column__category-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: 0.025rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .column__category-title {
    font-size: 0.875rem;
  }
}

.column__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column__category-list li a {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: 0.025rem;
  border-radius: 1.125rem;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  border: 0.0625rem solid #1D2088;
  color: #1D2088;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .column__category-list li a {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}

.column__category-list li a:hover {
  background-color: #1D2088;
  color: #FFF;
  text-decoration: none;
  opacity: 1;
}

.column__category-list li a.is-active {
  background-color: #1D2088;
  color: #FFF;
  border: 0.0625rem solid #1D2088;
}

.pagination {
  margin-bottom: 15.875rem;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  gap: 8px;
}

.pagination__item a,
.pagination__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.pagination__item-arrow img {
  width: 2.5rem;
  height: 2.5rem;
}

.pagination.is-first-page .pagination__item-arrow:first-child {
  display: none;
}

.pagination:not(.is-first-page) .pagination__item-arrow:first-child {
  display: block;
}

.pagination__item a {
  border: 1px solid #1D2088;
  background-color: #fff;
  color: #1D2088;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.pagination__item a:hover {
  background-color: #1D2088;
  color: #FFF;
  border-color: #1D2088;
}

.pagination__item .is-active {
  background-color: #1D2088;
  color: #FFF;
  border-color: #1D2088;
}

.pagination__item.disabled span {
  color: #F4F4F4;
}

.columnList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  list-style: none;
  padding: 0;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .columnList {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.columnList__item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.columnList__item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 341/200;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .columnList__item-img {
    aspect-ratio: 352/161;
    margin-bottom: 0.6875rem;
  }
}

.columnList__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.columnList__item:hover .columnList__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.columnList__item-img {
  position: relative;
}

/* ラッパーを左上に固定して、複数を並べる */
.columnList__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}

.columnList__category-label {
  position: static;
  display: inline-block;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: 0.025rem;
  border-radius: 1.125rem;
  padding: 0.25rem 0.5rem;
  background-color: #FFF;
  border: 0.0625rem solid #1D2088;
  color: #1D2088;
}
@media screen and (max-width: 768px) {
  .columnList__category-label {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Column Detail
------------------------------------------------------------*/
.columnDetail {
  margin: 60px 0;
}

.columnDetail__inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 20px;
}

.columnDetail__header {
  margin-bottom: 1.5rem;
}

.columnDetail__header-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.columnDetail__header-date {
  font-size: 1.125rem;
  letter-spacing: 0.025rem;
  color: #333;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .columnDetail__header-date {
    font-size: 0.875rem;
  }
}

.columnDetail__header-category {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: 0.025rem;
  border-radius: 1.125rem;
  padding: 0.25rem 0.5rem;
  background-color: #FFF;
  border: 0.0625rem solid #1D2088;
  color: #1D2088;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .columnDetail__header-category {
    font-size: 0.75rem;
  }
}

.columnDetail__header-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .columnDetail__header-title {
    font-size: 1.125rem;
  }
}

.columnDetail__image {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .columnDetail__image {
    aspect-ratio: 350/200;
    margin-bottom: 1rem;
  }
}

.columnDetail__image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.columnDetail__body h2,
.columnDetail__body .wp-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  padding: 0.8125rem 0 0.8125rem 1rem;
  background-color: #F0F4F7;
  margin-bottom: 1rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .columnDetail__body h2,
  .columnDetail__body .wp-block-heading {
    font-size: 1rem;
    padding: 0.75rem 0 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.columnDetail__body p {
  font-size: 1rem;
  letter-spacing: 0.025rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .columnDetail__body p {
    margin-bottom: 2rem;
  }
}

.columnDetail__back-btn {
  text-align: center;
  margin-top: 60px;
}

.columnDetail__back-btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 56px;
  border: 1px solid #1D2088;
  border-radius: 0;
  background-color: #fff;
  color: #1D2088;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}

.columnDetail__back-btn a span {
  position: relative;
  z-index: 2;
}

.columnDetail__back-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2088;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: 1;
}

.columnDetail__back-btn a:hover {
  color: #FFF;
  opacity: 1;
}

.columnDetail__back-btn a:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
/*# sourceMappingURL=styles.css.map */