@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #032a47;
}

/* ---------------------------
  リセット
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* --- PCのみ表示 --- */
@media screen and (max-width: 768px) {
  .pc-view {
    display: none !important;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block !important;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 45px;
  bottom: 30px;
  -webkit-transition: opacity 0.3s, background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
  font-size: 24px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  text-align: center;
  line-height: 46px;
  background: #fff;
  border: 2px solid #004c86;
  opacity: 0;
}
.to-top.show {
  opacity: 1;
}
.to-top:hover {
  background: #004c86;
  color: #fff;
  border: 2px solid #fff;
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.header {
  height: 100px;
  position: relative;
  z-index: 100;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.header__inner h1 {
  width: clamp(250px, 21.4vw, 300px);
  margin-left: 7%;
}
.header__inner h1 a {
  display: block;
  text-decoration: none;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(30px, 3.6vw, 50px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.header__menu.navy {
  color: #004c86;
}
.header__menu.navy:last-child a p {
  color: #fff;
}
.header__menu--item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 5px;
}
.header__menu--item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__menu--item a:hover {
  opacity: 1;
}
.header__menu--item a:hover::after {
  width: 100%;
}
.header__menu--item:last-child a::after {
  display: none;
}
.header__menu--item:last-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #004c86;
  width: 100px;
  height: 100px;
}
.header__menu--item:last-child a img {
  width: 34px;
}
.header__menu--item:last-child a p {
  font-size: 14px;
  margin-top: 5px;
}

/* トップページのみ：サイト名を視覚的に隠す（SEO用） */
.site-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ロゴ画像スタイル */
h1 img {
  display: block;
  max-width: 100%;
  height: auto;
  /* 既存のロゴ画像スタイルを維持 */
}

@media screen and (max-width: 768px) {
  /* 外部背景画像（ドロワー外の背景） */
  .outside-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 76, 134, 0.3)), to(rgba(0, 76, 134, 0.3))), url(../img/fv-img.jpg) center/cover no-repeat;
    background: linear-gradient(rgba(0, 76, 134, 0.3), rgba(0, 76, 134, 0.3)), url(../img/fv-img.jpg) center/cover no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 100;
    pointer-events: none;
  }
  .drawer-open .outside-bg {
    opacity: 1;
    pointer-events: auto;
  }
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー（回転を残す） */
  .hamburger {
    position: fixed;
    top: 35px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 200;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  /* active時、コンテナ全体を360°回転 */
  .hamburger.active {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  /* 各ラインは絶対配置・transform-origin を center に設定 */
  .hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .hamburger.white span {
    background: #004c86;
  }
  .hamburger.active.white span {
    background: #fff;
  }
  .hamburger span:nth-child(1) {
    top: 8px;
  }
  .hamburger span:nth-child(2) {
    bottom: 8px;
  }
  /* active時、各ラインを調整して×印に */
  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
  /* ドロワーロゴ */
  .sp-logo {
    position: fixed;
    top: 32px;
    right: 86px;
    width: 200px;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    overflow: hidden;
  }
  .sp-logo.open {
    opacity: 1;
  }
  .sp-logo.open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    -webkit-animation: revealText 0.5s forwards;
            animation: revealText 0.5s forwards;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  /* ドロワーメニュー */
  /* ドロワーコンテナ（最終的なサイズ：300px） */
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    pointer-events: none;
    z-index: 150;
  }
  .drawer.open {
    pointer-events: auto;
  }
  /* ドロワー背景（アニメーション用） */
  .drawer-bg {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background: #004c86;
    width: 0;
  }
  @-webkit-keyframes expandShrink {
    0% {
      width: 0;
    }
    40% {
      width: 100%;
    }
    100% {
      width: 300px;
    }
  }
  @keyframes expandShrink {
    0% {
      width: 0;
    }
    40% {
      width: 100%;
    }
    100% {
      width: 300px;
    }
  }
  @-webkit-keyframes closeAnimation {
    0% {
      width: 300px;
    }
    100% {
      width: 0;
    }
  }
  @keyframes closeAnimation {
    0% {
      width: 300px;
    }
    100% {
      width: 0;
    }
  }
  /* メニューコンテンツ（ドロワー内で上から150px、左右中央） */
  .menu-content {
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    z-index: 160;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .drawer.open .menu-content {
    opacity: 1;
  }
  /* メニューリストのスタイル */
  .menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .menu-content li {
    margin: 10px 0 0 30px;
  }
  .menu-content li:last-child a {
    background: #fff;
    color: #004c86;
    width: 85%;
    height: 54px;
    border-radius: 100px;
    line-height: 54px;
    font-size: 18px;
    padding-left: 42px;
    font-weight: 700;
    margin-top: 100px;
    margin-left: 0;
    position: relative;
  }
  .menu-content li:last-child a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .menu-content li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    overflow: hidden;
  }
  /* リンクのテキストアニメーション（擬似要素） */
  .drawer.open .menu-content li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    -webkit-animation: revealText 0.5s forwards;
            animation: revealText 0.5s forwards;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  @-webkit-keyframes revealText {
    to {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      opacity: 0;
    }
  }
  @keyframes revealText {
    to {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      opacity: 0;
    }
  }
}
/* ----------------------------------------
  フッター
---------------------------------------- */
.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 76, 134, 0.8)), to(rgba(0, 76, 134, 0.8))), url(../img/bg-blue.jpg) center center/cover no-repeat;
  background: linear-gradient(rgba(0, 76, 134, 0.8), rgba(0, 76, 134, 0.8)), url(../img/bg-blue.jpg) center center/cover no-repeat;
  padding: 72px 0;
  margin-top: 100px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1010px;
  max-width: 90%;
  margin: 0 auto;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo {
  width: 120px;
  display: block;
  margin-left: 10px;
}
.footer__info {
  font-size: 13px;
  margin-top: 16px;
  margin-left: 10px;
}
.footer__info p {
  line-height: 1.8;
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  white-space: nowrap;
}
.footer__right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer__right ul {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .footer__right ul:first-child {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .footer__right ul:first-child {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.footer__right ul:nth-child(2) {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .footer__right ul:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__right ul:nth-child(2) {
    margin-top: 20px;
    gap: 60px;
  }
}
@media screen and (max-width: 500px) {
  .footer__right ul:nth-child(2) {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-left: 10px;
  }
}
.footer__right ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 5px;
}
.footer__right ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__right ul li a:hover {
  opacity: 1;
}
.footer__right ul li a:hover::after {
  width: 100%;
}
.footer .copyright {
  text-align: center;
  font-size: 12px;
}

/* ----------------------------------------
  FV（下層）
---------------------------------------- */
.sub-fv__inner {
  margin-left: 7.1%;
  overflow: hidden;
}
.sub-fv__title {
  font-weight: 700;
  position: relative;
}
.sub-fv__title h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(50px, 7.1vw, 100px);
  color: #004c86;
  line-height: 1;
}
.sub-fv__title p {
  font-size: clamp(12px, 1.1vw, 15px);
  margin-left: 5px;
  letter-spacing: 0.01em;
}
.sub-fv__title::after {
  content: "";
  display: block;
  background: #004c86;
  width: 6px;
  position: absolute;
  z-index: 10;
  -webkit-animation: growShrink 2s infinite;
          animation: growShrink 2s infinite;
  height: clamp(100px, 17.7vw, 17.7vw);
  left: 5%;
  top: 140%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .sub-fv__title::after {
    width: 3px;
    height: clamp(130px, 42.7vw, 160px);
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__title::after {
    left: 3%;
  }
}
.sub-fv__img {
  overflow: hidden;
  aspect-ratio: 1200/310;
  position: relative;
  width: 89%;
  margin-left: auto;
  margin-top: -80px;
  z-index: -1;
  max-height: 310px;
}
@media screen and (max-width: 1400px) {
  .sub-fv__img {
    margin-top: -6%;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__img {
    width: 635px;
    height: 170px;
    margin-left: 11%;
    margin-top: -46px;
  }
}
.sub-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  .sub-fv__img img {
    -o-object-position: left center;
       object-position: left center;
  }
}
.sub-fv__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 76, 134, 0.3);
  pointer-events: none;
}
.sub-fv__breadcrumbs {
  width: 89%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 14px;
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .sub-fv__breadcrumbs {
    margin-top: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sub-fv__breadcrumbs a {
  color: #004c86;
}
.sub-fv__breadcrumbs p {
  color: #7e8692;
  text-indent: -2em;
  padding-left: 2em;
}
.sub-fv__breadcrumbs a img,
.sub-fv__breadcrumbs p img {
  width: 7px;
  height: 12px;
  margin-right: 15px;
  margin-bottom: 1px;
}

/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .block {
    padding: 13.3vw 0;
  }
}
.block-inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}
.block-inner .wp-block-paragraph,
.block-inner .wp-block-heading,
.block-inner .wp-block-columns,
.block-inner .wp-block-image,
.block-inner .wp-block-list,
.block-inner .wp-block-quote,
.block-inner .wp-block-code,
.block-inner .wp-block-preformatted,
.block-inner .wp-block-verse,
.block-inner .wp-block-table,
.block-inner p {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ----------------------------------------
  セクションタイトル
---------------------------------------- */
.section__title {
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.section__title.center {
  margin: 0 auto;
}
.section__title--en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(50px, 5.7vw, 80px);
  color: #004c86;
}
.section__title--jp {
  font-size: clamp(14px, 1.1vw, 15px);
  text-align: right;
  position: relative;
}
.section__title--jp::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #004c86;
  height: 4px;
  width: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .section__title--jp::before {
    width: 55%;
    height: 3px;
  }
}
.section__title.white .section__title--en {
  color: #fff;
}
.section__title.white .section__title--jp {
  color: #fff;
}
.section__title.white .section__title--jp::before {
  background: #fff;
}

