@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-family: "Jost", "Noto Sans JP", 游ゴシック体, YuGothic-M, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

dt {
  font-weight: 600;
}

dt,
dd {
  line-height: 1.8;
}

.l-contentWidth {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
}

.l-section {
  padding: 70px 0;
}

.l-pageContainer {
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  .l-section,
  .l-pageContainer {
    padding: 55px 0;
  }
}
/* -------------------------
   pc header
------------------------- */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.25s ease-in-out;
}
.l-header.is-scrolled {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-left: 2%;
}

.l-header__logo {
  display: inline-block;
  max-width: 200px;
  transition: 0.2s;
}
.l-header__logo:hover {
  opacity: 0.8;
}

/* -------------------------
   sp header
------------------------- */
.l-hamburger {
  background: #306bae;
  height: 50px;
  aspect-ratio: 1/1;
  position: relative;
  display: none;
  cursor: pointer;
  padding: 5px 0;
}
.l-hamburger span {
  display: inline-block;
  width: 22px;
  border-top: 2px solid #fff;
  position: absolute;
  left: 14px;
  transition: all 0.25s ease-in-out;
}
.l-hamburger span:nth-child(1) {
  top: 10px;
}
.l-hamburger span:nth-child(2) {
  top: calc(50% - 7px);
}
.l-hamburger span:nth-child(3) {
  bottom: 21px;
}
.l-hamburger.is-active span:nth-child(1) {
  top: calc(50% - 7px);
  transform: rotate(45deg);
}
.l-hamburger.is-active span:nth-child(2) {
  transform: scale(0, 1);
}
.l-hamburger.is-active span:nth-child(3) {
  bottom: calc(50% + 4px);
  transform: rotate(-45deg);
}
.l-hamburger::after {
  content: "メニュー";
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 9px;
  text-align: center;
  align-content: end;
}

@media screen and (max-width: 1024px) {
  .l-hamburger {
    display: block;
  }
}
/* -------------------------
   navigation
------------------------- */
.l-navigation {
  font-weight: 600;
  font-size: 1.5rem;
}

.l-navigation__list {
  display: flex;
}

.l-navigation__item {
  white-space: nowrap;
  margin-right: 22px;
}

.l-navigation__anchor,
.l-navigation__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.25s ease-in-out;
}
.l-navigation__anchor:hover, .l-navigation__anchor.is-active,
.l-navigation__trigger:hover,
.l-navigation__trigger.is-active {
  color: #306bae;
  border-color: #306bae;
}

.l-dropDown {
  font-weight: 400;
  color: #fff;
  background: #306bae;
  padding: 20px 35px;
  position: absolute;
  z-index: -1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10);
  transition: all 0.25s ease-in-out;
}
.l-dropDown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-dropDown__item--icon .l-dropDown__anchor::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url("../img/icon/external-link.svg") no-repeat center/contain;
  margin-left: 10px;
}

.l-navigation__trigger::after {
  content: "";
  display: inline-block;
  width: 11px;
  aspect-ratio: 5/3;
  background: url("../img/icon/header-arrow.svg") no-repeat center/contain;
  margin-left: 5px;
  transition: all 0.25s ease-in-out;
}

.l-dropDown__item:not(:first-child) {
  margin-top: 14px;
}

.l-dropDown__anchor:hover {
  text-decoration: underline;
}

.l-naviBtn {
  color: #fff;
  font-size: 1.2rem;
  width: 90px;
  height: 85px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.l-naviBtn:hover {
  opacity: 0.8;
}

.l-naviBtn__anchor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.l-naviBtn__anchor::before {
  content: "";
  display: inline-block;
  width: 23px;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
}

.l-naviBtn--recruit {
  background: #0f4d93;
}
.l-naviBtn--recruit .l-naviBtn__anchor::before {
  background-image: url("../img/icon/header-recruit.svg");
}

.l-naviBtn--contact {
  background: #306bae;
}
.l-naviBtn--contact .l-naviBtn__anchor::before {
  background-image: url("../img/icon/header-mail.svg");
}

@media screen and (max-width: 1280px) {
  .l-navigation {
    font-size: 1.4rem;
  }
  .l-navigation__item {
    margin-right: 1em;
  }
  .l-naviBtn {
    width: 85px;
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  }
  .l-header__logo {
    max-width: 160px;
    height: 40px;
    margin: 5px 0;
  }
  .l-navigation {
    width: 100%;
    height: calc(100vh - 50px);
    height: calc(100vh - 50px);
    background: #fff;
    position: fixed;
    top: 50px;
    right: 0;
    transform: translateX(100%);
    overflow-y: scroll;
    transition: all 0.25s ease-in-out;
    z-index: -1;
  }
  .l-navigation.is-open {
    transform: translateX(0);
  }
  .l-navigation__list {
    flex-direction: column;
    gap: 10px;
    padding: 40px;
  }
  .l-navigation__item {
    width: 100%;
    padding: 8px 0;
    margin: 0;
  }
  .l-navigation__anchor {
    justify-content: left;
  }
  .l-navigation__anchor:hover, .l-navigation__anchor.is-active,
  .l-navigation__trigger:hover,
  .l-navigation__trigger.is-active {
    border-color: transparent;
  }
  .l-naviBtn__anchor {
    flex-direction: row;
  }
  .l-dropDown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 100%;
    color: #000;
    background: #fff;
    padding: 15px 0 0 10px;
  }
  .l-dropDown__item::before {
    content: "-";
    margin-right: 5px;
  }
  .l-dropDown__item--icon .l-dropDown__anchor::after {
    background: url("../img/icon/external-link-blue.svg") no-repeat center/contain;
  }
  .l-naviBtn {
    width: 100%;
    height: 40px;
  }
  .l-naviBtn--recruit {
    margin-top: 30px;
  }
}
.l-footer {
  background: #0c243f;
  color: #fff;
  font-weight: 500;
  padding: 64px 5%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.l-fInfo {
  font-weight: normal;
  width: 30%;
}

.l-fInfo__logo {
  display: inline-block;
  max-width: 260px;
  transition: 0.2s;
}
.l-fInfo__logo:hover {
  opacity: 0.8;
}

.l-fInfo__address {
  margin-top: 1em;
  line-height: 1.6;
}

.l-fInfo__copyright {
  display: block;
  margin-top: 20px;
}

.l-fnavi {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 40px;
  line-height: 1.3;
}

.l-fnaviChild,
.l-fnavi__item:not(:first-child) {
  margin-top: 15px;
}

.l-fnavi__anchor {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.l-fnavi__anchor--icon::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/icon/external-link.svg) no-repeat center/contain;
  margin-left: 7px;
}
.l-fnavi__anchor:hover {
  opacity: 0.9;
  transform: translateX(3px);
}

