@charset "UTF-8";
/* CSS Document */
@font-face {
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-display: swap;
}
/* 基本の文字色 */
/* 背景色 */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 750px) {
  .spNone {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .pcNone {
    display: none !important;
  }
}

.bold {
  font-weight: bold;
}

@media (max-width: 750px) {
  .spleft {
    text-align: left !important;
  }
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}
.center img {
  margin-right: auto;
  margin-left: auto;
}

.white {
  color: #fff;
}

.red {
  color: #e11c24;
}

.orange {
  color: #D59433;
}

.orange-second {
  color: #E79100;
}

.theme {
  color: #1D2F55;
}

/* タイトル・フォント */
.h1default {
  color: #1D2F55;
  font-size: calc(32 / 375 * 100vw);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.96px;
}
@media (min-width: 751px) {
  .h1default {
    font-size: 4rem;
  }
}

/* 見出し共通 */
.h2default,
.h2second,
.h3default,
.h4default {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.h2default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 751px) {
  .h2default {
    font-size: 2rem;
    gap: 0.5rem;
  }
}
.h2default::before {
  content: "";
  display: inline-block;
  width: calc(16 / 375 * 100vw);
  height: calc(16 / 375 * 100vw);
  background: url(../images/01_common/icon_title.svg) no-repeat center center/cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 751px) {
  .h2default::before {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
  }
}

@media (min-width: 751px) {
  .h2second {
    font-size: 2rem;
    line-height: 1.2;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.h3default {
  font-size: calc(20 / 375 * 100vw);
}
@media (min-width: 751px) {
  .h3default {
    font-size: 1.5rem;
  }
}

.h4default {
  font-size: 1.1em;
}

.marker_yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffff00));
  background: linear-gradient(transparent 60%, #ffff00 60%);
}

/* =========================================
   ボタン
   ========================================= */
/* ベース（全ボタン共通スタイル）*/
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: calc(20 / 375 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  width: calc(325 / 375 * 100vw);
  padding: calc(20 / 375 * 100vw) calc(10 / 375 * 100vw);
  border-radius: 9999px;
  border: 1px solid #1D2F55;
  background-color: transparent;
  color: #1D2F55;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media (min-width: 751px) {
  .btn {
    line-height: 1;
    font-size: 1.25rem;
    width: 24.625rem;
    padding: 1.5rem 3.125rem;
  }
}
.btn:hover {
  background-color: #1D2F55;
  border-color: #1D2F55;
  color: white;
}
.btn:focus-visible {
  outline: 2px solid #1D2F55;
  outline-offset: 2px;
}

/* 1. アイコン付きCTAボタン（メールアイコン＋ダーク背景） */
.btn-icon {
  background-color: #fff;
  color: #1D2F55;
  border-color: #1D2F55;
}
.btn-icon::before {
  content: "";
  display: inline-block;
  width: calc(26 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background: url(../images/01_common/icon_mail.png) no-repeat center center/contain;
}
@media (min-width: 751px) {
  .btn-icon::before {
    width: 1.625rem;
    height: 1.25rem;
  }
}
.btn-icon:hover {
  background-color: #1D2F55;
  color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn-icon:hover::before {
  background-image: url(../images/01_common/icon_mail-white.svg);
}

/* 2. 白ベースボタン（採用ページ） */
.btn-white {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 / 375 * 100vw);
}
.btn-white::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/01_common/icon_arrow-white.svg);
}
.btn-white:hover, .btn-white:focus {
  background-color: #fff;
  color: #1D2F55;
  border: 2px solid transparent;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 / 375 * 100vw);
}
.btn-white:hover::after, .btn-white:focus::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/01_common/icon_arrow-theme.svg);
}

/* 3. ベースボタン（404 など汎用） */
.btn-base {
  font-weight: 500;
  width: calc(287 / 375 * 100vw);
  padding-block: calc(16 / 375 * 100vw);
  padding-inline: calc(24 / 375 * 100vw);
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(0 / 375 * 100vw);
}
.btn-base::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/01_common/icon_arrow-theme.svg);
}
@media (min-width: 751px) {
  .btn-base {
    font-size: 1rem;
    border: 2px solid #1D2F55;
    line-height: 1.5;
    width: 17.75em;
    padding-block: 1rem;
    padding-inline: 1.5rem;
  }
}
.btn-base:hover {
  background-color: #1D2F55;
  color: white;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(16 / 375 * 100vw);
}
.btn-base:hover::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/01_common/icon_arrow-white.svg);
}

/* 4. ページ内アンカーボタン（採用ページ ナビリスト向け） */
.btn-anchor {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #1D2F55;
  min-width: auto;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid #1D2F55;
  border-radius: 9999px;
  padding: calc(16 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 751px) {
  .btn-anchor {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
.btn-anchor .icon-arrow {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/01_common/icon_arrow-down.svg) no-repeat center center/contain;
}
.btn-anchor:hover {
  background-color: #213051;
  border-color: #213051;
  color: white;
}
.btn-anchor:hover .icon-arrow {
  background: url(../images/01_common/icon_arrow-down-white.png) no-repeat center center/contain;
}

/* コンテンツ */
#breadcrumb {
  font-size: calc(14 / 375 * 100vw);
  padding-top: 1rem;
  margin-bottom: calc(50 / 375 * 100vw);
}
@media (min-width: 751px) {
  #breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.125rem;
  }
}
#breadcrumb li {
  position: relative;
  display: inline;
  padding-right: 1.5em;
}
#breadcrumb li:not(:last-child):after {
  position: absolute;
  top: 0.5em;
  right: 0.6em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #1D2F55;
  border-right: 1px solid #1D2F55;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
}
#breadcrumb a {
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
}
#breadcrumb a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.pagenav {
  margin-top: 1em;
}
.pagenav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagenav li {
  margin: 0 0.25em;
}
.pagenav li a,
.pagenav li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3em;
  height: 3em;
  font-size: 0.85em;
  text-decoration: none;
  border: 1px solid #1D2F55;
}
.pagenav .link_page,
.pagenav .current_page {
  text-align: center;
  line-height: 2;
  margin: 0 0.25em;
}
.pagenav .link_page {
  color: white;
  background-color: #1D2F55;
}
.pagenav .link_page:hover {
  color: #1D2F55;
  background-color: white;
  opacity: 1;
}
.pagenav .current_page {
  color: #1D2F55;
  background-color: white;
}