/* ----------------------------------------
  ボタン
---------------------------------------- */
@-webkit-keyframes text-reveal {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes text-reveal {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 20px 0 auto;
}
@media screen and (max-width: 1280px) {
  .btn {
    margin-top: 70px;
  }
}
.btn__bar {
  background: #004c86;
  height: 2px;
  width: 200px;
  border-radius: 10px;
  position: relative;
}
.btn__bar.white {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .btn__bar {
    width: 100px;
  }
}
.btn__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #004c86;
  border-radius: 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.btn__bar.white::before {
  background: #fff;
}
.btn__text {
  font-size: 16px;
  display: inline-block;
  overflow: hidden;
  line-height: 1;
}
.btn__text span {
  display: inline-block;
}
.btn:hover {
  opacity: 1;
}
.btn:hover .btn__bar {
  background: transparent;
}
.btn:hover .btn__bar::before {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .btn:hover .btn__bar::before {
    width: 100px;
  }
}
.btn:hover .btn__text span {
  -webkit-animation: text-reveal 0.3s forwards;
          animation: text-reveal 0.3s forwards;
}
.btn:hover .btn__text span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.btn:hover .btn__text span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.btn:hover .btn__text span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.btn:hover .btn__text span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.btn:hover .btn__text span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.btn:hover .btn__text span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.btn:hover .btn__text span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.btn:hover .btn__text span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

/* ----------------------------------------
  トップページ
---------------------------------------- */
/* ローディング全体コンテナ */
.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* $white に対応 */
  z-index: 9999;
  overflow: hidden;
}