.l-fnavi__anchor:not(.l-fnaviChild .l-fnavi__anchor)::before {
  content: "";
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/2;
  background: url("../img/icon/arrow.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 1280px) {
  .l-footer {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }
  .l-fInfo {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    font-size: 1.4rem;
  }
  .l-fnavi {
    font-size: 1.4rem;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .l-fnaviChild,
  .l-fnavi__item:not(:first-child) {
    margin-top: 10px;
  }
}
.u-tb-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-tb-show {
    display: block;
  }
  .u-tb-hide {
    display: none;
  }
}
.u-bg-navy {
  background-color: #0c243f;
}

.u-bg-gray {
  background-color: #f9f9f9;
}

.u-bg01,
.u-bg02 {
  position: relative;
}
.u-bg01::before,
.u-bg02::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.u-bg01::before {
  aspect-ratio: 288/193;
  background: url("../img/global/bg01.jpg") no-repeat center/cover;
}

.u-bg02::before {
  aspect-ratio: 1439/965;
  background: url("../img/global/bg02.jpg") no-repeat center/cover;
}

.u-text-center {
  text-align: center;
}

.u-twoColumnList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.u-twoColumnList li::before {
  content: "・";
  color: #0f4d93;
}

.c-secTitle,
.c-secTitle--center {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
}
.c-secTitle::before,
.c-secTitle--center::before {
  content: attr(data-en);
  color: #0f4d93;
  font-size: 5rem;
  font-weight: 700;
}

.c-secTitle--center {
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .c-secTitle::before,
  .c-secTitle--center::before {
    font-size: 4rem;
  }
}
.c-pageHeader {
  background: url("../img/global/header02.jpg") no-repeat center/cover;
  padding-top: 85px;
}

.c-pageHeader__inner {
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 5%;
  align-content: end;
  position: relative;
}

.c-pageHeader__ttl {
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(to right, #306bae, #0f4d93);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 70px;
}
.c-pageHeader__ttl::before {
  content: attr(data-en);
  font-size: 1.6rem;
  color: #363636;
  -webkit-text-fill-color: initial;
}

.c-visualHeader {
  height: 460px;
  padding-top: 85px;
  background: url("../img/global/header02.jpg") no-repeat bottom/cover;
}

.c-visualHeader__inner {
  height: 100%;
  padding-top: 70px;
  display: flex;
}

.c-visualHeader__txt {
  flex: 1;
  padding: 0 5vw;
  align-content: center;
}
.c-visualHeader__txt .c-breadcrumb {
  position: static;
}

.c-visualHeader__ttl {
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(to right, #306bae, #0f4d93);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 70px;
}
.c-visualHeader__ttl::before {
  content: attr(data-en);
  font-size: 1.6rem;
  color: #363636;
  -webkit-text-fill-color: initial;
}

.c-visualHeader__thumb {
  width: 65%;
  background: no-repeat center/cover;
  height: 300px;
}

.c-breadcrumb {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.post.post-news.current-item {
  display: inline-block;
  width: 15em;
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分を「...」にする */
  white-space: nowrap; /* 1行で表示 */
}

@media screen and (max-width: 1024px) {
  .c-visualHeader {
    height: 520px;
  }
  .c-visualHeader__inner {
    height: auto;
    flex-direction: column;
    gap: 25px;
    padding-top: 25px;
  }
  .c-visualHeader__thumb {
    width: 90%;
    height: 250px;
    margin: 0 auto;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .c-pageHeader {
    padding-top: 55px;
    height: auto;
    min-height: 220px;
    display: flex;
  }
  .c-pageHeader__inner {
    min-height: 20vh;
  }
  .c-pageHeader__ttl {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
  .c-visualHeader {
    height: 480px;
    padding-top: 50px;
  }
  .c-visualHeader__ttl {
    font-size: 3.2rem;
  }
  .c-visualHeader__txt .c-breadcrumb {
    justify-content: right;
  }
  .c-visualHeader__thumb {
    height: 220px;
    background-size: cover;
  }
}
.c-btn {
  display: block;
  max-width: 300px;
  text-align: center;
  background: linear-gradient(to right, #4685cd, #0f4d93, #4685cd);
  background-size: 200% 100%;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 1.25em 1.5em;
  transition: all 0.25s ease-in-out;
}
.c-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c-btn span::after {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/2;
  margin-top: -2px;
  transition: all 0.25s ease-in-out;
  background: url("../img/icon/arrow.svg") no-repeat center/contain;
}
.c-btn:hover {
  background-position: 100% 0;
}
.c-btn:hover span::after {
  transform: translateX(4px);
}

.c-btn--white {
  background: #fff;
  color: #306bae;
  border: 1px solid #306bae;
}
.c-btn--white span::after {
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
}

.c-btn--transparent {
  background: transparent;
  border: 1px solid #fff;
}

.c-btn--small {
  font-size: 1.4rem;
}
.c-btn--small span::after {
  width: 7px;
  margin-top: -2px;
}

.c-btn--mail span::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/mail.svg") no-repeat center/contain;
  width: 16px;
  aspect-ratio: 4/3;
}
.c-btn--mail span::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 250px;
  }
  .c-btn:not(.c-btn--small) {
    font-size: 1.6rem;
  }
}
.c-cvArea {
  color: #0f4d93;
  padding: 100px 0 36px;
}

.c-cvArea__box {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, auto);
  padding: 50px 60px;
}

.c-cvArea__head {
  padding: 0 55px 0 0;
}

.c-cvArea__body {
  text-align: center;
  font-weight: 600;
  padding: 0 0 0 55px;
  border-left: 1px solid #0f4d93;
}
.c-cvArea__body p {
  line-height: 1.4;
}

.c-cvBtnArea {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 12px;
}

.c-btnTel__no {
  font-size: 3.6rem;
}
.c-btnTel__no::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/tel.svg") no-repeat center/contain;
  width: 0.5em;
  aspect-ratio: 25/37;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .c-cvArea__box {
    grid-template-columns: 1fr;
    padding: 35px;
  }
  .c-cvArea__head {
    padding: 0 0 30px 0;
    text-align: center;
  }
  .c-cvArea__body {
    padding: 30px 0 0 0;
    border-left: none;
    border-top: 1px solid #0f4d93;
  }
  .c-btnTel__no {
    font-size: 2.4rem;
  }
}
.c-newslist--archive {
  margin-top: 40px;
}

.c-newslist__item {
  transition: all 0.25s ease-in-out;
}
.c-newslist__item:not(:first-child) {
  border-top: 1px solid #d1d1d1;
}
.c-newslist__item:hover {
  opacity: 0.8;
}
.c-newslist__item:hover a::after {
  transform: translateX(4px);
}

.c-newslist__anchor {
  display: grid;
  grid-template-columns: 82px 90px auto;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 12px;
  padding: 15px 15px 15px 0;
  position: relative;
}
.c-newslist__anchor::after {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 2/3;
  transition: all 0.25s ease-in-out;
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
  position: absolute;
  right: 10px;
  bottom: 21px;
}

.c-newslist__time {
  letter-spacing: 0;
}

.c-newslist__cat {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.c-newslist__cat span {
  display: inline-block;
  width: 100%;
  max-width: 90px;
  text-align: center;
  background: #306bae;
  color: #fff;
  padding: 5px 8px;
}

.c-newslist__ttl {
  color: #306bae;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-pagination {
  font-size: 1.4rem;
  margin-top: 50px;
}
.c-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.c-pagination span,
.c-pagination a:not(.next, .prev) {
  display: inline-block;
  color: #306bae;
  border: 1px solid #306bae;
  padding: 8px;
}
.c-pagination span.current,
.c-pagination a:not(.next, .prev):hover {
  background: #306bae;
  color: #fff;
}
.c-pagination .next,
.c-pagination .prev {
  color: #306bae;
}
.c-pagination .next:hover,
.c-pagination .prev:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .c-newslist__anchor {
    grid-template-columns: 82px auto;
  }
  .c-newslist__cat {
    font-size: 1.2rem;
  }
  .c-newslist__ttl {
    grid-column: span 2;
  }
}
/* -------------------------
   STEP
------------------------- */
.c-step__title {
  text-align: center;
  font-size: 2.4rem;
}

.c-step__txt {
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
}

.c-step__list {
  margin: 40px auto 0;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.c-step__list::before {
  content: "";
  position: absolute;
  top: 8px;
  left: calc(16.6666666667% + 4px);
  right: calc(16.6666666667% + 4px);
  height: 2px;
  background: #306bae;
  z-index: 1;
}

.c-step__item {
  position: relative;
  text-align: center;
  color: #aaa;
  font-weight: 500;
  font-size: 14px;
  padding-top: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 1;
  z-index: 2;
}
.c-step__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #306bae;
  transition: all 0.3s ease;
  z-index: 3;
}

/* アクティブ状態 */
.c-step__item.is-active {
  color: #306bae;
  font-weight: 600;
}
.c-step__item.is-active::before {
  animation: rippleWave 2s ease-out infinite;
}

@keyframes rippleWave {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.9);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(52, 152, 219, 0);
  }
  50.1%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
  }
}
@media screen and (max-width: 768px) {
  .c-step__list {
    font-size: 1.2rem;
    margin-top: 30px;
  }
  .c-step__txt {
    margin-top: 30px;
  }
}
/* -------------------------
   FORM LAYOUT
------------------------- */
.c-pageContact {
  padding: 80px 0;
}

