@charset "UTF-8";
.header {
  z-index: 900;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8rem;
  padding-right: 8rem;
  gap: 4rem;
}
@media screen and (max-width: 1150px) {
  .header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header-top {
  height: 8rem;
}
.header-logo {
  margin-top: 2.4rem;
  width: 10.8rem;
  aspect-ratio: 108/66;
}
@media screen and (max-width: 1150px) {
  .header-logo {
    width: 6rem;
  }
}
.header-logo img {
  width: 100%;
}
.header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1150px) {
  .header-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.header-nav__item {
  position: relative;
}
.header-nav__item a {
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 1380px) {
  .header-nav__item a {
    display: block;
    font-size: 1.2rem;
    min-width: 5.2rem;
    line-height: 1.2;
    text-align: center;
  }
}
.header-nav__item--current a {
  color: #00419F;
}
.header-nav__item--current::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #00419F;
  margin-top: 0.8rem;
}
.header-nav__item--contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 3.6rem;
  width: 13.2rem;
  height: 4.2rem;
  background: linear-gradient(90deg, #00B4ED 0%, #0149A3 100%);
}
@media screen and (max-width: 1150px) {
  .header-nav__item--contact a {
    width: 100%;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1150px) {
  .header-nav__item {
    width: 100%;
  }
}
@media screen and (max-width: 1150px) {
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 84.7vw;
    height: 100vh;
    padding: 10rem 2.4rem 4rem;
    background-color: #0F3B79;
    box-shadow: -0.4rem 0 1.2rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    overflow-y: auto;
    z-index: 950;
  }
}
.header-nav.is-open .header-nav__inner {
  gap: 2.4rem;
}
.header-nav.is-open .header-nav__item a {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
}
.header-nav.is-open .header-nav__item--contact a {
  margin-top: 4.7rem;
  width: 25.2rem;
  height: 6rem;
  font-size: 1.9rem;
  margin-right: auto;
  margin-left: auto;
}
.header-nav.is-open .header-nav__item--current::after {
  display: none;
}
@media screen and (max-width: 1150px) {
  .header-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    border-left: 0.6rem solid rgba(255, 103, 0, 0.8);
    padding-left: 4rem;
  }
  .header-nav.is-open .header-nav__item a {
    text-align: center;
  }
}
@media screen and (max-width: 1150px) and (max-width: 768px) {
  .header-nav.is-open .header-nav__item a {
    text-align: left;
  }
}
.header.fixed {
  background: transparent;
  box-shadow: none;
}
.header.fixed .header-logo {
  width: 6rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 1151px) {
  .header.fixed {
    background: #fff;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
  }
  .header.fixed .header-logo {
    width: 8rem;
    margin-top: 1.6rem;
  }
}
.header .menu-button {
  display: none;
  width: 2.5rem;
  height: 2.2rem;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  right: 4rem;
  top: 2.6rem;
  z-index: 9900;
}
.header .menu-button i {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #000;
  transition: background 0.5s;
  position: relative;
  top: 0.8rem;
}
.header .menu-button i::before, .header .menu-button i::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #000;
  position: absolute;
  transition: all 0.3s;
}
.header .menu-button i::before {
  transform: translateY(0.8rem);
}
.header .menu-button i::after {
  transform: translateY(-0.8rem);
}
.header .menu-button.is_open i {
  background: transparent;
  color: #fff;
}
.header .menu-button.is_open i::before, .header .menu-button.is_open i::after {
  background: #fff;
}
.header .menu-button.is_open i::after {
  transform: translateY(0) rotate(-45deg);
}
.header .menu-button.is_open i::before {
  transform: translateY(0) rotate(45deg);
}
@media screen and (max-width: 1150px) {
  .header .menu-button {
    display: block !important;
    right: 1.6rem;
  }
}