/* ネイビーのカーテン：1.2秒後に1秒かけて右へスライド（＝開く） */
.navy-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001f3f;
  z-index: 1;
  -webkit-animation: curtainOpen 1s forwards;
          animation: curtainOpen 1s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes curtainOpen {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes curtainOpen {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* ロゴコンテナ：画面中央に配置 */
.logo-container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 250px;
}

/* ロゴ：従来通りフェードイン後、4.2秒地点から0.3秒でフェードアウト */
.logo {
  opacity: 0;
  -webkit-animation: logoFade 4.5s forwards;
          animation: logoFade 4.5s forwards;
}

@-webkit-keyframes logoFade {
  /* 全体4.5秒のタイムラインで
     - 0%～44.4%（約2.0秒）でフェードイン（従来通りの出現タイミング）
     - 44.4%～93.3%（約2.0秒間、ロゴが表示された状態を維持）
     - 93.3%～100%（約0.3秒間でフェードアウト） */
  0% {
    opacity: 0;
  }
  44.4% {
    opacity: 1;
  }
  93.3% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes logoFade {
  /* 全体4.5秒のタイムラインで
     - 0%～44.4%（約2.0秒）でフェードイン（従来通りの出現タイミング）
     - 44.4%～93.3%（約2.0秒間、ロゴが表示された状態を維持）
     - 93.3%～100%（約0.3秒間でフェードアウト） */
  0% {
    opacity: 0;
  }
  44.4% {
    opacity: 1;
  }
  93.3% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  FV  */
.fv {
  margin-top: -100px;
  height: clamp(300px, 64.3vw, 900px);
  position: relative;
}
.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 76, 134, 0.5);
  z-index: 2;
}
.fv__inner {
  color: #fff;
  position: absolute;
  bottom: 6%;
  left: 10%;
  white-space: nowrap;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    left: 5%;
    bottom: 10%;
  }
}
.fv__inner--en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 5.7vw, 80px);
  font-weight: 700;
  -webkit-filter: drop-shadow(0 0 20px rgba(4, 34, 57, 0.2));
          filter: drop-shadow(0 0 20px rgba(4, 34, 57, 0.2));
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .fv__inner--en {
    font-size: 6.4vw;
    line-height: 1.2;
  }
}
.fv__inner--jp {
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 700;
  -webkit-filter: drop-shadow(0 0 20px rgba(3, 35, 58, 0.2));
          filter: drop-shadow(0 0 20px rgba(3, 35, 58, 0.2));
}
@media screen and (max-width: 768px) {
  .fv__inner--jp {
    font-size: 2.9vw;
  }
}
.fv::before, .fv::after {
  content: "";
  display: block;
  background: #004c86;
  width: 8px;
  position: absolute;
  -webkit-animation: growShrink 2s infinite;
          animation: growShrink 2s infinite;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fv::before, .fv::after {
    width: 6px;
  }
}
.fv::before {
  height: clamp(192px, 36.9vw, 1000px);
  left: 5%;
  top: 56%;
}
@media screen and (max-width: 768px) {
  .fv::before {
    left: 3%;
  }
}
.fv::after {
  height: clamp(55px, 7.6vw, 200px);
  right: 92px;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .fv::after {
    top: 31%;
    right: 6%;
  }
}

