* {
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #111d4f;
  background: #f6f7f8;
  transition: background 0.6s ease;
  cursor: none;
}
.svg-animate {
  width: 100%;
  height: 200px;
}
/* ========カーソル======== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #075c9b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 131, 203, 0.4);
  background-color: rgba(0, 131, 203, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease-out;
}
.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ========オープニング======== */
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #111d4f;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-logo {
  width: 150px;
  transform: translateY(20px);
  animation: logoFade 1s ease forwards;
}
@keyframes logoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.opening-logo img {
  width: 100%;
}
#opening.hide {
  animation: slideUp 1s ease forwards;
}
@keyframes slideUp {
  to {
    transform: translateY(-100%);
  }
}

/* ========タイトル======== */
.title-center {
  text-align: center;
  margin-bottom: 72px;
}
.title-common p {
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  color: #a5b6bf;
  display: inline-block;
  padding-bottom: 14px;
}
.title-common p span:first-child {
  color: #111d4f;
}
.title-local p {
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  color: #f6f7f8;
  display: inline-block;
  padding-bottom: 10px;
  padding-top: 100px;
}
.title-local p span:first-child {
  color: #a5b6bf;
}
.title-local h2 {
  color: #f6f7f8;
}
.anim-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
/* 発火後 */
.anim-text.active span {
  animation: fadeUp 0.6s forwards;
}
/* 遅延 */
.anim-text.active span:nth-child(1) {
  animation-delay: 0.05s;
}
.anim-text.active span:nth-child(2) {
  animation-delay: 0.1s;
}
.anim-text.active span:nth-child(3) {
  animation-delay: 0.15s;
}
.anim-text.active span:nth-child(4) {
  animation-delay: 0.2s;
}
.anim-text.active span:nth-child(5) {
  animation-delay: 0.25s;
}
.anim-text.active span:nth-child(6) {
  animation-delay: 0.3s;
}
.anim-text.active span:nth-child(7) {
  animation-delay: 0.35s;
}
.anim-text.active span:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========ボタン======== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  height: 60px;
  padding: 16px 24px;
  border: 1px solid #8aa0ab;
  border-radius: 999px;
  text-decoration: none;
  background-color: #f6f7f8;
  color: #1c4a5b;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(10px);
}
.text {
  transition:
    transform 0.3s ease,
    color 0.3s;
}
.dot {
  width: 8px;
  height: 8px;
  background: #111d4f;
  border-radius: 50%;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.cta:hover {
  background-color: #111d4f !important;
}
.cta:hover .text {
  transform: translateX(80px) !important;
  color: #f6f7f8 !important;
}
.cta:hover .dot {
  opacity: 0 !important;
  transform: scale(0) !important;
}

/* ========ヘッダー======== */
.header {
  position: fixed;
  top: 15px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo {
  max-width: 80px;
}
.logo img {
  width: 100%;
}
/* ========PCナビ======== */
.nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding-right: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
  font-weight: 450;
}
.nav a:hover {
  color: #0083cb;
}

/* ========SPナビ======== */

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: #111d4f;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* ===== SPメニュー ===== */
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 70%;
  height: 100vh;
  background: #f6f7f8;
  transition: 0.3s;
  padding-top: 80px;
}

.sp-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.sp-menu li {
  margin: 20px 0;
}

.sp-menu a {
  text-decoration: none;
  color: #1c4a5b;
  font-size: 16px;
}
.sp-menu.active {
  transform: translateX(0);
}
/* ========FV======== */
.top {
  position: relative;
  padding-bottom: 70px;
  overflow: hidden;
}
.wave-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(20deg); /* ←斜め */
  width: 120vw; /* 少し大きくしてはみ出させる */
  pointer-events: none; /* クリック邪魔しない */
  z-index: -10;
  opacity: 0.8;
  filter: blur(20px);
}