/* ページ内リンク */
.pagelink-box {
  margin-bottom: calc(44 / 375 * 100vw);
}
@media (min-width: 751px) {
  .pagelink-box {
    margin-bottom: 2.5rem;
  }
}
.pagelink-box .pagelinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 751px) {
  .pagelink-box .pagelinks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.kakomi {
  background-color: whitesmoke;
  padding: 2em;
}
@media (max-width: 750px) {
  .kakomi {
    padding: 1em;
  }
}

@media (min-width: 751px) {
  .imgflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 751px) {
  .imgflex .imgbox {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 46%;
            flex: 1 0 46%;
    max-width: 46%;
  }
}
@media (max-width: 750px) {
  .imgflex .textbox {
    padding-top: 1em;
  }
}
@media (min-width: 751px) {
  .imgflex .textbox {
    padding-left: 2em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 750px) {
  .imgflex.alter .textbox {
    padding-top: 1em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter .textbox {
    padding-right: 2em;
    padding-left: 0;
  }
}

.wp-caption-text {
  font-size: 0.8em;
  color: gray;
  line-height: 1.4 !important;
  margin-top: 0.5em;
}

.tablelist {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 750px) {
  .tablelist.block table {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .tablelist.block th,
  .tablelist.block td {
    display: block;
    white-space: normal;
  }
}

table {
  width: 100%;
  border-top: 1px solid #1D2F55;
  border-right: 1px solid #1D2F55;
}
table th,
table td {
  line-height: 1.6;
  border-bottom: 1px solid #1D2F55;
  border-left: 1px solid #1D2F55;
  vertical-align: middle;
  padding: 1em;
}
@media (max-width: 750px) {
  table th,
  table td {
    white-space: nowrap;
    padding: 0.5em 0.75em;
  }
}
table th {
  text-align: center;
  white-space: nowrap;
}
table thead {
  color: white;
  background-color: #1D2F55;
}
table thead th {
  border-right: 1px solid white;
}
table tbody th {
  background-color: rgba(29, 47, 85, 0.2);
}
table tbody td {
  background-color: white;
}

.flickmessage {
  background-color: whitesmoke;
  text-align: center;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 751px) {
  .flickmessage {
    display: none;
  }
}

@media (min-width: 751px) {
  .dllist dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.dllist dt,
.dllist dd {
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  .dllist dt {
    margin-bottom: 0;
  }
}
@media (min-width: 751px) {
  .dllist dt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 751px) {
  .dllist dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 80%;
            flex: 1 0 80%;
    max-width: 80%;
  }
}

.cta_dl {
  background-color: whitesmoke;
  padding: 3em;
}
.cta_dl .title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}

.snsbox {
  text-align: center;
  margin-top: 1em;
}
.snsbox a {
  width: 2em;
  height: 2em;
  margin-right: 1em;
}
.snsbox a:hover {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .snsbox a {
    width: 5.3vw;
  }
}

.faqwrap .question,
.faqwrap .answer {
  position: relative;
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
}
.faqwrap .question::before,
.faqwrap .answer::before {
  position: absolute;
  top: 1em;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2em;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
}
.faqwrap .question {
  border-bottom: 1px solid #e6e6e6;
}
.faqwrap .question::before {
  content: "Q";
  color: white;
  background-color: #1D2F55;
}
.faqwrap .question h1 {
  font-size: 1.3em;
}
.faqwrap .answer::before {
  content: "A";
  color: #1D2F55;
  border: 1px solid #1D2F55;
}
.faqwrap .answer > div {
  font-size: 1.1em;
}
.faqwrap summary.question {
  cursor: pointer;
  list-style: none;
}
.faqwrap summary.question::-webkit-details-marker {
  display: none;
}
.faqwrap summary.question::marker {
  content: none;
}

.tabwrap .tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabwrap .tab-area .tab {
  width: 100%;
  background-color: lightgray;
  font-size: 1.1em;
  text-align: center;
  padding: 0.5em;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}
.tabwrap .tab-area .tab.active, .tabwrap .tab-area .tab:hover {
  color: white;
  background-color: #1D2F55;
}
.tabwrap .tab-area .tab.active {
  cursor: auto;
}
.tabwrap .content-area .content {
  display: none;
}
.tabwrap .content-area .content.show {
  display: block;
  -webkit-animation: show 0.5s linear 0s;
          animation: show 0.5s linear 0s;
}

article.postshosai .articleheader {
  margin-bottom: 2em;
}
article.postshosai .insert-image {
  margin: 1em 0;
}
article.postshosai .wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}
article.postshosai .wp-caption .insert-image {
  margin-bottom: 0;
}
article.postshosai .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}