@-webkit-keyframes growShrink {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.001% {
    /* 切替タイミング：bottom固定に変更 */
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes growShrink {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.001% {
    /* 切替タイミング：bottom固定に変更 */
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/*  スクロールダウン  */
.container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 4%;
  margin-top: -6%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .container_01 {
    margin-top: -30px;
  }
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #fff;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  -webkit-transform-origin: 0 100px;
          transform-origin: 0 100px;
}

.circle-bg {
  background: #004c86; /* ※Sassの変数 $navy を通常の navy に置換 */
  width: 60%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}

.arrow_01::after {
  content: "↓";
  display: inline-block;
  font-size: 40px;
  color: #fff;
  -webkit-transform-origin: top;
          transform-origin: top; /* 上端を固定して縦に伸ばす */
  -webkit-animation: stretchArrow 2s infinite;
          animation: stretchArrow 2s infinite;
  font-weight: 300;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes stretchArrow {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0;
  }
}
@keyframes stretchArrow {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .scroll-down_01 {
    width: 80px;
    height: 80px;
  }
  .circle-text_01 span {
    font-size: 8px;
    -webkit-transform-origin: 0 40px;
            transform-origin: 0 40px;
  }
  .arrow_01::after {
    font-size: 20px;
  }
}
/*  企業理念  */
.philosophy__inner {
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}
.philosophy__title--jp::before {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .philosophy__title--jp::before {
    width: 75%;
  }
}
.philosophy__text {
  font-size: 17px;
  margin-top: 50px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .philosophy__text {
    margin-top: 30px;
  }
}

/*  事業内容  */
.service {
  margin-top: 100px;
}
.service__inner {
  width: 1200px;
  max-width: 97.5%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .service__inner {
    margin: 0 0 0 auto;
  }
}
.service__title--jp::before {
  width: 68%;
}
@media screen and (max-width: 1000px) {
  .service__title--jp::before {
    width: 63%;
  }
}
.service__slider {
  width: inherit;
  margin-top: 65px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1280px) {
  .service__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.service__box {
  width: 270px;
  margin: 0 20px;
}
.service__box h3 {
  color: #004c86;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin-top: 20px;
}
.service__box p {
  margin-top: 20px;
  font-weight: 700;
}
.service .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  width: 60vw;
}
@media screen and (max-width: 768px) {
  .service .slick-dots {
    width: 50vw;
  }
}
.service .slick-dots li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  margin: 0;
}
.service .slick-dots li button {
  opacity: 0;
  pointer-events: none;
}
.service .slick-dots li .indicator-segment {
  width: 100%;
  height: 2px;
  background: #e4e8eb;
}
.service .slick-dots li.slick-active .indicator-segment {
  background: #004c86;
}
.service .slider-container {
  position: relative;
}
.service .slick-prev,
.service .slick-next {
  position: absolute;
  top: 100%;
  border: none;
  cursor: pointer;
  z-index: 1;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .service .slick-prev,
  .service .slick-next {
    width: 40px;
    height: 40px;
  }
}
.service .slick-prev::before,
.service .slick-next::before {
  width: 50px;
  height: 50px;
  display: block;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .service .slick-prev::before,
  .service .slick-next::before {
    width: 40px;
    height: 40px;
  }
}
.service .slick-prev {
  left: 70vw;
}
@media screen and (max-width: 768px) {
  .service .slick-prev {
    left: 64vw;
  }
}
.service .slick-prev::before {
  content: "";
  background: url(../img/left-arrow.png) center center/cover no-repeat;
}
.service .slick-next {
  right: auto;
  left: 80vw;
}
.service .slick-next::before {
  content: "";
  background: url(../img/right-arrow.png) center center/cover no-repeat;
}
/* About us 〜 Related Businessの背景 */
.bg-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 76, 134, 0.8)), to(rgba(0, 76, 134, 0.8))), url(../img/bg-blue.jpg) center center/cover no-repeat;
  background: linear-gradient(rgba(0, 76, 134, 0.8), rgba(0, 76, 134, 0.8)), url(../img/bg-blue.jpg) center center/cover no-repeat;
  padding: 87px 0 800px;
  margin-top: 100px;
}