.wave-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.top h1 {
  font-size: 70px;
  line-height: 100px;
  background: linear-gradient(90deg, #111d4f, #0083cb 68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 300px auto 30px 50px;
}

.top-text {
  font-size: 20px;
  margin-top: 100px;
  padding: 5px 10px;
  background-image: linear-gradient(90deg, #111d4f, #0083cb 68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}
.top-bg {
  background-color: #ffffff;
  margin-top: 100px;
  margin-left: 50px;
  padding: 5px 10px;
}
/* 表示 */
.sp-menu.active {
  right: 0;
}
/* ========FV下======== */
.top-under {
  position: relative;
  height: 280px;
}
.bg-text-slider {
  align-items: center;
  display: flex;
  height: 300px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  z-index: 0;
  top: -40px;
}
.bg-text-slider ul {
  animation: flowing 100s linear infinite;
  font-size: 300px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.bg-text-slider ul li {
  display: inline-block;
  padding-right: 40px;
  color: rgba(107, 139, 159, 0.1);
  text-align: center;
  font-size: 200px;
  font-weight: 400;
}
@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* ========事業内容======== */
.servise {
  margin-top: 150px;
}
.servise-inner {
  max-width: 1300px;
}
.servise-item {
  position: relative;
  height: 800px;
  margin-top: 100px;
  margin-bottom: 0px;
}
.servise-image {
  position: absolute;
  max-width: 700px;
  left: 0;
  border-radius: 10px;
}
.servise-image img {
  width: 100%;
}
.servise-content {
  position: absolute;
  top: 212px;
  right: 0px;
  max-width: 700px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  height: 500px;
  box-shadow: 7px 7px 9px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 0px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.servise-content-inner {
  padding-top: 83px;
  padding-left: 73px;
  padding-right: 73px;
  display: flex;
  flex-direction: column;
}
.servise-title-jp {
  color: white;
  background-color: #111d4f;
  display: inline-block;
  width: 125px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
.servise-title-en {
  font-size: 3.052rem;
  font-weight: 500;
  margin-top: 13px;
}
.servise-content-inner p {
  line-height: 30px;
  font-weight: 400;
  margin-top: 40px;
}
.anim-img-inner {
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.anim-img-inner img {
  display: block;
  width: 100%;
}

/* マスク */
.anim-img-inner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111d4f;

  transform: translateX(0);
}

/* ===== 発火 ===== */

/* ① 出現 */
.anim-img-inner.active {
  opacity: 1;
}

/* ② マスクスライド */
.anim-img-inner.active .mask {
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.servise-btn {
  margin-top: 40px;
  margin-left: auto;
}
.servise-cta {
  margin-top: 30px;
  margin-left: auto;
}
/* ========パートナー======== */
.partners-bg-text-slider li {
  height: 50px;
}
.partners-bg-text-slider img {
  width: auto;
  height: 100%;
}
.partners-bg-text-slider {
  align-items: center;
  display: flex;
  height: 100px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  z-index: 0;
}
.partners-bg-text-slider ul {
  animation: flowing 30s linear infinite;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.partners-bg-text-slider ul li {
  display: inline-block;
  padding-right: 40px;
  text-align: center;
}
@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.partner-cta {
  display: flex;
  margin: 250px auto 0px auto;
}
/* ========企業理念======== */
body.active {
  background: #111d4f;
}
body.active .title-common p {
  color: #f6f7f8;
}

body.active .title-common p span:first-child {
  color: #a5b6bf;
}

body.active .title-common h2 {
  color: #f6f7f8;
}
.policy {
  margin-top: 150px;
}
.policy-text {
  margin: 0 auto;
  line-height: 40px;
  text-align: center;
  color: #f6f7f8;
}
.policy-text span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.policy-text span.show {
  opacity: 1;
  transform: translateY(0);
}
.policy-cta {
  display: flex;
  margin: 70px auto;
}
/* ========代表取締役======== */
.leadership {
  margin-top: 180px;
}
.leadership-inner2 {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: rgba(165, 182, 191, 0.3);
  border-radius: 10px;
}
.leadership-item {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.leadership-name {
  writing-mode: vertical-lr;
  margin-left: 100px;
}
.leadership-title {
  margin-top: 53px;
  height: 183px;
}
.leadername {
  margin-top: 135px;
  height: 160px;
}
.leadername3 {
  height: 200px !important  ;
}
.leadership-name p {
  overflow: hidden;
  margin-right: 6px;
}
.leadership-name span {
  display: inline-block;
  background-color: #111d4f;
  color: white;
  font-size: 1.563rem;
  font-weight: 500;
  padding: 12px;
  letter-spacing: 0.4rem;

  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-name p.show span {
  transform: translateX(0);
}
.leadership-image {
  max-width: 407px;
}
.leadership-image img {
  width: 100%;
}
.leadership-text {
  line-height: 40px;
  max-width: 352px;
  width: 100%;
  font-weight: 400;
  margin-top: 30%;
}

/* ========ニュース======== */
.news-cta {
  display: flex;
  margin: 70px auto;
}
.news-inner {
  max-width: 1000px;
  width: 100%;
  margin-top: 40px;
}
.news-ul {
  margin-top: 27px;
}
.news-content {
  border-top: solid 1px #075c9b;
}
.news-content a {
  display: grid;
  grid-template-columns: 140px 1fr 70px;
  align-items: center;
  padding: 38px 0;
  color: #111d4f;
  transition: color 0.2s ease;
}
.arrow {
  color: #111d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 24px;
  border-radius: 12px;
  border: #111d4f 1px solid;
  transition: all 1s ease;
}
.arrow-inner {
  display: inline-block;
  transition: transform 0.3s ease;
}
.news-content a:hover {
  color: #a5b6bf;
}
.news-content a:hover .arrow {
  color: #f6f7f8;
  border: #111d4f 1px solid;
  background-color: #111d4f;
}
.news-content a:hover .arrow-inner {
  transform: translateX(8px);
}
.news-date {
  width: 20%;
  padding-left: 24px;
}
.news-title {
  width: 80%;
}
.news-content:last-child {
  border-bottom: solid 1px #075c9b;
}

/* ========お問い合わせ======== */
.contact {
  margin-top: 170px;
  margin-bottom: 126px;
  position: relative;
  min-height: 260px;
}
.bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 260px;
  z-index: 0;
}
.contact-item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 312px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: space-around;
  backdrop-filter: blur(10px);
  border-radius: 20px;
}
.title-contact {
  padding-top: 65px;
}
.contact-text {
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
}
.contact-cta {
  margin-top: 130px;
}
/* ========フッター======== */
footer {
  background: #111d4f;
}
.footer-main {
  display: flex;
  justify-content: center;
  gap: 90px;
  padding-top: 210px;
  color: #ffffff;
  font-weight: 400;
}
.footer-main img {
  margin-top: 50px;
}
.footer-img {
  width: 150px;
}
.footer-img img {
  width: 100%;
}
.sitemap-title {
  font-size: 1.25rem;
  border-bottom: #ffffff solid 1px;
  padding-bottom: 10px;
  font-weight: 400;
}
.footer-sitemap {
  width: 198px;
  font-weight: 300;
}
.footer-sitemap a {
  color: white;
}
.footer-sitemap li {
  line-height: 60px;
  padding-left: 10px;
}
.footer-address {
  font-weight: 300;
}
.footer-address a {
  color: white;
}
.footer-address li {
  line-height: 60px;
  padding-left: 10px;
}
.footer-copy {
  color: white;
  display: flex;
  justify-content: center;
  font-weight: 200;
  font-size: 0.8rem;
  margin-top: 144px;
  padding-bottom: 20px;
}

/* ========下層ページ======== */
.under-inner {
  max-width: 1300px;
  width: 100%;
  margin: 180px auto;
  padding: 0 20px;
}
.under-inner h1 {
  margin: 0 auto 30px 0px;
  font-size: 61px;
  font-style: italic;
}
.under-inner p {
  margin-bottom: 50px;
}
/* ========serviseページ======== */
.servisepage {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.servisepage h3 {
  font-size: 2.441rem;
  line-height: 50px;
}
.servisepage h3:nth-of-type(2) {
  background: linear-gradient(90deg, #111d4f, #0083cb 68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.servisepage > p {
  margin-top: 65px;
  margin-bottom: 100px;
  line-height: 25px;
}
.servisepage-image {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 80px;
}
.servisepage-image-item {
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 20px;
}
.servisepage-image-item img {
  width: 100%;
}
.servisepage-image-item h4 {
  font-size: 30px;
  margin: 18px auto;
  padding-bottom: 18px;
  border-bottom: 1px dotted #000000;
  width: 90%;
}

.servisepage-image-item p {
  margin: 13px auto 40px auto;
}
.servisepage-explain {
  background-color: #ffffff;
  border-radius: 20px;
}
.servisepage-item {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.servisepage-explain h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  margin-left: 30px;
}
.servisepage-item:nth-of-type(1) h4::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../images/servisepage-icon01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: 5px;
}
.servisepage-item:nth-of-type(2) h4::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../images/servisepage-icon02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: 5px;
}
.servisepage-item:nth-of-type(3) h4::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../images/servisepage-icon03.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: 5px;
}
.servisepage-item span {
  color: #ffffff;
  background-color: #111d4f;
  margin-left: 40px;
  padding: 2px 10px;
}
.servisepage-item p {
  margin-top: 15px;
  line-height: 30px;
  padding-left: 40px;
}
.servisepage-explain div:nth-of-type(2) {
  border-top: 1px dotted #000000;
  border-bottom: 1px dotted #000000;
}
.servisepage-explain div:nth-of-type(1) {
  padding-top: 80px;
}
.servisepage-explain div:nth-of-type(3) {
  padding-bottom: 80px;
}
/* ========Aboutページ======== */
.leadership-item2 {
  margin-top: 200px;
  padding-bottom: 100px;
}
.company-inner {
  max-width: 700px;
  width: 100%;
  margin-top: 40px;
}
.company-content {
  border-top: solid 1px #075c9b;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}
.company-content:last-child {
  border-bottom: solid 1px #075c9b;
}
.company-detail {
  font-weight: 350;
}
.leadername {
  margin-top: 135px;
  height: 160px;
}
.company-image-inner {
  margin-top: 100px;
}
.company-image-inner {
  max-width: 800px;
  position: relative;
}
.company-image-inner img {
  width: 100%;
}
.company-image-inner span {
  position: absolute;
  content: "";
  left: -10px;
  bottom: -20px;
  width: 95%;
  height: 100%;
  background: #111d4f;
  z-index: -1;
}
/* ========Partnersページ======== */
.partners-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.partners-inner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
}
.partners-inner li {
  height: 50px;
}
.partners-inner img {
  width: auto;
  height: 100%;
}
/* ========articleページ======== */
.article-inner {
  max-width: 1000px;
  width: 100%;
  line-height: 2.25rem;
}
.article-title {
  font-size: 2.5rem;
  margin-top: 150px;
  margin-bottom: 30px;
  line-height: 3rem;
}

.article-content {
  margin-top: 70px;
  margin-bottom: 100px;
}
article h2 {
  font-size: 1.75rem;
  margin-top: 32px;
  margin-bottom: 32px;
}
article h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 32px;
}
.pager {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #111d4f;
}
.nav-links {
  text-align: center;
  margin-top: 50px;
}

.page-numbers {
  margin: 0 5px;
}
.article-thumbnail {
  max-width: 1000px;
}
.article-thumbnail img {
  width: 100%;
  height: auto;
}
/* ========Contactページ======== */
.news-contact {
  padding: 0 20px;
}
.news-contact p {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.news-contact p:nth-of-type(2) {
  margin-top: 10px;
}
.send-cta {
  display: flex;
  margin: 100px auto 100px auto;
}
.appointment-cta {
  display: flex;
  margin: 20px auto 100px auto;
}
.wpforms-field-label {
  color: #111d4f !important;
  font-weight: 500 !important;
}
.wpforms-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 0 20px;
}
.wpforms-field input,
.wpforms-field textarea {
  color: #000 !important;
  width: 100%;
  max-width: 600px;
}
.wpforms-submit-container {
  text-align: center;
}
.wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 220px !important;
  height: 60px !important;
  padding: 16px 24px !important;
  border: 1px solid #8aa0ab !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  background-color: #f6f7f8 !important;
  color: #1c4a5b !important;
  position: relative !important;
  overflow: hidden !important;
  transition: 0.5s !important;
  backdrop-filter: blur(10px) !important;
}
.wpforms-submit.text {
  transition:
    transform 0.3s ease,
    color 0.3s !important;
}
/* ================SP================ */
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
  }
  body {
    font-size: 14px;
  }
  .cursor {
    display: none;
  }
  .cursor-follower {
    display: none;
  }
  .hamburger {
    position: relative;
    z-index: 1000;
  }
  /* ========オープニング======== */
  .opening-logo {
    width: 100px;
  }
  /* ========タイトル======== */
  .title-center {
    margin-bottom: 40px;
  }
  .title-common p {
    font-size: 3rem;
  }
  .title-local p {
    font-size: 3rem;
    padding-top: 20px;
  }
  .anim-text {
    overflow: visible;
    -webkit-font-smoothing: antialiased;
  }
  .anim-text span {
    transform: translateY(20px);
    will-change: transform;
    padding: 0 0.15em;
    margin: 0 -0.15em;
  }
  /* ========SPナビ======== */
  .header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .nav {
    display: none;
  }
  .logo {
    max-width: 60px;
  }
  .logo img {
    width: 100%;
  }
  .hamburger {
    display: block;
  }
  .sp-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 70%;
    height: 100vh;
    background: white;
    transition: 0.3s;
    padding-top: 80px;
    z-index: 50;
  }
  .sp-menu.active {
    transform: translateX(0);
  }
  /* ========FV======== */
  .top {
    padding-bottom: 0px;
  }
  .top h1 {
    font-size: 2rem;
    line-height: 60px;
    padding: 20px;
    margin: 120px 0 0 0;
  }
  .top-bg {
    display: none;
  }
  .fv-text span {
    display: inline-block;
  }
  .wave-wrap {
    top: 30%;
    width: 150vw; /* 少し大きくしてはみ出させる */
  }
  /* ========FV下======== */
  .top-under {
    height: 100px;
  }
  .bg-text-slider {
    height: 100px;
    top: 40px;
  }
  .bg-text-slider ul {
    font-size: 100px;
  }
  .bg-text-slider ul li {
    font-size: 100px;
  }
  /* ========事業内容======== */
  .anim-img-inner .mask {
    display: none;
  }
  .servise-image {
    position: static;
    max-width: 100%;
    width: 100%;
  }
  .servise-content {
    height: auto;
    position: static;
    max-width: 100%;
    width: 100%;
  }
  .servise-content-inner {
    padding: 50px 20px;
  }
  .servise-title-en {
    font-size: 2rem;
  }
  .servise-cta {
    margin: 30px auto;
  }
  /* ========パートナー======== */
  .partners-bg-text-slider li {
    height: 40px;
  }
  .partners-bg-text-slider li img {
    width: auto;
    height: 100%;
  }
  .partner-cta {
    margin-top: 160px;
  }
  /* ========企業理念======== */
  .policy-cta {
    margin-bottom: 30px;
  }
  /* ========代表取締役======== */
  .leadership-inner2 {
    padding-top: 50px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .leadership-item {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .leadership-title {
    margin-top: 20px;
    height: auto;
  }
  .leadername {
    margin-top: 10px;
    height: auto;
    margin-left: 60px;
  }
  .leadername3 {
    height: auto !important;
  }
  .leadership-name {
    writing-mode: horizontal-tb;
    margin-left: 0px;
  }
  .leadership-name span {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 7px;
  }
  .leadership-text {
    line-height: 30px;
    margin-top: 0px;
  }
  /* ========ニュース======== */
  .news-content a {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
  }
  .news-date {
    grid-column: 1;
    grid-row: 1;
  }

  .arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    margin-right: 10px;
  }

  .news-title {
    grid-column: 1 / 3; /* 横いっぱい */
    grid-row: 2;
  }
  .news-date {
    padding-left: 10px;
  }
  .news-title {
    padding-left: 10px;
  }
  /* ========お問い合わせ======== */
  .contact {
    margin-top: 80px;
  }
  .contact-item {
    flex-direction: column;
    height: auto;
  }
  .title-contact {
    padding: 30px 20px;
  }
  .contact-text {
    margin-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .contact-cta {
    margin: 30px auto;
  }
  /* ========フッター======== */
  footer {
    height: auto;
  }
  .footer-img {
    width: 100px;
  }
  .footer-main img {
    margin-top: 0px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }
  .footer-sitemap {
    width: auto;
  }
  .footer-sitemap li {
    line-height: 40px;
  }
  .footer-address li {
    line-height: 40px;
  }
  .footer-main {
    margin-top: 10px;
  }
  .footer-copy {
    margin-top: 60px;
  }
  /* ========下層ページ======== */
  .under-inner {
    margin: 120px auto 60px auto;
  }
  .under-inner h1 {
    font-size: 2.5rem;
  }
  /* ========Partnersページ======== */
  .partners-inner ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  /* ========Serviseページ======== */
  .servisepage h3 {
    font-size: 1.3rem;
    line-height: 30px;
  }
  .servisepage > p {
    margin-top: 65px;
    margin-bottom: 80px;
  }
  .servisepage-explain {
    margin-left: 20px;
    margin-right: 20px;
  }
  .servisepage-image {
    flex-direction: column;
    align-items: center;
  }
  .servisepage-image-item h4 {
    font-size: 1.3rem;
  }
  .servisepage-item h4 {
    padding-left: 0px;
  }
  .servisepage-item:nth-of-type(1) h4::before {
    left: -30px;
  }
  .servisepage-item:nth-of-type(2) h4::before {
    left: -30px;
  }
  .servisepage-item:nth-of-type(3) h4::before {
    left: -30px;
  }
  .servisepage-item span {
    margin-left: 0px;
  }
  .servisepage-item p {
    padding-left: 0px;
  }
  /* ========aboutページ======== */
  .outsidedirector-text {
    order: 3;
  }
  .outsidedirector-image {
    order: 2;
  }
  .outsidedirector-name {
    order: 1;
  }
  .leadership-item2 {
    margin-top: 50px;
  }
  .company-content {
    padding: 30px 10px;
  }
  /* ========articleページ======== */
  .article-inner {
    line-height: 2rem;
  }
  .article-title {
    font-size: 1.25rem;
    margin-top: 80px;
    line-height: 2rem;
  }
  article h2 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  article h3 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .pager {
    gap: 20px;
  }
}