.c-formTbl {
  width: 100%;
  margin-top: 50px;
}

.c-formTbl__title {
  width: 260px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #d1d1d1;
  position: relative;
}

.ico {
  display: inline-block;
  font-size: 1rem;
  padding: 4px 5px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
}
.ico.must {
  background: #306bae;
}
.ico.optional {
  background: #aaa;
}

.c-formTbl__input {
  width: calc(100% - 260px);
  padding: 1.2em;
  border: 1px solid #d1d1d1;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d1d1d1;
  padding: 10px;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #aaa;
}

textarea {
  padding: 10px;
}

input[type=checkbox]:checked ~ label::before {
  background: #306bae;
}
input[type=checkbox]:checked ~ label::after {
  opacity: 1;
}
input[type=checkbox] ~ label:hover {
  color: #306bae;
}

.c-checkList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-checkLabel {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
}

.c-checkList label,
.c-checkLabel label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-checkList label::before,
.c-checkLabel label::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  border: 1px solid #306bae;
}
.c-checkList label::after,
.c-checkLabel label::after {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url("../img/icon/check.svg") no-repeat center/cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.c-formComment {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 1em;
}

.c-privacyTxt {
  text-align: center;
  margin-top: 40px;
}
.c-privacyTxt a {
  color: #306bae;
  text-decoration: underline;
}
.c-privacyTxt a:hover {
  opacity: 0.8;
}

.c-privacyCheck {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.c-errorMsg {
  font-size: 1.4rem;
  line-height: 1.5;
  border: 1px solid #853b3b;
  background: #faebeb;
  padding: 10px;
  margin-top: 1em;
  position: relative;
}
.c-errorMsg li {
  padding-left: 20px;
}
.c-errorMsg li + li {
  margin-top: 10px;
}
.c-errorMsg::before {
  content: "";
  display: inline-block;
  color: #b56f6f;
  width: 1em;
  aspect-ratio: 1/1;
  background: url("../img/icon/exclamation.svg") no-repeat center/contain;
  position: absolute;
  top: 10px;
  left: 10px;
}

.c-btnArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  margin-top: 40px;
}

.c-formBtn {
  display: inline-block;
  text-align: center;
  padding: 1.2em;
  min-width: 280px;
  background: #306bae;
  color: #fff;
  font-weight: bold;
}

.c-formBtn--prev {
  background: #fff;
  border: 1px solid #306bae;
  color: #306bae;
}

@media screen and (max-width: 768px) {
  .c-pageContact {
    font-size: 1.4rem;
    padding: 55px 0;
  }
  .c-formTbl__title,
  .c-formTbl__input {
    display: block;
    width: 100%;
    padding: 14px;
  }
  .ico {
    top: 12px;
    right: 14px;
  }
  .c-privacyTxt {
    margin-top: 20px;
  }
  .c-formTbl__input {
    border-top: none;
  }
  .c-formTbl__row:not(:last-of-type) .c-formTbl__input {
    border-bottom: none;
  }
}
/* -------------------------
   COMPLETE PAGE
------------------------- */
.c-completePage__btn {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.c-completePage__box {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.c-completePage__box:first-of-type {
  padding-top: 50px;
}
.c-completePage__box h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #306bae;
}

/* -------------------------
   ERROR PAGE
------------------------- */
.c-errorPage {
  text-align: center;
  min-height: 60vh;
  align-content: center;
}

.c-errorPage__ttl {
  font-size: 3.2rem;
  margin-bottom: 1em;
}

.c-errorPage__btn {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.p-kv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  align-content: end;
  color: #fff;
  container-type: inline-size;
  padding-bottom: 5vh;
}

.p-kv__carousel {
  height: 95%;
  display: grid;
  grid-template-columns: 51.3% auto;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-kv__group {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-kv__slide {
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 2s ease-in-out, transform 6s ease-out;
  z-index: 1;
}

.p-kv__slide.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.p-kv__slide.zoom-out {
  opacity: 0;
  transform: scale(1);
  z-index: 3;
}

.p-kv__txt {
  font-size: 7.7cqw;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0px 14px rgba(0, 0, 0, 0.2);
}
.p-kv__txt br {
  display: none;
}

.p-kv__link {
  position: absolute;
  right: 0;
  bottom: 30%;
  /* 初期状態は完全表示 */
  transform: translateX(0);
  transition: transform 1s ease-in-out;
  /* 引っ込んだ状態 */
}
.p-kv__link.is-hidden {
  transform: translateX(69%);
}

.p-kv__link:hover {
  animation: none; /* ホバー時はアニメーションを停止 */
  transform: translateX(0);
}

.p-kv__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  animation: fadeInScroll 2s ease-in-out 2s forwards;
}

.p-kv__dot {
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #d9d9d9;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.p-kv__dot.active {
  background-color: #454545;
}

@media screen and (max-width: 768px) {
  .p-kv {
    height: 90vh;
    align-content: center;
    margin-top: 50px;
  }
  .p-kv__link {
    width: 260px;
    bottom: 8%;
  }
  .p-kv__carousel {
    grid-template-columns: 1fr;
  }
  .p-kv__pagination {
    bottom: 0;
  }
  .p-kv__txt {
    font-size: 13.9cqw;
    text-align: left;
    padding-left: 10px;
  }
  .p-kv__txt br {
    display: block;
  }
}
.p-topNews {
  background: #fff;
  padding: 44px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 36px;
  margin: 80px 0 40px;
}
.p-topNews .c-btn {
  margin-top: 40px;
}

.p-topNews__head {
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-topNews {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 20px;
  }
  .p-topNews .c-btn {
    margin: 30px auto 0;
  }
}
.p-productBg {
  position: relative;
}
.p-productBg::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 288/193;
  background: url("../img/global/bg01.jpg") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translateY(50%);
}

.p-topProduct {
  display: grid;
  grid-template-columns: 45% auto;
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 32px;
}

.p-topProduct__group {
  margin-top: 20px;
}

.p-topProduct__item {
  position: relative;
}
.p-topProduct__item:hover {
  opacity: 0.8;
}
.p-topProduct__item:hover .p-topProduct__ttl h3::after {
  transform: translate(4px, -50%);
}

.p-topProduct__img {
  position: relative;
  height: 100%;
}
.p-topProduct__img img {
  position: absolute;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.25s ease-in-out;
}

.p-topProduct__sp {
  display: none;
}

.p-topProduct__anchor {
  display: flex;
  align-items: flex-end;
  transition: all 0.25s ease-in-out;
}

.p-topProduct__ttl {
  width: 100%;
  color: #0f4d93;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #d1d1d1;
  padding: 24px 0;
}
.p-topProduct__ttl::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #306bae;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-topProduct__ttl h3 {
  display: flex;
  flex-direction: column;
}
.p-topProduct__ttl h3::before {
  content: attr(data-en);
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.p-topProduct__ttl h3::after {
  content: "";
  display: inline-block;
  text-align: center;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #0f4d93;
  background-image: url("../img/icon/arrow-dark.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 768px) {
  .p-topProduct {
    grid-template-columns: 1fr;
  }
  .p-topProduct__item:not(:first-child) {
    margin-top: 20px;
  }
  .p-topProduct__ttl {
    font-size: 2.2rem;
    padding-bottom: 10px;
  }
  .p-topProduct__ttl::before {
    width: 120px;
  }
  .p-topProduct__ttl::after {
    font-size: 1.2rem;
  }
  .p-topProduct__ttl h3::before {
    font-size: 1.3rem;
  }
  .p-topProduct__anchor {
    flex-direction: column;
  }
  .p-topProduct__img {
    display: none;
  }
  .p-topProduct__sp {
    display: block;
    margin-top: 20px;
    aspect-ratio: 7/5;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-topAbout__inner {
  display: grid;
  grid-template-columns: auto 300px;
  align-items: center;
  gap: 32px;
}

.p-topAbout__txt {
  margin: 32px 0;
}

.p-topAbout__img {
  height: 480px;
}
.p-topAbout__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1176px) {
  .p-topAbout {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
  .p-topAbout__txt {
    margin-bottom: 0;
  }
  .p-topAbout__content {
    padding: 0;
  }
  .p-topAbout__img {
    height: 250px;
    order: 2;
  }
  .p-topAbout__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
.p-topStrength {
  padding-top: 80px;
  overflow: hidden;
}

.p-topStrength__inner {
  display: flex;
  gap: 30px;
}

.p-topStrength__content {
  height: 500px;
  align-content: center;
  margin-left: calc((100vw - 1080px) / 2);
}
.p-topStrength__content p {
  margin-top: 40px;
}
.p-topStrength__content .c-btn {
  margin-top: 32px;
}

/* スライダー */
.p-strengthSlide {
  max-width: 60%;
  overflow: hidden;
  color: #fff;
  position: relative;
  padding-bottom: 60px;
}

.swiper-strength {
  overflow: visible;
}
.swiper-strength .swiper-wrapper {
  align-items: stretch;
}
.swiper-strength .swiper-slide {
  height: auto;
  width: 350px !important;
}

.p-strengthSlide__item {
  width: 100%;
  aspect-ratio: 7/10;
  background: no-repeat center/cover;
  position: relative;
  transition: 0.3s ease;
}

.p-strengthSlide__item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.p-strengthSlide__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
  align-content: flex-end;
}

.p-strengthSlide__item:hover {
  opacity: 0.8;
}

.slide-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.slide-counter__prev,
.slide-counter__next {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  padding: 0;
}

.slide-counter__prev:hover,
.slide-counter__next:hover {
  opacity: 0.7;
}

.slide-counter__prev::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
  transform: rotate(180deg);
}

.slide-counter__next::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
}

.slide-counter__current {
  font-weight: 600;
  text-align: center;
  color: #0f4d93;
  min-width: 25px;
}

.slide-counter__progress {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.slide-counter__total {
  font-weight: 600;
  text-align: center;
  color: #d1d1d1;
  min-width: 25px;
}

.progress-segment {
  width: 20px;
  height: 4px;
  background: #d1d1d1;
  transition: background 0.3s ease;
}
.progress-segment.active {
  background: #0f4d93;
}

.p-strengthSlide__subttl {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-strengthSlide__ttl {
  font-size: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.p-strengthSlide__ttl::after {
  content: "";
  display: inline-block;
  text-align: center;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  background-image: url("../img/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

@media screen and (max-width: 1140px) {
  .p-strengthSlide {
    max-width: 100%;
  }
  .p-topStrength__inner {
    flex-direction: column;
    width: 94%;
    margin: 0 auto;
  }
  .p-topStrength__content {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-topStrength {
    padding-top: 55px;
  }
  .swiper-strength .swiper-slide {
    width: 250px !important;
  }
  .p-strengthSlide__ttl {
    font-size: 2.8rem;
  }
  .p-strengthSlide__ttl::after {
    width: 35px;
  }
}
.p-linkBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-linkBox__item {
  position: relative;
  aspect-ratio: 5/4;
}
.p-linkBox__item::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("../img/pages/home/overlay.jpg") no-repeat center/cover;
  transition: 0.3s;
}
.p-linkBox__item::after {
  content: "";
  display: inline-block;
  width: 54px;
  aspect-ratio: 1/1;
  background: url("../img/pages/home/link-arrow.png") no-repeat center/cover;
  position: absolute;
  right: 60px;
  bottom: 50px;
}
.p-linkBox__item:nth-child(1) {
  background: url("../img/pages/home/bg-facility.jpg") no-repeat center/cover;
}
.p-linkBox__item:nth-child(2) {
  background: url("../img/pages/home/bg-partner.jpg") no-repeat center/cover;
}
.p-linkBox__item:hover {
  color: #fff;
}
.p-linkBox__item:hover::before {
  opacity: 0;
}
.p-linkBox__item:hover .c-secTitle::before {
  color: #fff;
}
.p-linkBox__item .c-secTitle {
  position: absolute;
  left: 60px;
  top: 20%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-linkBox {
    grid-template-columns: 1fr;
  }
  .p-linkBox__item {
    aspect-ratio: 3/2;
  }
  .p-linkBox__item::after {
    width: 40px;
    right: 40px;
    bottom: 30px;
  }
  .p-linkBox__item .c-secTitle {
    top: 30px;
    left: 40px;
  }
}
.p-partner {
  color: #fff;
  text-align: center;
  background: url("../img/pages/home/partner.jpg") no-repeat center/cover;
  padding: 100px 0;
}
.p-partner .c-btn {
  margin: 40px auto 0;
}

.p-partner__ttl {
  font-size: 3.2rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-partner {
    padding: 55px 0;
  }
}
/* -------------------------
   ABOUT
------------------------- */
.p-aboutWrapper {
  margin-bottom: 70px;
}

.p-message {
  margin-top: 56px;
}

.p-message__img {
  min-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-message__ttl {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 10px;
}

.p-message__name {
  text-align: right;
  font-weight: 600;
  margin-top: 20px;
}

.p-philosophy {
  position: relative;
}

.p-philosophy__figure {
  position: absolute;
  width: clamp(280px, 40cqw, 450px);
  top: -20px;
  right: 0;
}

.p-philosophy__list {
  border-bottom: 1px solid #d1d1d1;
  margin-top: 74px;
  container-type: inline-size;
}

.p-philosophy__item {
  counter-increment: mvv;
  padding: 40px 0;
  border-top: 1px solid #d1d1d1;
}

.p-philosophy__inner {
  display: grid;
  grid-template-columns: 200px auto;
  row-gap: 8px;
  padding-left: 48px;
  position: relative;
}
.p-philosophy__inner::before {
  content: counter(mvv, decimal-leading-zero);
  font-size: 3.2rem;
  font-weight: 600;
  color: #306bae;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}

.p-philosophy__ttl {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
}
.p-philosophy__ttl::before {
  content: attr(data-en);
  font-size: 3.2rem;
  color: #306bae;
}

.p-philosophy__txt {
  width: 34cqw;
  padding-top: 7px;
  line-height: 1.5;
}

.p-value {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 80px;
}

.p-value__item {
  background: #f9f9f9;
  padding: 30px 20px;
}

.p-value__txt {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}

.p-value__ttl {
  color: #363636;
  font-size: 2.4rem;
}
.p-value__ttl::first-letter {
  display: inline-block;
  font-size: 2.8rem;
  margin-right: 1px;
  background: linear-gradient(to right, #306bae, #0f4d93);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.p-companyDetails {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.p-companyDetails dt,
.p-companyDetails dd {
  padding: 18px 10px;
}
.p-companyDetails dt {
  border-bottom: 2px solid #0f4d93;
}
.p-companyDetails dd {
  border-bottom: 1px solid #d1d1d1;
}

@media screen and (max-width: 1024px) {
  .p-philosophy__txt {
    width: 100%;
  }
  .p-philosophy__figure {
    position: static;
    width: 80%;
    max-width: 500px;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-aboutWrapper {
    margin-bottom: 0;
  }
  .p-message {
    margin-top: 40px;
  }
  .p-message__ttl {
    font-size: 2.1rem;
  }
  .p-philosophy__list {
    margin-top: 40px;
  }
  .p-philosophy__item {
    padding: 25px 0;
  }
  .p-philosophy__inner {
    grid-template-columns: 1fr;
  }
  .p-philosophy__inner::before {
    font-size: 2.8rem;
    top: 4px;
  }
  .p-philosophy__ttl::before {
    font-size: 2.8rem;
  }
  .p-value {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
  }
  .p-value__item {
    padding: 14px;
  }
  .p-value__ttl {
    font-size: 1.8rem;
  }
  .p-value__ttl::first-letter {
    font-size: 2.1rem;
  }
  .p-value__txt {
    font-size: 1.4rem;
  }
  .p-companyDetails {
    grid-template-columns: 1fr;
    margin-top: 30px;
    border-top: 2px solid #0f4d93;
  }
  .p-companyDetails dt,
  .p-companyDetails dd {
    padding: 15px 10px;
  }
  .p-companyDetails dd {
    font-size: 1.4rem;
    border-bottom: 2px solid #0f4d93;
  }
  .p-companyDetails dt {
    border-bottom: 1px solid #d1d1d1;
  }
}
/* -------------------------
   FACILITY
------------------------- */
.p-facilityNav {
  color: #0f4d93;
  margin-top: 70px;
}

.p-facilityNav__list {
  display: grid;
  grid-template-columns: repeat(2, 240px);
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p-facilityNav__item {
  font-weight: 700;
  border-bottom: 2px solid #0f4d93;
}

.p-facilityNav__anchor {
  display: block;
  padding: 20px 0;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.p-facilityNav__anchor::after {
  content: "";
  display: inline-block;
  width: 11px;
  aspect-ratio: 1/1;
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
  margin-left: 8px;
  transform: rotate(90deg);
}
.p-facilityNav__anchor:hover {
  transform: translateY(4px);
}
.p-facility {
  padding: 70px 0;
  scroll-margin-top: 15px;
}

.p-facility__name {
  color: #0f4d93;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1em;
}

.p-facility__cat {
  text-align: center;
  font-size: 2.4rem;
}

.p-facility__group:not(:first-child) {
  margin-top: 60px;
}

.p-facility__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 30px;
  margin-top: 30px;
}

.p-facility__figure figcaption {
  font-weight: 600;
  margin-top: 12px;
}

.facility-main-slider {
  max-width: 800px;
  margin: 0 auto;
}

.slider-hidden {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
}

.facility-main-slider.swiper-slide-thumb-active {
  opacity: 1;
}

.facility-thumb-slider {
  width: 90%;
  max-width: 700px;
  position: initial;
  margin: 0 auto;
}
.facility-thumb-slider .swiper-slide-thumb-active {
  opacity: 0.5;
}

.facility-thumb-next {
  background: #fff;
  top: 65%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid #306bae;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.facility-thumb-next::after {
  font-size: 12px;
  color: #306bae;
  font-weight: 700;
}

.facility-thumb-prev {
  background: #fff;
  top: 65%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid #306bae;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.facility-thumb-prev::after {
  font-size: 12px;
  color: #306bae;
  font-weight: 700;
}

.p-facilityTable {
  width: 100%;
}
.p-facilityTable:not(:first-child) {
  margin-top: 60px;
}

.p-facilityTable__scroll {
  background: white;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
  margin-top: 30px;
}
.p-facilityTable__scroll thead {
  color: #fff;
  background: linear-gradient(to right, #306bae, #0f4d93);
  font-weight: 600;
}
.p-facilityTable__scroll th {
  padding: 20px 30px;
  text-align: left;
}
.p-facilityTable__scroll td {
  padding: 20px 30px;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}
.p-facility__group + .p-facilityTable__scroll {
  margin-top: 60px;
}

.p-facilityTable th:last-child,
.p-facilityTable td:last-child {
  width: 25%;
}

.p-facilityTable__cat {
  background: #f9f9f9;
  vertical-align: middle;
  width: 265px;
}

@media screen and (max-width: 768px) {
  .p-facilityNav {
    margin-top: 0;
  }
  .p-facilityNav__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-facility {
    padding: 55px 0;
  }
  .p-facility__list {
    grid-template-columns: 1fr;
  }
  .p-facility__name {
    font-size: 2.4rem;
  }
  .p-facilityTable__scroll {
    overflow-x: scroll;
  }
  .p-facilityTable__scroll::before {
    content: "←スライドで表の詳細を確認できます→";
    color: #666;
    font-size: 90%;
    display: block;
    margin-bottom: 10px;
  }
  .p-facilityTable__scroll th,
  .p-facilityTable__scroll td {
    padding: 15px 30px;
    min-width: 200px;
  }
}
/* -------------------------
   PARTNER
------------------------- */
.p-partnerLead__title {
  text-align: center;
  font-size: 3.6rem;
}

.p-partnerLead__text {
  margin-top: 30px;
}

.p-partnerNav {
  color: #0f4d93;
  margin-top: 70px;
}

.p-partnerNav__list {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p-partnerNav__item {
  font-weight: 700;
  border-bottom: 2px solid #0f4d93;
}

.p-partnerNav__anchor {
  display: block;
  padding: 20px 0;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.p-partnerNav__anchor::after {
  content: "";
  display: inline-block;
  width: 11px;
  aspect-ratio: 1/1;
  background: url("../img/icon/arrow-dark.svg") no-repeat center/contain;
  margin-left: 8px;
  transform: rotate(90deg);
}
.p-partnerNav__anchor:hover {
  transform: translateY(4px);
}
.p-partnerRecruit__position {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1.5em;
}

.p-partnerRecruit__inner {
  display: grid;
  grid-template-columns: minmax(37%, 260px) auto;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 35px;
}

.p-partnerRecruit__details {
  display: grid;
  grid-template-columns: 150px 1fr;
}
.p-partnerRecruit__details dt,
.p-partnerRecruit__details dd {
  padding: 15px 0;
  border-bottom: 1px solid #d1d1d1;
}
.p-partnerRecruit__details a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.p-partnerRecruit__list {
  display: grid;
  row-gap: 10px;
  list-style: disc inside;
}
.p-partnerRecruit__list li {
  padding-left: 20px;
  text-indent: -20px;
  line-height: 1.5;
}
.p-partnerRecruit__list li::marker {
  color: #306bae;
}

.p-partnerRecruit__list--2col {
  grid-template-columns: repeat(2, auto);
  -moz-column-gap: 20px;
       column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-partnerLead__title {
    font-size: 2.8rem;
  }
  .p-partnerNav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .p-partnerNav__anchor {
    font-size: 14px;
    padding: 10px 0;
  }
  .p-partnerRecruit__position {
    font-size: 2.1rem;
  }
  .p-partnerRecruit__inner {
    grid-template-columns: 1fr;
  }
  .p-partnerRecruit__img {
    max-width: 400px;
    margin: 0 auto;
  }
  .p-partnerRecruit__details {
    font-size: 1.4rem;
    grid-template-columns: 135px 1fr;
  }
  .p-partnerRecruit__list--2col {
    grid-template-columns: 1fr;
  }
}
/* -------------------------
   STRENGTH
------------------------- */
.p-strengthColumn {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: flex-start;
  gap: 180px;
  position: relative;
  margin-top: 90px;
}

.p-strengthMainTtl {
  color: #0f4d93;
  font-size: 3.2rem;
  margin-bottom: 1em;
}

.p-strengthNavi {
  position: sticky;
  top: 100px;
}
.p-strengthNavi a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #a4a4a4;
  line-height: 1;
  transition: all 0.25s ease-in-out;
}
.p-strengthNavi a::before {
  content: "";
  display: inline-block;
  text-align: center;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url("../img/icon/arrow-circle-grey.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease-in-out;
}
.p-strengthNavi a:not(:first-child) {
  margin-top: 15px;
}
.p-strengthNavi a.active, .p-strengthNavi a:hover {
  color: #0f4d93;
  font-weight: bold;
}
.p-strengthNavi a.active::before, .p-strengthNavi a:hover::before {
  background-image: url("../img/icon/arrow-circle-blue.svg");
}

.p-strengthItem {
  overflow: hidden;
  scroll-margin-top: 100px;
}
.p-strengthItem:not(:first-child) {
  margin-top: 90px;
}

.p-strengthItem__ttl {
  flex-shrink: 0;
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 2px solid #0f4d93;
  padding-bottom: 10px;
}
.p-strengthItem__ttl span {
  background: linear-gradient(to right, #306bae, #0f4d93);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.p-strengthItem__ttl span:first-child {
  width: 100%;
  font-size: 0.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-strengthItem__subttl {
  font-size: 2.4rem;
  display: block;
  margin-top: 15px;
  line-height: 1.8;
}

.p-strengthItem__txt {
  margin-top: 8px;
}

.p-strengthItem__img {
  margin-top: 30px;
  aspect-ratio: 13/5;
}
.p-strengthItem__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-strengthMainTtl {
    font-size: 2.8rem;
  }
  .p-strengthItem:not(:first-child) {
    margin-top: 60px;
  }
  .p-strengthItem__ttl {
    font-size: 2.4rem;
    gap: 5px;
  }
  .p-strengthItem__subttl {
    font-size: 1.8rem;
    margin-top: 12px;
  }
  .p-strengthItem__img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .p-strengthNavi {
    position: static;
    font-size: 1.4rem;
    border-radius: 10px;
    padding: 16px;
    background: #f9f9f9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .p-strengthNavi a {
    gap: 10px;
    color: #0f4d93;
    font-weight: bold;
  }
  .p-strengthNavi a::before {
    background-image: url("../img/icon/arrow-circle-blue.svg");
  }
  .p-strengthNavi a::before {
    width: 20px;
  }
  .p-strengthNavi a:not(:first-child) {
    margin-top: 0;
  }
  .p-strengthColumn {
    gap: 40px;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .p-strengthItem__subttl {
    font-size: 1.6rem;
  }
}
/* -------------------------
   SITEMAP
------------------------- */
.p-sitemap {
  background: #f9f9f9;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.5em;
}

.p-sitemap__list a:hover,
.p-sitemap__child a:hover {
  color: #306bae;
  text-decoration: underline;
}

.p-sitemap__icon::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/icon/external-link-blue.svg) no-repeat center/contain;
  margin-left: 5px;
}

.p-sitemap__list {
  padding: 0 50px;
  list-style: disc inside;
}
.p-sitemap__list li::marker {
  color: #306bae;
}
.p-sitemap__list li:not(:first-child) {
  margin-top: 1.5em;
}
.p-sitemap__list:nth-child(2) {
  border-left: 1px solid #d1d1d1;
}

.p-sitemap__child {
  list-style: circle inside;
  text-indent: 1.5em;
  margin-top: 1em;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .p-sitemap {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .p-sitemap__list {
    padding: 0;
  }
  .p-sitemap__list:nth-child(2) {
    border-left: none;
  }
}
/* -------------------------
   ERROR
------------------------- */
.p-error h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.p-error h2:not(:first-child) {
  margin-top: 40px;
}
.p-error ul {
  list-style: disc inside;
  margin-top: 20px;
  line-height: 1.4;
}
.p-error ul li {
  text-indent: -23px;
  padding-left: 23px;
}
.p-error ul li:not(:first-child) {
  margin-top: 10px;
}
.p-error ul li::marker {
  color: #306bae;
}

/* -------------------------
   COMMON STYLE
------------------------- */
.p-postProducts,
.p-postContent {
  padding: 80px 0;
  word-wrap: break-word;
}
.p-postProducts .wp-block-heading,
.p-postContent .wp-block-heading {
  line-height: 1.5;
  margin-bottom: 0;
}
.p-postProducts .wp-block-heading:not(:first-child),
.p-postContent .wp-block-heading:not(:first-child) {
  margin-top: 3em;
}
.p-postProducts h1,
.p-postProducts h2,
.p-postContent h1,
.p-postContent h2 {
  font-size: 3.2rem;
}
.p-postProducts h2,
.p-postContent h2 {
  margin-bottom: 1em;
}
.p-postProducts h3,
.p-postContent h3 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.p-postProducts h4,
.p-postContent h4 {
  font-size: 2.1rem;
}
.p-postProducts h5,
.p-postContent h5 {
  font-size: 1.8rem;
}
.p-postProducts h6,
.p-postContent h6 {
  font-size: 1.6rem;
}
.p-postProducts p,
.p-postContent p {
  margin-top: 30px;
}
.p-postProducts p + p,
.p-postContent p + p {
  margin-top: 0.8em;
}
.p-postProducts p a,
.p-postContent p a {
  color: #306bae;
  text-decoration: underline;
}
.p-postProducts p a:hover,
.p-postContent p a:hover {
  opacity: 0.8;
}
.p-postProducts .wp-block-list,
.p-postContent .wp-block-list {
  line-height: 1.6;
  margin-top: 30px;
}
.p-postProducts .wp-block-list li,
.p-postContent .wp-block-list li {
  padding-left: 20px;
  text-indent: -23px;
}
.p-postProducts .wp-block-list li + li,
.p-postContent .wp-block-list li + li {
  margin-top: 0.8em;
}
.p-postProducts ol.wp-block-list,
.p-postContent ol.wp-block-list {
  list-style: decimal inside;
}
.p-postProducts .wp-block-quote,
.p-postContent .wp-block-quote {
  padding: 1.5em;
  border-left: 4px solid #ccc;
  margin-top: 30px;
}
.p-postProducts .wp-block-details summary,
.p-postContent .wp-block-details summary {
  padding: 1em 0;
}
.p-postProducts .wp-block-details p,
.p-postContent .wp-block-details p {
  margin-top: 0;
}
.p-postProducts .wp-block-details,
.p-postProducts .wp-block-image,
.p-postContent .wp-block-details,
.p-postContent .wp-block-image {
  margin-top: 30px;
}
.p-postProducts .wp-block-table,
.p-postContent .wp-block-table {
  margin-top: 30px;
}
.p-postProducts .wp-block-table thead,
.p-postContent .wp-block-table thead {
  border: none;
  background: #306bae;
  color: #fff;
}
.p-postProducts .wp-block-table thead th,
.p-postContent .wp-block-table thead th {
  border-color: #fff;
}
.p-postProducts .wp-block-table td,
.p-postProducts .wp-block-table th,
.p-postContent .wp-block-table td,
.p-postContent .wp-block-table th {
  border-color: #306bae;
  padding: 0.8em;
}
.p-postProducts .wp-block-buttons,
.p-postContent .wp-block-buttons {
  margin-top: 60px;
}
.p-postProducts .wp-block-button__link,
.p-postContent .wp-block-button__link {
  min-width: 250px;
  padding: 1.25em 1.5em;
  background: linear-gradient(to right, #4685cd, #0f4d93, #4685cd);
  background-size: 200% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease-in-out;
  font-size: 1.6rem;
  text-decoration: none;
}
.p-postProducts .wp-block-button__link::after,
.p-postContent .wp-block-button__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/2;
  margin-top: -2px;
  transition: all 0.25s ease-in-out;
  background: url("../img/icon/arrow.svg") no-repeat center/contain;
}
.p-postProducts .wp-block-button__link:hover,
.p-postContent .wp-block-button__link:hover {
  background-position: 100% 0;
}
.p-postProducts .wp-block-button__link:hover::after,
.p-postContent .wp-block-button__link:hover::after {
  transform: translateX(4px);
}

.p-backBtn {
  max-width: 94%;
  margin: 32px auto 0;
}
.p-backBtn .c-btn {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-postProducts,
  .p-postContent {
    padding: 55px 0;
  }
  .p-postProducts p,
  .p-postProducts .wp-block-list,
  .p-postProducts .wp-block-quote,
  .p-postProducts .wp-block-details,
  .p-postProducts .wp-block-image,
  .p-postProducts .wp-block-table,
  .p-postContent p,
  .p-postContent .wp-block-list,
  .p-postContent .wp-block-quote,
  .p-postContent .wp-block-details,
  .p-postContent .wp-block-image,
  .p-postContent .wp-block-table {
    margin-top: 20px;
  }
  .p-postProducts .wp-block-buttons,
  .p-postContent .wp-block-buttons {
    margin-top: 40px;
  }
  .p-postProducts h1,
  .p-postProducts h2,
  .p-postContent h1,
  .p-postContent h2 {
    font-size: 2.4rem;
  }
  .p-postProducts h3,
  .p-postContent h3 {
    font-size: 2.1rem;
  }
  .p-postProducts h4,
  .p-postContent h4 {
    font-size: 1.8rem;
  }
  .p-postProducts h5,
  .p-postContent h5 {
    font-size: 1.6rem;
  }
}
/* -------------------------
   NEWS
------------------------- */
.p-newsMeta {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.p-newsMeta__cat span {
  display: inline-block;
  color: #fff;
  background: #306bae;
  padding: 3px 5px;
}

.p-postContent ul.wp-block-list li {
  list-style: none;
}
.p-postContent ul.wp-block-list li::before {
  content: "■";
  color: #306bae;
  margin-right: 5px;
}

/* -------------------------
   PRODUCTS
------------------------- */
.p-postProducts .wp-block-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.p-postProducts ul.wp-block-list {
  list-style: disc inside;
}
.p-postProducts ul.wp-block-list li::marker {
  color: #306bae;
}
.p-postProducts section.wp-block-group {
  padding: 80px 0;
}
.p-postProducts section.wp-block-group:first-of-type {
  padding-top: 0;
}
.p-postProducts section.wp-block-group > div {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
}
.p-postProducts .wp-block-columns {
  margin-bottom: 0;
}
.p-postProducts .wp-block-columns .wp-block-image {
  margin-top: 0;
}
.p-postProducts .wp-block-columns .wp-block-heading {
  font-size: 2.4rem;
}
.p-postProducts .is-layout-grid {
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
  margin-top: 90px;
}
.p-postProducts .is-layout-grid .wp-block-heading {
  margin-top: 0.5em;
}

.p-postProducts__ttl p {
  line-height: 1.2;
}
.p-postProducts__ttl .wp-block-heading {
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .p-postProducts section.wp-block-group {
    padding: 55px 0;
  }
}
/* -------------------------
   PRODUCTS
------------------------- */
.p-productlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 35px;
  margin-top: 48px;
  align-items: stretch;
}

.p-productItem__item {
  background: #fff;
  transition: all 0.25s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-productItem__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-productItem__item:hover {
  opacity: 0.8;
}
.p-productItem__item:hover .p-productItem__summary::after {
  transform: translate(4px, -50%);
}

.p-productItem__thumb {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-productItem__summary {
  padding: 14px 18px;
  box-shadow: 0 2px 4px 0 rgba(164, 164, 164, 0.25);
  position: relative;
  flex: 1;
}
.p-productItem__summary::after {
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 1/1;
  transition: all 0.25s ease-in-out;
  background: url("../img/pages/products/arrow-bl.svg") no-repeat center/contain;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.p-productItem__category {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.p-productItem__category span {
  display: inline-block;
  color: #fff;
  background: #306bae;
  padding: 6px 10px;
  font-size: 1.2rem;
}

.p-productItem__ttl {
  font-size: 1.8rem;
  color: #306bae;
  margin-top: 8px;
  padding-right: 30px;
}

.p-bannerLink {
  display: block;
  color: #fff;
  transition: all 0.25s ease-in-out;
  padding: 50px 60px;
  margin-bottom: 100px;
  width: 100%;
  height: 280px;
  background: no-repeat center/cover;
  position: relative;
  align-content: center;
}
.p-bannerLink::before {
  content: "";
  display: block;
  background: rgba(54, 54, 54, 0.5);
  position: absolute;
  inset: 0;
}
.p-bannerLink::after {
  content: "";
  display: inline-block;
  width: 70px;
  aspect-ratio: 1/1;
  transition: all 0.25s ease-in-out;
  background: url("../img/pages/products/arrow-wh.svg") no-repeat center/contain;
  position: absolute;
  right: 60px;
  bottom: 60px;
}
.p-bannerLink:hover {
  opacity: 0.8;
}
.p-bannerLink:hover::after {
  transform: translateX(4px);
}

.p-bannerLink__txt {
  font-size: 2.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-bannerLink__txt span:first-child {
  content: attr(data-en);
  font-size: 6.4rem;
  line-height: 1;
}
.p-bannerLink__txt span:last-child {
  font-weight: 600;
}

.p-category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.p-category__item {
  text-align: center;
  color: #306bae;
  border: 1px solid #306bae;
  transition: all 0.25s ease-in-out;
  font-weight: 600;
}
.p-category__item a {
  display: block;
  padding: 20px;
}
.p-category__item.is-current, .p-category__item:hover {
  color: #fff;
  background: #306bae;
}

@media screen and (max-width: 768px) {
  .p-productItem__ttl {
    font-size: 1.8rem;
  }
  .p-bannerLink {
    height: 220px;
    padding: 20px;
    margin-bottom: 40px;
  }
  .p-bannerLink::after {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
  .p-bannerLink__txt {
    font-size: 2rem;
  }
  .p-bannerLink__txt span:first-child {
    font-size: 4rem;
  }
  .p-category {
    font-size: 1.4rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-category__item a {
    padding: 12px;
  }
}/*# sourceMappingURL=style.css.map */