/* 事業概要 */
.about__inner {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__title {
    margin: 0 auto;
  }
}
.about__title--jp::before {
  width: 74%;
}
@media screen and (max-width: 1000px) {
  .about__title--jp::before {
    width: 63%;
  }
}
.about__flex {
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .about__flex {
    margin-top: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1000px) {
  .about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 0;
    width: 100%;
  }
}
.about__flex--btn {
  margin-top: 70px;
  margin-right: 0;
}
.about__flex--left {
  width: 45%;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .about__flex--left {
    width: 100%;
    margin-top: 10.7vw;
  }
}
.about__flex--right {
  width: 47%;
  aspect-ratio: 544/589;
  overflow: hidden;
  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;
}
@media screen and (max-width: 1000px) {
  .about__flex--right {
    width: 100%;
  }
}
.about__flex--right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about img {
  margin-top: 50px;
}

/* 関連会社 */
.companies {
  margin-top: 100px;
}
.companies__inner {
  max-width: 95%;
  margin: 0 auto;
}
.companies__inner img {
  width: 320px;
  max-width: 100%;
  margin: 70px auto 0;
  display: block;
}
.companies__title--jp::before {
  width: 78%;
}
@media screen and (max-width: 1000px) {
  .companies__title--jp::before {
    width: 67%;
  }
}