.sec-title__main {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #015CAA;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-title__main {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
.sec-title__main span {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #015CAA;
  line-height: 1;
  text-align: center;
}
.sec-title__sub {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  height: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sec-title__sub {
    font-size: 2rem;
    margin-top: 0;
    height: 2.4rem;
    line-height: 1.2em;
  }
}
.sec-flex {
  margin-top: 32.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 13.7rem;
       column-gap: 13.7rem;
  row-gap: 3rem;
}
@media screen and (max-width: 1255px) {
  .sec-flex {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-flex {
    margin-top: 24.5rem;
    row-gap: 3rem;
  }
}
.sec-flex2 {
  margin-top: 42.3rem;
}
@media screen and (max-width: 1255px) {
  .sec-flex2 {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-flex2 {
    margin-top: 31.9rem;
  }
}
.sec-flex3 {
  margin-top: 46.8rem;
}
@media screen and (max-width: 1255px) {
  .sec-flex3 {
    margin-top: 84rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-flex3 {
    margin-top: 25.2rem;
  }
}
.sec-flex a {
  width: 55rem;
}
.sec-flex a img {
  width: 100%;
}

.read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 6.4rem;
  width: 27.2rem;
  height: 6.4rem;
  background: linear-gradient(90deg, #00B4ED 0%, #0149A3 100%);
  margin-top: 8.8rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .read-more {
    margin-top: 6.1rem;
    width: 19rem;
    height: 4.4rem;
    font-size: 1.4rem;
  }
}

.footer {
  padding-top: 7.3rem;
  padding-bottom: 3.8rem;
  background: url(../images/common/footer-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 4.6rem;
    padding-bottom: 1.6rem;
    background: url(../images/common/footer-bg-sp.png) no-repeat center center/cover;
  }
}
.footer-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.footer-bottom {
  border-top: 1px solid #fff;
  margin-top: 2.6rem;
  padding-top: 2.6rem;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    padding-top: 3.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-nav {
  width: 79.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 2.3rem;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
    row-gap: 1.6rem;
  }
}
.footer-nav li {
  width: 25rem;
}
.footer-nav li a {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-nav li a {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.footer-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.6rem;
}
@media screen and (max-width: 768px) {
  .footer-link {
    align-items: flex-start;
    gap: 3.6rem;
  }
}
.footer-facebook {
  margin-right: 0.6rem;
  width: 4.2rem;
  aspect-ratio: 1/1;
}
.footer-facebook img {
  width: 100%;
}
.footer-contact {
  width: 21.6rem;
  aspect-ratio: 21.6/7.2;
}
.footer-contact img {
  width: 100%;
}
.footer-company {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-com1 {
  width: 12.6rem;
  aspect-ratio: 12.6/7.4;
}
.footer-com1 img {
  width: 100%;
}
.footer-com2 {
  width: 7.4rem;
  aspect-ratio: 1/1;
}
.footer-com2 img {
  width: 100%;
}
.footer-copyright {
  color: #fff;
  line-height: 1.75;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    margin-top: 2.7rem;
    font-size: 1.4rem;
    line-height: 2.5;
    margin-right: auto;
    margin-left: auto;
  }
}

.case {
  margin-top: 13.8rem;
  padding-bottom: 12.7rem;
}
@media screen and (max-width: 768px) {
  .case {
    margin-top: 6rem;
    padding-bottom: 9rem;
  }
}
.case-items {
  margin-top: 4.3rem;
  padding-top: 6.2rem;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.9rem;
}
@media screen and (max-width: 768px) {
  .case-items {
    margin-top: 2.6rem;
    padding-top: 3.4rem;
    gap: 6.6rem;
  }
}
.case-item {
  width: 38rem;
}
@media screen and (max-width: 768px) {
  .case-item {
    width: 100%;
  }
}
.case-img {
  aspect-ratio: 38/24.3;
}
.case-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-cat {
  position: relative;
  margin-top: -6.9rem;
  background-color: rgba(0, 65, 159, 0.9);
  height: 3.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2.6rem;
  display: flex;
  align-items: center;
  min-width: 17.1rem;
  color: #fff;
  box-shadow: 0.2rem 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .case-cat {
    height: 2.4rem;
    font-size: 1.4rem;
    margin-top: -4.4rem;
  }
}
.case-ttl {
  position: relative;
  padding: 0 2.6rem;
  width: 34.3rem;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
  height: 6.7rem;
  font-weight: 600;
  background-color: rgba(1, 92, 170, 0.9);
  box-shadow: 0.4rem 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .case-ttl {
    height: 4rem;
    width: 30.9rem;
    font-size: 2rem;
  }
}

.pagenavi-wrap {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* wp-pagenavi 共通レイアウト */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0 0;
  font-size: 14px;
}

/* ページ番号・前後リンク共通 */
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  background-color: #ffffff;
  color: #333333;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ホバー & フォーカス */
.wp-pagenavi a:hover,
.wp-pagenavi a:focus-visible {
  border-color: #e5e7eb;
  background-color: #e5e7eb;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.15);
  outline: none;
}

/* 現在ページ */
.wp-pagenavi .current {
  border-color: #00419F;
  color: #00419F;
  font-weight: 700;
}

/* 前へ・次へ（» «） */
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-size: 16px;
  padding: 0 14px;
}

/* 無効化されているリンク（必要ならWP側でクラス付与して使う） */
.wp-pagenavi .disabled {
  border-color: #e5e7eb;
  background-color: #f9fafb;
  color: #9ca3af;
  pointer-events: none;
  box-shadow: none;
}

/* 狭い画面で少し小さく */
@media (max-width: 480px) {
  .wp-pagenavi {
    gap: 4px;
    font-size: 13px;
  }
  .wp-pagenavi a,
.wp-pagenavi span {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
  }
}
.nextpostslink, .previouspostslink {
  border: none !important;
}

.lower {
  padding-top: 12rem;
  padding-bottom: 10rem;
}

/* 全体 */
.cf7-form {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* 説明文 */
.cf7-desc {
  margin-bottom: 24px;
  color: #333;
}

/* 各項目 */
.cf7-item {
  margin-bottom: 24px;
}

/* ラベル */
.cf7-label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* input 共通 */
.cf7-input,
.cf7-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* textarea */
.cf7-textarea {
  min-height: 160px;
}

/* focus 時 */
.cf7-input:focus,
.cf7-textarea:focus {
  border-color: #2f7bff;
  box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.15);
  outline: none;
}

/* チェックボックス / ラジオ */
.cf7-checkbox label,
.cf7-radio label {
  display: block;
  margin: 6px 0;
  cursor: pointer;
}

/* プライバシーポリシー */
.cf7-privacy label {
  cursor: pointer;
}

/* 送信ボタン */
.cf7-submit-wrap {
  text-align: center;
  margin-top: 32px;
}

.cf7-submit {
  margin-top: 4em;
  background: #00419F;
  color: #fff;
  padding: 14px 48px;
  border: none;
  font-weight: 500;
  border-radius: 50px;
  font-size: 17px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cf7-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.contact-head {
  max-width: 720px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5em;
}

.wpcf7-list-item-label {
  line-height: 1.5;
}

.cf7-textarea::-moz-placeholder {
  line-height: 1.5;
}

.cf7-textarea::placeholder {
  line-height: 1.5;
}

.wpcf7-spinner {
  display: none !important;
}

.grecaptcha-badge {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
/*# sourceMappingURL=common.css.map */