/* 関連事業 */
.r-business {
  margin-top: 100px;
}
.r-business__inner {
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .r-business__title--en {
    line-height: 1.2;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .r-business__title--jp {
    margin-top: 10px;
  }
}
.r-business__title--jp::before {
  width: 85%;
}
@media screen and (max-width: 1000px) {
  .r-business__title--jp::before {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  .r-business__title--jp::before {
    width: 64%;
  }
}
.r-business__logo {
  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: 100px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .r-business__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.r-business__logo a {
  max-width: 100%;
}
.r-business__logo a:first-child {
  width: 260px;
}
.r-business__logo a:nth-child(2) {
  width: 220px;
}

/* お知らせ */
.news {
  background: #f9f9f9;
  width: 1200px;
  max-width: 95%;
  margin: -630px auto 0;
  padding: 72px 0;
}
.news__inner {
  width: 905px;
  max-width: 90%;
  margin: 0 auto;
}
.news__title {
  margin: 0 auto;
}
.news__list {
  margin-top: 30px;
}
.news__list li a {
  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;
  gap: 21px;
  padding: 24px 10px;
  border-bottom: 1px solid #e2e7ee;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .news__list li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news__list li a::after {
  content: "›";
  color: #004c86;
  font-size: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
.news__list li a:hover {
  background: #004c86;
  color: #fff;
  opacity: 1;
}
.news__list li a:hover p:first-child {
  color: #fff;
}
.news__list li a:hover p:nth-child(2) {
  background: #fff;
}
.news__list li a:hover::after {
  color: #fff;
}
.news__list li a p:first-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #6d7279;
  white-space: nowrap;
}
.news__list li a p:nth-child(2) {
  width: 14.6%;
  color: #004c86;
  font-size: 14px;
  border: 1px solid #004c86;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .news__list li a p:nth-child(2) {
    min-width: 120px;
  }
}
.news__list li a p:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 63%;
  line-height: 1.8;
  margin-right: 3%;
}
@media screen and (max-width: 1000px) {
  .news__list li a p:nth-child(3) {
    width: 93%;
    -webkit-line-clamp: 4;
    font-size: 14px;
    font-weight: 400;
  }
}
.news__btn {
  margin-top: 70px;
  margin-right: 0;
}

/*  お困りの方へ  */
.help {
  margin-top: 100px;
}
.help__inner {
  width: 1110px;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .help__title--en {
    text-align: center;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .help__title--jp {
    margin-top: 20px;
  }
}
.help__title--jp::before {
  width: 75%;
}
@media screen and (max-width: 1000px) {
  .help__title--jp::before {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .help__title--jp::before {
    width: 52%;
  }
}
.help__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .help__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
    margin: 60px auto 0;
  }
}
.help a img {
  -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;
}
.help a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* ----------------------------------------
  ニュースページ
---------------------------------------- */
.p-news {
  max-width: 95%;
  margin: 0 auto;
  padding: 72px 0 0;
}
.p-news__inner {
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}
.p-news__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
}
.p-news__cat li {
  width: 100%;
  text-align: center;
}
.p-news__cat--link {
  width: 100%;
  display: block;
  padding: 5px;
  border-bottom: 1px solid #dae1e6;
}
.p-news__cat--link.current {
  border-bottom: 2px solid #004c86;
}
.p-news__list {
  margin-top: 30px;
}
.p-news__list li a {
  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;
  gap: 21px;
  padding: 24px 10px;
  border-bottom: 1px solid #e2e7ee;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-news__list li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-news__list li a::after {
  content: "›";
  color: #004c86;
  font-size: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
.p-news__list li a:hover {
  background: #004c86;
  color: #fff;
  opacity: 1;
}
.p-news__list li a:hover p:first-child {
  color: #fff;
}
.p-news__list li a:hover p:nth-child(2) {
  background: #fff;
}
.p-news__list li a:hover::after {
  color: #fff;
}
.p-news__list li a p:first-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #7792a6;
  white-space: nowrap;
}
.p-news__list li a p:nth-child(2) {
  width: 14.6%;
  color: #004c86;
  font-size: 14px;
  border: 1px solid #004c86;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-news__list li a p:nth-child(2) {
    min-width: 120px;
  }
}
.p-news__list li a p:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 63%;
  line-height: 1.8;
  margin-right: 3%;
}
@media screen and (max-width: 1000px) {
  .p-news__list li a p:nth-child(3) {
    width: 93%;
    -webkit-line-clamp: 4;
    font-size: 14px;
    font-weight: 400;
  }
}
.p-news .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  font-weight: normal;
}

/* ----------------------------------------
  事業内容ページ
---------------------------------------- */
.p-service__inner {
  width: 1200px;
  max-width: 90%;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .p-service__inner {
    margin-top: 100px;
  }
}
.p-service__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-service__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-service__flex:nth-child(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-service__flex:nth-child(n+2) {
    margin-top: 40px;
  }
}
.p-service__flex:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-service__flex:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-service__flex:nth-child(2n) .p-service__text {
  margin-right: 0;
  margin-left: -4.3%;
}
@media screen and (max-width: 768px) {
  .p-service__flex:nth-child(2n) .p-service__text {
    margin-left: 0;
  }
}
.p-service__text {
  width: 45%;
  background: #fff;
  margin-right: -4.3%;
  position: relative;
  z-index: 10;
  padding: 3.6vw 2.9vw;
}
@media screen and (max-width: 768px) {
  .p-service__text {
    margin-right: 0;
    width: 100%;
  }
}
.p-service__text h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  color: #004c86;
}
.p-service__text p {
  font-size: clamp(12px, 1.1vw, 15px);
  margin-top: clamp(16px, 2.1vw, 30px);
}
.p-service__text a {
  background: #004c86;
  color: #fff;
  display: block;
  padding: 10px 30px;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
.p-service__img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-service__img {
    width: 80%;
  }
}
/* ----------------------------------------
  お問い合わせページ
---------------------------------------- */
.smf-radio-button-control {
  line-height: 2.5;
}

.smf-form .smf-radio-button-control__control {
  margin-top: calc(var(--_half-leading) * 2.5em) !important;
}

.smf-item__label__text {
  font-size: 20px;
  font-weight: bold;
}

.pp-text {
  margin-top: 30px;
  margin-bottom: 20px;
}

.smf-action .smf-button-control__control {
  width: 200px;
  background-color: #004c86 !important;
  border: none;
  color: #fff !important;
  font-weight: bold;
  font-size: 20px;
  background-image: none !important;
  letter-spacing: 0.05em;
}

/* ----------------------------------------
  記事詳細
---------------------------------------- */
.post-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  margin-bottom: 30px;
}
.post-title::after {
  content: "";
  background: #004c86;
  height: 3px;
  width: 100px;
  position: absolute;
  bottom: 0px;
  left: 0;
  display: block;
}

/* ----------------------------------------
  会社概要
---------------------------------------- */
.gmap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .gmap {
    padding-bottom: 177.78%;
  }
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}