@charset "UTF-8";
/**
 * 共通SCSSの読み込み
 * メインブロックの定義
 * 共通読み込みを変更する可能性あり
 */
/**
 * サイト共通変数設定
 */
/*
 * フォントサイズ
 */
/*
 * get_vwの設定
 */
/*
 * サイト共通部品 @mixin
 * ボタン周り
 */
.c-viewmore-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #0e182c;
  max-width: 320px;
  width: 60%;
  text-align: center;
  position: relative;
  z-index: 30;
}
@media (max-width: 768px) {
  .c-viewmore-btn {
    max-width: 100%;
    margin: 45px auto 0;
    width: 100%;
  }
}
.c-viewmore-btn.is-center {
  margin-left: auto;
  margin-right: auto;
}
.c-viewmore-btn a {
  display: block;
  padding: 1.8rem 0;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  color: #0e182c;
  position: relative;
}
@media (max-width: 768px) {
  .c-viewmore-btn a {
    font-size: 13px;
  }
}
.c-viewmore-btn a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0e182c;
  border-right: 1px solid #0e182c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-viewmore-btn a:hover::after {
  border-color: #fff;
}
.c-viewmore-btn a span {
  font-size: inherit;
  font-weight: inherit;
}
.c-viewmore-btn a span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #003288;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-viewmore-btn a:hover span {
  color: #fff;
}
.c-viewmore-btn a:hover span:before {
  width: 100%;
}

.c-viewmore-btn_black {
  background: #0e182c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #0e182c;
  max-width: 420px;
  height: clamp(10px, 3.7760416667vw, 58px);
  text-align: center;
  position: relative;
  z-index: 30;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black {
    height: 58px;
  }
}
.c-viewmore-btn_black.is-center {
  margin-left: auto;
  margin-right: auto;
}
.c-viewmore-btn_black.is-narrow {
  max-width: 335px;
}
.c-viewmore-btn_black a {
  height: 100%;
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  color: #fff !important;
  position: relative;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black a {
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-viewmore-btn_black a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-viewmore-btn_black a:hover::after {
  border-color: #0e182c;
}
.c-viewmore-btn_black a span {
  font-size: inherit;
  font-weight: inherit;
  line-height: clamp(10px, 3.7760416667vw, 58px);
}
.c-viewmore-btn_black a span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  background: #fff;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-viewmore-btn_black a:hover span {
  color: #0e182c;
}
.c-viewmore-btn_black a:hover span:before {
  width: 100%;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black {
    min-width: 100%;
    width: 100%;
  }
}

/**
 * アニメーションに関するCSS
 * 共通で使用することを想定して各ページの設定をまとめて記述
 **/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes scrollLine {
  0% {
    height: 0;
    top: -3px;
    opacity: 1;
  }
  30% {
    height: 56px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 106px;
    opacity: 1;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    top: -3px;
    opacity: 1;
  }
  30% {
    height: 56px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 106px;
    opacity: 1;
  }
}
@-webkit-keyframes scrollLineSp {
  0% {
    height: 0;
    top: -3px;
    opacity: 0.1;
  }
  30% {
    height: 62px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 124px;
    opacity: 0;
  }
}
@keyframes scrollLineSp {
  0% {
    height: 0;
    top: -3px;
    opacity: 0.1;
  }
  30% {
    height: 62px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 124px;
    opacity: 0;
  }
}
@-webkit-keyframes scrollImg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrollImg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1.6;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333333;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; /* form clear */
  -webkit-appearance: none !important;
}

/**
 * サイト共通設定
 */
html, body {
  color: #0e182c;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  width: 100%;
}

p {
  font-weight: 300;
}

/*
 * 共通CSS - ヘッダー
 */
.l-header {
  left: 0;
  margin: auto;
  padding-top: 3.7rem;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
.l-header.area-in {
  background-color: #fff;
  padding: 14px 0;
}
@media (max-width: 1000px) {
  .l-header {
    padding-bottom: 18px;
    padding-top: 0;
  }
  .l-header.is-active {
    height: 100%;
    left: auto;
    right: 0;
    width: 100%;
  }
  .l-header::after {
    background: #fff;
    content: "";
    height: 52px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    width: 52px;
    z-index: 10;
  }
  .l-header.is-active::after {
    height: 100%;
    width: 76%;
  }
  .l-header.area-in {
    height: 55px;
    padding-top: 0;
  }
}

.l-header__inner {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 1536px;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header__inner {
    display: block;
    height: auto;
    width: 100%;
  }
}
.l-header__inner .l-header__logo {
  left: clamp(20px, 1.953125vw, 30px);
  margin-top: 1.2rem;
  min-width: clamp(180px, 14.3229166667vw, 220px);
  position: relative;
}
.l-header__inner .l-header__logo a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.l-header__inner .l-header__logo a:hover {
  opacity: 0.5;
}
@media (max-width: 1000px) {
  .l-header__inner .l-header__logo {
    display: block;
    left: 0;
    margin: 2rem 0 0 3%;
    min-width: auto;
    width: 182px;
  }
}

.l-header__nav {
  margin-left: auto;
}
@media (max-width: 1000px) {
  .l-header__nav {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1000px) {
  .is-active .l-header__nav {
    -webkit-animation: 2s fadeIn forwards;
            animation: 2s fadeIn forwards;
    display: block;
    margin-top: 30px;
    padding: 0 30px;
    position: relative;
    visibility: visible;
    width: 76%;
    z-index: 20;
  }
}

.l-header__nav-btn {
  display: none;
}
@media (max-width: 1000px) {
  .l-header__nav-btn {
    background: #fff url(../images/common/menu-btn-bg.png) no-repeat center 16px;
    background-size: 31px auto;
    display: block;
    font-size: clamp(10px, 0.6510416667vw, 10px);
    font-weight: 700;
    height: 52px;
    padding-top: 26px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 52px;
    z-index: 20;
  }
  .l-header__nav-btn::after {
    content: "MENU";
    font-family: montserrat, sans-serif;
    font-weight: 700;
  }
  .l-header__nav-btn.is-active::after {
    content: "CLOSE";
  }
}

.l-sp-bg.is-active {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-header__nav-list .l-header__nav-item {
  margin-right: clamp(20px, 2.6041666667vw, 40px);
  position: relative;
}
.l-header__nav-list .l-header__nav-item:last-child {
  margin-right: 0;
}
.l-header__nav-list .l-header__nav-item.area-in {
  color: #009398;
}
.l-header__nav-list a {
  display: block;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
}
.l-header__nav-list a[target^=_blank]::after {
  background: url(../images/common/icon_blank.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin-left: 0.5em;
  vertical-align: -2px;
  width: 15px;
}
@media (max-width: 1000px) {
  .l-header__nav-list a[target^=_blank]::after {
    position: absolute;
    right: 8px;
  }
}
.l-header__nav-list a.arrow-icon {
  padding-right: 17px;
}
.l-header__nav-list a.arrow-icon::after {
  border-right: 2px solid #0e182c;
  border-top: 2px solid #0e182c;
  bottom: 7px;
  content: "";
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  width: 6px;
}
@media (max-width: 1000px) {
  .l-header__nav-list a.arrow-icon::after {
    right: 5px;
  }
}
@media (max-width: 1000px) {
  .l-header__nav-list {
    display: block;
  }
  .l-header__nav-list .l-header__nav-item {
    border-bottom: 1px solid #dbdbdb;
    position: relative;
    width: 100%;
  }
  .l-header__nav-list .l-header__nav-item.area-in {
    color: #0e182c;
  }
  .l-header__nav-list .l-header__nav-item a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    padding: 20px 0 4px;
    position: relative;
    width: 100%;
  }
  .l-header__nav-list .l-header__nav-item a[target^=_blank]::after {
    bottom: 8px;
    position: absolute;
    right: 80x;
  }
  .l-header__nav-list .l-header__nav-item a.arrow-icon::after {
    border-color: #003288;
    bottom: 8px;
    top: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 8px;
  }
  .l-header__nav-list .l-header__nav-item.is-active a.arrow-icon::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}
.l-header__nav-list .l-sub-menu {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.7);
  --webkit-backdrop-filter: blur(8px);
  position: absolute;
  top: 50px;
  left: -20px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: hidden;
  width: 190px;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu {
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 30px;
    opacity: 1;
    position: static;
    visibility: visible;
  }
}
.l-header__nav-list .l-header__nav-item:hover .l-sub-menu {
  opacity: 1;
  visibility: visible;
}
.l-header__nav-list .l-sub-menu__item {
  color: #003288;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 100%;
}
.l-header__nav-list .l-sub-menu__item a {
  display: block;
  font-weight: 500;
  height: 34px;
  line-height: 34px;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu__item a {
    color: #0e182c;
    line-height: 30px;
    height: 30px;
    padding: 0 12px;
  }
}
.l-header__nav-list .l-sub-menu__item:hover {
  background: #003288;
  color: #fff;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu__item:hover {
    background: #fff;
    color: #0e182c;
  }
}

.l-header .cv-box {
  margin: 0 clamp(20px, 5.2083333333vw, 80px) 0 clamp(10px, 3.2552083333vw, 50px);
  position: relative;
}
@media (max-width: 1000px) {
  .l-header .cv-box {
    display: none;
    margin: 0;
    opacity: 0;
  }
}

@media (max-width: 1000px) {
  .l-header.is-active .cv-box {
    -webkit-animation: 2s fadeIn forwards;
            animation: 2s fadeIn forwards;
    display: block;
    margin-top: 30px;
    padding: 0 30px;
    position: absolute;
    right: 0;
    width: 76%;
    z-index: 20;
  }
}

.l-header .entry-btn {
  background-color: #003288;
  cursor: pointer;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: clamp(180px, 14.3229166667vw, 220px);
}
.l-header .entry-btn p, .l-header .entry-btn a {
  color: #fff;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 700;
  height: 100%;
  left: -1rem;
  letter-spacing: 0.06em;
  position: relative;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header .entry-btn {
    width: 100%;
  }
  .l-header .entry-btn p, .l-header .entry-btn a {
    font-size: 14px;
    font-weight: 600;
    left: 0;
  }
}

.l-header .btn-blue {
  position: relative;
}
@media (max-width: 1000px) {
  .l-header .btn-blue {
    display: none;
  }
}
.l-header .btn-blue::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 6px;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  width: 6px;
}

.l-header .btn-orange,
.l-header .btn-green {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  visibility: hidden;
}
.l-header .btn-orange::before,
.l-header .btn-green::before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 99;
}
.l-header .btn-orange:hover::before,
.l-header .btn-green:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-header .btn-orange::after,
.l-header .btn-green::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 6px;
  position: absolute;
  right: 29px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  z-index: 101;
}
@media (max-width: 1000px) {
  .l-header .btn-orange,
  .l-header .btn-green {
    opacity: 1;
    position: relative;
    visibility: visible;
  }
  .l-header .btn-orange::after,
  .l-header .btn-green::after {
    border: none;
  }
}

.l-header .btn-orange {
  background-color: #f07700;
}
@media (max-width: 1000px) {
  .l-header .btn-orange {
    display: block;
    margin-bottom: 10px;
    opacity: 1;
  }
}
.l-header .btn-orange:hover a {
  color: #f07700;
  z-index: 100;
}
.l-header .btn-orange:hover::after {
  border-color: #f07700;
}

.l-header .btn-green {
  background-color: #009398;
  top: 100px;
}
@media (max-width: 1000px) {
  .l-header .btn-green {
    display: block;
    opacity: 1;
    top: 0;
    visibility: visible;
  }
}
.l-header .btn-green:hover a {
  color: #009398;
  z-index: 100;
}
.l-header .btn-green:hover::after {
  border-color: #009398;
}

.l-header .cv-box:hover .btn-orange,
.l-header .cv-box:hover .btn-green {
  opacity: 1;
  visibility: visible;
}

/*
 * 共通CSS - フッター
 */
/* 募集要項・エントリー */
.c-scroll-txt {
  position: absolute;
  z-index: 0;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .c-scroll-txt {
    top: -25px;
  }
}
@media (max-width: 768px) {
  .c-scroll-txt .c-scroll-txt-inner img {
    height: 70px;
    width: auto;
  }
}

.c-entry-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(40px, 3.125vw, 48px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(60px, 5.2083333333vw, 80px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .c-entry-box {
    display: block;
  }
}
.c-entry-box .c-entry-box-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: clamp(355px, 27.7994791667vw, 427px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  width: clamp(355px, 27.7994791667vw, 427px);
  z-index: 10;
}
@media (max-width: 768px) {
  .c-entry-box .c-entry-box-item {
    width: 100%;
    height: 150px;
  }
}
.c-entry-box .c-entry-box-item .c-entry-box__txt {
  font-weight: 700;
  font-size: clamp(10px, 2.6041666667vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.c-entry-box .c-entry-box-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-entry-box .c-entry-box-item.is-orange {
  background-image: url(../images/common/footer/entry_img_01.jpg);
}
.c-entry-box .c-entry-box-item.is-orange::after {
  content: "";
  background: #f07700;
}
.c-entry-box .c-entry-box-item.is-orange:hover::after {
  opacity: 0.7;
}
.c-entry-box .c-entry-box-item.is-green {
  background-image: url(../images/common/footer/entry_img_02.jpg);
  text-align: center;
}
.c-entry-box .c-entry-box-item.is-green::after {
  content: "";
  background: #009398;
}
.c-entry-box .c-entry-box-item.is-green:hover::after {
  opacity: 0.7;
}
.c-entry-box .c-entry-box-item:hover {
  cursor: pointer;
}
.c-entry-box .c-entry-box-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  width: clamp(355px, 27.7994791667vw, 427px);
  height: clamp(355px, 27.7994791667vw, 427px);
}
@media (max-width: 768px) {
  .c-entry-box .c-entry-box-item {
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item .c-entry-box__txt {
    font-size: 18px;
  }
  .c-entry-box .c-entry-box-item.is-orange {
    background: url(../images/common/footer/entry_img_01_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item.is-orange::after {
    background: none;
  }
  .c-entry-box .c-entry-box-item.is-green {
    background: url(../images/common/footer/entry_img_02_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item.is-green::after {
    background: none;
  }
  .c-entry-box .c-entry-box-item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.c-entry__hl {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-entry__hl {
    margin-bottom: 45px;
    text-align: left;
  }
}
.c-entry__hl .c-entry__hl-en {
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(10px, 5.2083333333vw, 80px);
  line-height: 1;
  color: #003288;
}
@media (max-width: 768px) {
  .c-entry__hl .c-entry__hl-en {
    font-size: 52px;
    line-height: 0.8269230769;
  }
}
.c-entry__hl .c-entry__hl-jp {
  font-size: clamp(10px, 1.3020833333vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .c-entry__hl .c-entry__hl-jp {
    font-size: 14px;
  }
}

.l-footer .c-wide-sec.is-gray {
  background: #e1e8f5;
  margin-top: clamp(50px, 9.765625vw, 150px);
  padding: 0;
}
@media (max-width: 768px) {
  .l-footer .c-wide-sec.is-gray {
    margin-top: 100px;
  }
}
.l-footer .c-wide-sec__inner {
  padding: 0 clamp(40px, 5.2083333333vw, 80px) clamp(20px, 2.6041666667vw, 40px) clamp(40px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .l-footer .c-wide-sec__inner {
    padding: 0;
  }
}

.l-footer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: clamp(30px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .l-footer-link {
    display: block;
    padding-top: 30px;
  }
}
.l-footer-link a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.l-footer-link a:hover {
  opacity: 0.5;
}
.l-footer-link .l-footer-link__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer-link .l-footer-link__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__right {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.l-footer-link .l-footer-link__logo {
  height: auto;
  width: 270px;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__logo {
    width: 220px;
  }
}
.l-footer-link .l-footer-link__name {
  font-weight: 500;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  margin-top: clamp(30px, 2.6041666667vw, 40px);
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__name {
    font-size: 14px;
    margin-top: 20px;
  }
}
.l-footer-link .l-footer-link__address {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.4285714286;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__address {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
  }
}
.l-footer-link .c-footer-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  margin-top: 16px;
  width: 184px;
}
@media (max-width: 768px) {
  .l-footer-link .c-footer-sns__list {
    gap: 0;
    margin-top: 20px;
  }
  .l-footer-link .c-footer-sns__list .c-footer-sns__list__item {
    margin-right: 8px;
  }
}

.l-footer-link__dl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .l-footer-link__dl {
    margin-top: 28px;
    width: 50%;
  }
}
.l-footer-link__dl dt {
  color: #003288;
  font-size: clamp(10px, 1.171875vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .l-footer-link__dl dt {
    font-size: 14px;
  }
}
.l-footer-link__dl dd {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  margin-top: clamp(8px, 0.8463541667vw, 13px);
  padding-left: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .l-footer-link__dl dd {
    font-size: 12px;
  }
}
.l-footer-link__dl dd:before {
  border-right: 1px solid #0e182c;
  border-top: 1px solid #0e182c;
  bottom: 7px;
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 4px;
}

@media (max-width: 768px) {
  .l-footer-link__ul {
    margin-top: 55px;
    width: 100%;
  }
}
.l-footer-link__ul .l-footer-link__ul__item {
  color: #003288;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(10px, 1.171875vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .l-footer-link__ul .l-footer-link__ul__item {
    font-size: 14px;
  }
}
.l-footer-link__ul .l-footer-link__ul__item a {
  text-decoration: underline !important;
}
.l-footer-link__ul .l-footer-link__ul__item a:hover {
  text-decoration: none !important;
}
.l-footer-link__ul .l-footer-link__ul__item a[target^=_blank]::after {
  background: url(../images/common/footer/icon_blank.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  display: inline-block;
  height: clamp(10px, 1.0416666667vw, 16px);
  margin-left: 5px;
  vertical-align: -2px;
  width: clamp(10px, 1.0416666667vw, 16px);
}
@media (max-width: 768px) {
  .l-footer-link__ul .l-footer-link__ul__item a[target^=_blank]::after {
    height: 15px;
    width: 15px;
  }
}

.l-footer__copy {
  background: #003288;
}
@media (max-width: 768px) {
  .l-footer__copy {
    margin-top: 23px;
    text-align: center;
  }
}
.l-footer__copy .l-footer__copy__inner {
  color: #fff;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin: auto;
  max-width: 1536px;
  padding: 10px clamp(30px, 5.2083333333vw, 80px);
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer__copy .l-footer__copy__inner {
    font-size: 10px;
    padding: 13px 0;
  }
}

.l-go-top {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 300;
}
.l-go-top img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 58px;
  width: 58px;
}
.l-go-top img:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .l-go-top img {
    height: 43px;
    width: 43px;
  }
}

/*
 * 共通CSS
 */
.c-wide-sec {
  padding-top: clamp(95px, 12.3697916667vw, 190px);
  position: relative;
}
.c-wide-sec .c-wide-sec__inner {
  margin: auto;
  max-width: 1536px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-wide-sec .c-wide-sec__inner {
    max-width: 100%;
    width: 94%;
  }
}
.c-wide-sec .c-wide-sec__bottom-img {
  margin-top: clamp(45px, 9.1145833333vw, 140px);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-wide-sec-wrapper.is-gray {
  background: #f5f8fc;
  margin-top: clamp(100px, 13.0208333333vw, 200px);
}
.c-wide-sec-wrapper.is-gray .c-wide-sec {
  padding: clamp(30px, 6.5104166667vw, 100px) 0 clamp(30px, 6.5104166667vw, 100px);
}
@media (max-width: 768px) {
  .c-wide-sec-wrapper.is-gray .c-wide-sec {
    padding-top: 28px;
  }
}

.c-link-line {
  height: 1px;
  position: absolute;
  top: 1px;
}

.is-pc {
  display: block !important;
}
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
}

.is-scroll {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-scroll img {
  -webkit-animation: scrollImg 40s linear infinite;
          animation: scrollImg 40s linear infinite;
}

.c-sq-outer {
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-sq {
  position: absolute;
  z-index: 3;
}
.c-sq.mv {
  -webkit-transform: scale(0) translateY(-20%);
          transform: scale(0) translateY(-20%);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.c-sq.mv-fast {
  -webkit-transform: scale(0) translateY(-20%);
          transform: scale(0) translateY(-20%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.kv-view .c-sq.mv {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.area-in .c-sq {
  -webkit-transform: scale(1) translateY(-20%);
          transform: scale(1) translateY(-20%);
}

/*
 * フッター装飾
 * sq100〜
 */
.sq100 {
  background-color: #009398;
  height: clamp(32px, 4.1015625vw, 63px);
  left: -20px;
  top: -100px;
  width: clamp(32px, 4.1015625vw, 63px);
}
@media (max-width: 1000px) {
  .sq100 {
    display: none;
  }
}

.sq101 {
  background-color: #003288;
  height: clamp(17px, 2.1484375vw, 33px);
  left: 150px;
  top: -10px;
  width: clamp(17px, 2.1484375vw, 33px);
}
@media (max-width: 1000px) {
  .sq101 {
    display: none;
  }
}

.sq102 {
  background-color: #003288;
  height: clamp(91px, 11.8489583333vw, 182px);
  right: -100px;
  top: -120px;
  width: clamp(91px, 11.8489583333vw, 182px);
}
@media (max-width: 1000px) {
  .sq102 {
    height: 63px;
    right: -15px;
    top: -30px;
    width: 63px;
  }
}

.sq103 {
  background-color: #f07700;
  height: clamp(23px, 2.9296875vw, 45px);
  right: 142px;
  top: 110px;
  width: clamp(23px, 2.9296875vw, 45px);
}
@media (max-width: 1000px) {
  .sq103 {
    display: none;
  }
}

.sq104 {
  background-color: #009398;
  height: clamp(49px, 6.3151041667vw, 97px);
  right: 20px;
  top: 260px;
  width: clamp(49px, 6.3151041667vw, 97px);
}
@media (max-width: 1000px) {
  .sq104 {
    display: none;
  }
}

.sq105 {
  background-color: #f4f4f4;
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 100px;
  top: 323px;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq105 {
    display: none;
  }
}

.sq106 {
  background-color: #f4f4f4;
  height: clamp(103px, 13.3463541667vw, 205px);
  left: -90px;
  top: 166px;
  width: clamp(103px, 13.3463541667vw, 205px);
}
@media (max-width: 1000px) {
  .sq106 {
    display: none;
  }
}

.sq107 {
  background-color: #003288;
  height: clamp(66px, 8.59375vw, 132px);
  left: 180px;
  bottom: -90px;
  width: clamp(66px, 8.59375vw, 132px);
}
@media (max-width: 1000px) {
  .sq107 {
    display: none;
  }
}

.sq108 {
  background-color: #f07700;
  height: clamp(30px, 3.8411458333vw, 59px);
  left: 60px;
  bottom: -108px;
  width: clamp(30px, 3.8411458333vw, 59px);
}
@media (max-width: 1000px) {
  .sq108 {
    height: 74px;
    left: -62px;
    top: 96%;
    width: 74px;
  }
}

.l-main {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  overflow: hidden;
  position: relative;
}
.l-main img {
  width: 100%;
}
.l-main a {
  color: inherit;
  text-decoration: none;
}

.page {
  padding-top: 78px;
}
@media (max-width: 768px) {
  .page {
    padding-top: 0;
  }
}
.page .sec-area {
  position: relative;
}
.page .sec-area-inner {
  width: clamp(10px, 60.9375vw, 936px);
  margin: auto;
}
@media (max-width: 768px) {
  .page .sec-area-inner {
    width: 94.6666666667%;
  }
}
.page .c-entry-box {
  gap: 0 10px;
}
.page .c-entry-box .c-entry-box-item {
  height: clamp(266px, 20.8333333333vw, 320px);
  width: clamp(384px, 30.1432291667vw, 463px);
}
@media (max-width: 768px) {
  .page .c-entry-box .c-entry-box-item {
    width: 100%;
    height: 150px;
  }
}
.page .c-entry-box .c-entry-box-item a {
  height: clamp(266px, 20.8333333333vw, 320px);
  width: clamp(384px, 30.1432291667vw, 463px);
}
@media (max-width: 768px) {
  .page .c-entry-box .c-entry-box-item a {
    height: 100%;
    width: 100%;
  }
}
.page .c-entry-box .c-entry-box-item.is-orange {
  background-image: url(../images/common/footer/entry_img_01_rect.jpg);
}
.page .c-entry-box .c-entry-box-item.is-green {
  background-image: url(../images/common/footer/entry_img_02_rect.jpg);
}
@media (max-width: 768px) {
  .page .c-entry-box .c-entry-box-item.is-orange {
    background: url(../images/common/footer/entry_img_01_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .page .c-entry-box .c-entry-box-item.is-green {
    background: url(../images/common/footer/entry_img_02_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
}
.page .p-common__title {
  font-weight: bold;
  font-size: clamp(10px, 2.0833333333vw, 32px);
  line-height: 1;
}
.page .p-common__title span {
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 0.78125vw, 12px);
  line-height: 1;
  color: #003288;
  margin-bottom: clamp(1px, 0.6510416667vw, 10px);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page .p-common__title span {
    font-size: 11px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .page .p-common__title {
    font-size: 24px;
  }
}
.page .p-common__member__list {
  margin-top: clamp(10px, 1.953125vw, 30px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: clamp(10px, 1.8880208333vw, 29px);
     -moz-column-gap: clamp(10px, 1.8880208333vw, 29px);
          column-gap: clamp(10px, 1.8880208333vw, 29px);
  row-gap: clamp(10px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .page .p-common__member__list {
    margin-top: 30px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.page .p-common__member__list .p-common__member__item a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page .p-common__member__list .p-common__member__item a .item__photo {
  overflow: hidden;
}
.page .p-common__member__list .p-common__member__item a .item__photo img {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.page .p-common__member__list .p-common__member__item a:hover .item__photo img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.page .p-common__member__list .p-common__member__item .item__department {
  margin-top: clamp(10px, 0.9765625vw, 15px);
  font-weight: 500;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.04em;
  line-height: 1.5625;
  color: #003288;
}
@media (max-width: 768px) {
  .page .p-common__member__list .p-common__member__item .item__department {
    margin-top: 16px;
    font-size: 14px;
  }
}
.page .p-common__member__list .p-common__member__item .item__title {
  margin-top: clamp(4px, 0.2604166667vw, 4px);
  font-weight: bold;
  font-size: clamp(10px, 1.3020833333vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #003288;
}
@media (max-width: 768px) {
  .page .p-common__member__list .p-common__member__item .item__title {
    font-size: 18px;
  }
}
.page .p-common__member__list .p-common__member__item .item__personal {
  margin-top: 17px;
}
@media (max-width: 768px) {
  .page .p-common__member__list .p-common__member__item .item__personal {
    margin-top: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page .p-common__member__list .p-common__member__item .item__personal .item__name {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.7857142857;
  margin-right: clamp(10px, 1.171875vw, 18px);
}
@media (max-width: 768px) {
  .page .p-common__member__list .p-common__member__item .item__personal .item__name {
    font-size: 14px;
    line-height: 1.6428571429;
    margin-right: 18px;
  }
}
.page .p-common__member__list .p-common__member__item .item__personal .item__joined {
  display: inline-block;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.7857142857;
  margin-left: clamp(10px, 0.9114583333vw, 14px);
}
@media (max-width: 768px) {
  .page .p-common__member__list .p-common__member__item .item__personal .item__joined {
    font-size: 14px;
    margin-left: 14px;
  }
}

.p-header {
  height: clamp(10px, 19.53125vw, 300px);
  background: #f2f5fa;
  -webkit-box-shadow: 0 15px 10px rgba(73, 105, 179, 0.05) inset;
          box-shadow: 0 15px 10px rgba(73, 105, 179, 0.05) inset;
}
@media (max-width: 768px) {
  .p-header {
    height: 200px;
  }
}
.p-header .p-breadcrumbs {
  padding-top: clamp(10px, 1.171875vw, 18px);
  padding-left: clamp(10px, 3.0924479167vw, 47.5px);
  margin-bottom: clamp(10px, 5.0130208333vw, 77px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 50;
}
@media (max-width: 768px) {
  .p-header .p-breadcrumbs {
    display: none;
  }
}
.p-header .p-breadcrumbs li {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header .p-breadcrumbs li a {
  color: #003288;
}
.p-header .p-breadcrumbs li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: clamp(1px, 0.3255208333vw, 5px);
  height: clamp(1px, 0.6510416667vw, 10px);
  background: url(../images/common/icon_arrow.svg) no-repeat;
  background-size: contain;
  margin: auto clamp(10px, 0.6510416667vw, 10px);
}
.p-header h2 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 4.296875vw, 66px);
  line-height: 1;
  color: #003288;
  margin-left: clamp(10px, 19.53125vw, 300px);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .p-header h2 {
    font-size: 36px;
    padding-top: 80px;
    margin-left: 11px;
  }
}
.p-header h2 span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 1.171875vw, 18px);
  letter-spacing: 0.02em;
  line-height: 2.2222222222;
  display: block;
  color: #0e182c;
}
@media (max-width: 768px) {
  .p-header h2 span {
    font-size: 13px;
  }
}
.p-header h2 span.txt_wrap {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  color: #003288;
  font-size: 4.296875vw;
  line-height: 1.3;
  display: inline-block;
}
@media (min-width: 1536px) {
  .p-header h2 span.txt_wrap {
    font-size: 66px;
  }
}
@media (max-width: 768px) {
  .p-header h2 span.txt_wrap {
    font-size: 36px;
  }
}
@media (max-width: 530px) {
  .p-header h2 span.txt_wrap {
    font-size: 36px;
    display: block;
  }
}

.page.detail .p-header-wrap {
  height: auto;
}
@media (max-width: 768px) {
  .page.detail .p-header {
    height: 119px;
  }
}
.page.detail .p-header .p-breadcrumbs {
  margin-bottom: clamp(10px, 3.7760416667vw, 58px);
}
.page.detail .p-header__cont {
  width: clamp(10px, 73.9583333333vw, 1136px);
  height: auto;
  position: relative;
  margin: auto;
  margin-top: -13.0208333333vw;
}
@media (min-width: 1536px) {
  .page.detail .p-header__cont {
    margin-top: -200px;
  }
}
@media (max-width: 768px) {
  .page.detail .p-header__cont {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .page.detail .p-header__cont img {
    aspect-ratio: 2.8409090909;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page.detail .p-header__cont .p-header__cont__txt {
  background: #fff;
  width: clamp(10px, 40.3645833333vw, 620px);
  padding-top: clamp(10px, 2.4088541667vw, 37px);
  padding-right: clamp(10px, 4.1666666667vw, 64px);
  margin-top: -4.3619791667vw;
  margin-bottom: clamp(10px, 4.3619791667vw, 67px);
  position: relative;
  z-index: 10;
}
@media (min-width: 1536px) {
  .page.detail .p-header__cont .p-header__cont__txt {
    margin-top: -67px;
  }
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt {
    position: unset;
    margin-top: 0;
    padding-left: 3%;
    padding-top: 15px;
    width: 100%;
  }
}
.page.detail .p-header__cont .p-header__cont__txt p {
  font-weight: bold;
  font-size: clamp(10px, 2.2135416667vw, 34px);
  line-height: 1.5882352941;
  color: #003288;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt p {
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info {
  margin-top: clamp(10px, 0.9765625vw, 15px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info {
    margin-top: 19px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__cat {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 0.8463541667vw, 13px);
  letter-spacing: 0.03em;
  line-height: 1.9230769231;
  background: #f5f8fc;
  text-transform: uppercase;
  display: inline-block;
  padding: clamp(1px, 0.1953125vw, 3px) clamp(10px, 1.2369791667vw, 19px);
  color: #003288;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__cat {
    font-size: 12px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 6%;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__department {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.7857142857;
  font-weight: 500;
  display: inline-block;
  padding: 3px clamp(10px, 1.171875vw, 18px);
  color: #0e182c;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__department {
    font-size: 14px;
    display: block;
    padding-left: 0;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__department .info__separator.is-pc {
  display: inline-block !important;
  padding-left: clamp(10px, 1.171875vw, 18px);
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__department .info__separator.is-pc {
    display: none !important;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__nameAndJoined {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__name {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.7857142857;
  font-weight: 500;
  display: inline-block;
  padding: 3px clamp(10px, 1.171875vw, 18px);
  padding-left: 0;
  color: #0e182c;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__name {
    font-size: 14px;
    padding-left: 0;
  }
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__separator.is-sp {
  color: #0e182c;
  padding-left: 6px;
  padding-right: 16px;
}
.page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__joined {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.7857142857;
  font-weight: normal;
  display: inline-block;
  color: #0e182c;
}
@media (max-width: 768px) {
  .page.detail .p-header__cont .p-header__cont__txt .p-header__cont__txt__info .info__joined {
    font-size: 14px;
  }
}
.page.detail .sec-area-inner {
  width: clamp(10px, 73.9583333333vw, 1136px);
  margin: auto;
}
@media (max-width: 768px) {
  .page.detail .sec-area-inner {
    width: 94.6666666667%;
  }
}

/**
 * 背景装飾 - 下層ページ共通
 * sq50〜sq99
 */
.p-header {
  position: relative;
}
.p-header .sq50 {
  position: absolute;
  width: clamp(71px, 9.2447916667vw, 142px);
  height: clamp(71px, 9.2447916667vw, 142px);
  background: #009398;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .p-header .sq50 {
    width: 46px;
    height: 46px;
    top: 39px;
    right: -16px;
  }
}
.p-header .sq51 {
  position: absolute;
  width: clamp(30px, 3.8411458333vw, 59px);
  height: clamp(30px, 3.8411458333vw, 59px);
  background: #fff;
  top: clamp(10px, 7.0963541667vw, 109px);
  right: clamp(10px, 7.2591145833vw, 111.5px);
}
@media (max-width: 768px) {
  .p-header .sq51 {
    background: #f07700;
    top: 83px;
    right: 21px;
    width: 19px;
    height: 19px;
  }
}
.p-header .sq52 {
  position: absolute;
  width: clamp(60px, 7.7473958333vw, 119px);
  height: clamp(60px, 7.7473958333vw, 119px);
  background: #f07700;
  bottom: -1.953125vw;
  left: -30px;
}
@media (min-width: 1536px) {
  .p-header .sq52 {
    bottom: -30px;
  }
}
@media (max-width: 768px) {
  .p-header .sq52 {
    display: none;
  }
}
.p-header .sq53 {
  position: absolute;
  background: #003288;
  width: clamp(23px, 2.9296875vw, 45px);
  height: clamp(23px, 2.9296875vw, 45px);
  bottom: -4.296875vw;
  left: clamp(10px, 7.5520833333vw, 116px);
}
@media (min-width: 1536px) {
  .p-header .sq53 {
    bottom: -66px;
  }
}
@media (max-width: 768px) {
  .p-header .sq53 {
    display: none;
  }
}

.sq55 {
  background-color: #003288;
  height: clamp(23px, 2.9296875vw, 45px);
  left: 130px;
  top: -50px;
  width: clamp(23px, 2.9296875vw, 45px);
}
@media (max-width: 768px) {
  .sq55 {
    height: 22px;
    left: auto;
    right: 84px;
    top: -8px;
    width: 22px;
  }
}

.sq56 {
  background-color: #009398;
  height: clamp(63px, 8.203125vw, 126px);
  left: -27px;
  top: 0px;
  width: clamp(63px, 8.203125vw, 126px);
}
@media (max-width: 768px) {
  .sq56 {
    height: 61px;
    left: auto;
    right: 10px;
    top: 22px;
    width: 61px;
  }
}

.sq60 {
  background-color: #f07700;
  height: clamp(55px, 7.1614583333vw, 110px);
  right: 35px;
  top: -14px;
  width: clamp(55px, 7.1614583333vw, 110px);
}
@media (max-width: 768px) {
  .sq60 {
    height: 44px;
    right: -5px;
    top: 40px;
    width: 44px;
  }
}

.sq61 {
  background-color: #f4f4f4;
  height: clamp(22px, 2.8645833333vw, 44px);
  right: 205px;
  top: 122px;
  width: clamp(22px, 2.8645833333vw, 44px);
}
@media (max-width: 768px) {
  .sq61 {
    height: 16px;
    right: 50px;
    top: 98px;
    width: 16px;
  }
}

.sq65 {
  background-color: #f07700;
  height: clamp(55px, 7.1614583333vw, 110px);
  right: 35px;
  top: -14px;
  width: clamp(55px, 7.1614583333vw, 110px);
}
@media (max-width: 768px) {
  .sq65 {
    height: 44px;
    right: 0;
    top: 36px;
    width: 44px;
  }
}

.sq66 {
  background-color: #f4f4f4;
  height: clamp(22px, 2.8645833333vw, 44px);
  right: 205px;
  top: 122px;
  width: clamp(22px, 2.8645833333vw, 44px);
}
@media (max-width: 768px) {
  .sq66 {
    height: 16px;
    right: 60px;
    top: 78px;
    width: 16px;
  }
}

.sq70 {
  background-color: #f07700;
  height: clamp(63px, 8.203125vw, 126px);
  right: -32px;
  top: -130px;
  width: clamp(63px, 8.203125vw, 126px);
}
@media (max-width: 1200px) {
  .sq70 {
    top: -80px;
    right: -32px;
  }
}
@media (max-width: 1000px) {
  .sq70 {
    display: none;
  }
}

.sq71 {
  background-color: #003288;
  height: clamp(23px, 2.9947916667vw, 46px);
  right: 120px;
  top: -190px;
  width: clamp(22px, 2.9947916667vw, 46px);
}
@media (max-width: 1200px) {
  .sq71 {
    top: -126px;
    right: 90px;
  }
}
@media (max-width: 1000px) {
  .sq71 {
    display: none;
  }
}

.p-about .p-about-sec__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 2.0833333333vw, 32px);
  line-height: 1;
  margin-bottom: clamp(10px, 3.125vw, 48px);
}
.p-about .p-about-sec__title span {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 0.78125vw, 12px);
  line-height: 2.0833333333;
  color: #003288;
  display: block;
}
@media (max-width: 768px) {
  .p-about .p-about-sec__title span {
    font-size: 11px;
    line-height: 2.2727272727;
  }
}
@media (max-width: 768px) {
  .p-about .p-about-sec__title {
    font-size: 24px;
    line-height: 1.0416666667;
    margin-bottom: 33px;
  }
}

.p-top {
  margin-top: clamp(10px, 7.5520833333vw, 116px);
  padding-bottom: 1px;
  position: relative;
}
@media (max-width: 768px) {
  .p-top {
    margin-top: 44px !important;
    padding-bottom: 0;
  }
}
.p-top::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(10px, 22.265625vw, 342px);
  background: #f5f6f8;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-top::after {
    display: none;
  }
}
.p-top .p-top__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 2.6041666667vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1.125;
  color: #003288;
  margin-bottom: clamp(10px, 2.0833333333vw, 32px);
  text-align: center;
}
@media (max-width: 768px) {
  .p-top .p-top__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 19px;
  }
}
.p-top .p-top_read {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 1.1067708333vw, 17px);
  letter-spacing: 0.02em;
  line-height: 1.8235294118;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top .p-top_read {
    font-size: 14px;
    line-height: 23px;
  }
}
.p-top .p-top__movie {
  margin-top: clamp(10px, 6.25vw, 96px);
  margin-bottom: clamp(10px, 4.8177083333vw, 74px);
}
@media (max-width: 768px) {
  .p-top .p-top__movie {
    padding-top: 28px;
    padding-bottom: 26px;
    margin-top: 30px;
    margin-bottom: 0;
    background: #f5f6f8;
  }
}
.p-top .p-top__movie .p-top__movie__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  margin-bottom: clamp(10px, 3.125vw, 48px);
}
@media (max-width: 768px) {
  .p-top .p-top__movie .p-top__movie__txt {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 19px;
  }
}
.p-top .p-top__movie .p-top__movie__content {
  width: clamp(10px, 60.9375vw, 936px);
  height: clamp(10px, 34.2447916667vw, 526px);
}
@media (max-width: 768px) {
  .p-top .p-top__movie .p-top__movie__content {
    width: 100%;
    height: auto;
    aspect-ratio: 1.775;
    position: relative;
    padding: 56.338028169% 0 0;
  }
}
.p-top .p-top__movie .p-top__movie__content iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .p-top .p-top__movie .p-top__movie__content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.p-message {
  padding-top: clamp(10px, 6.7708333333vw, 104px);
  padding-bottom: clamp(10px, 6.5104166667vw, 100px);
}
@media (max-width: 768px) {
  .p-message {
    padding-top: 45px;
    padding-bottom: 46px;
  }
}
.p-message .p-message__photo {
  position: relative;
  margin-top: clamp(10px, 3.125vw, 48px);
  margin-bottom: clamp(10px, 6.3151041667vw, 97px);
}
@media (max-width: 768px) {
  .p-message .p-message__photo {
    margin-top: 33px;
    margin-bottom: 46px;
  }
}
.p-message .p-message__photo .p-message__photo__txt {
  position: absolute;
  top: clamp(10px, 15.4296875vw, 237px);
  left: clamp(10px, 9.5703125vw, 147px);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.02em;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .p-message .p-message__photo .p-message__photo__txt {
    top: 83.1px;
    font-size: 10px;
    line-height: 1.4;
    left: 20px;
  }
}
.p-message .p-message__photo .p-message__photo__txt span {
  display: block;
  font-weight: bold;
  font-size: clamp(10px, 1.953125vw, 30px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: clamp(10px, 1.3671875vw, 21px);
}
@media (max-width: 768px) {
  .p-message .p-message__photo .p-message__photo__txt span {
    font-size: 16px;
    margin-top: 9px;
  }
}
.p-message .p-message__movie {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7794676806;
  margin-bottom: clamp(10px, 2.7994791667vw, 43px);
}
@media (max-width: 768px) {
  .p-message .p-message__movie {
    width: 100%;
    height: auto;
    aspect-ratio: 1.775;
    position: relative;
    padding: 56.338028169% 0 0;
    margin-bottom: 36px;
  }
}
.p-message .p-message__movie iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .p-message .p-message__movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-message .p-message__txtCont:not(:last-of-type) {
  margin-bottom: clamp(10px, 3.7109375vw, 57px);
}
@media (max-width: 768px) {
  .p-message .p-message__txtCont:not(:last-of-type) {
    margin-bottom: 38px;
  }
}
.p-message .p-message__txtCont .p-message__txtCont__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 1.5625vw, 24px);
  line-height: 1.6666666667;
  margin-bottom: clamp(10px, 1.6276041667vw, 25px);
}
@media (max-width: 768px) {
  .p-message .p-message__txtCont .p-message__txtCont__title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}
.p-message .p-message__txtCont .p-message__txtCont__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
}
@media (max-width: 768px) {
  .p-message .p-message__txtCont .p-message__txtCont__txt {
    font-size: 14px;
    line-height: 1.6428571429;
  }
}

.p-mission,
.p-vision {
  background: #f5f8fc;
  padding-top: clamp(10px, 6.1848958333vw, 95px);
}
@media (max-width: 768px) {
  .p-mission,
  .p-vision {
    padding-top: 47px;
  }
}
.p-mission#vision,
.p-vision#vision {
  padding-top: clamp(10px, 5.859375vw, 90px);
}
@media (max-width: 768px) {
  .p-mission#vision,
  .p-vision#vision {
    padding-top: 42px;
  }
}
.p-mission .p-about-sec__title,
.p-vision .p-about-sec__title {
  margin-bottom: 0;
}
.p-mission .p-mission__content .p-mission__content__title,
.p-mission .p-mission__content .p-vision__content__title,
.p-mission .p-vision__content .p-mission__content__title,
.p-mission .p-vision__content .p-vision__content__title,
.p-vision .p-mission__content .p-mission__content__title,
.p-vision .p-mission__content .p-vision__content__title,
.p-vision .p-vision__content .p-mission__content__title,
.p-vision .p-vision__content .p-vision__content__title {
  font-weight: bold;
  font-size: clamp(10px, 2.6041666667vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1.125;
  text-align: center;
  color: #003288;
  padding-top: clamp(10px, 4.8828125vw, 75px);
  padding-bottom: clamp(10px, 5.078125vw, 78px);
  margin-top: clamp(10px, 3.7760416667vw, 58px);
  background: #fff;
}
@media (max-width: 768px) {
  .p-mission .p-mission__content .p-mission__content__title,
  .p-mission .p-mission__content .p-vision__content__title,
  .p-mission .p-vision__content .p-mission__content__title,
  .p-mission .p-vision__content .p-vision__content__title,
  .p-vision .p-mission__content .p-mission__content__title,
  .p-vision .p-mission__content .p-vision__content__title,
  .p-vision .p-vision__content .p-mission__content__title,
  .p-vision .p-vision__content .p-vision__content__title {
    font-size: 20px;
    line-height: 1.25;
    padding-top: 30px;
    padding-bottom: 34px;
    margin-top: 24px;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
}
.p-mission .p-mission__content .p-mission__content__txt,
.p-mission .p-mission__content .p-vision__content__txt,
.p-mission .p-vision__content .p-mission__content__txt,
.p-mission .p-vision__content .p-vision__content__txt,
.p-vision .p-mission__content .p-mission__content__txt,
.p-vision .p-mission__content .p-vision__content__txt,
.p-vision .p-vision__content .p-mission__content__txt,
.p-vision .p-vision__content .p-vision__content__txt {
  font-size: clamp(10px, 0.9765625vw, 15px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  margin-top: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 768px) {
  .p-mission .p-mission__content .p-mission__content__txt,
  .p-mission .p-mission__content .p-vision__content__txt,
  .p-mission .p-vision__content .p-mission__content__txt,
  .p-mission .p-vision__content .p-vision__content__txt,
  .p-vision .p-mission__content .p-mission__content__txt,
  .p-vision .p-mission__content .p-vision__content__txt,
  .p-vision .p-vision__content .p-mission__content__txt,
  .p-vision .p-vision__content .p-vision__content__txt {
    font-size: 14px;
    line-height: 1.6428571429;
  }
}
.p-mission .p-mission__content .p-mission__content__txt p,
.p-mission .p-mission__content .p-vision__content__txt p,
.p-mission .p-vision__content .p-mission__content__txt p,
.p-mission .p-vision__content .p-vision__content__txt p,
.p-vision .p-mission__content .p-mission__content__txt p,
.p-vision .p-mission__content .p-vision__content__txt p,
.p-vision .p-vision__content .p-mission__content__txt p,
.p-vision .p-vision__content .p-vision__content__txt p {
  font-size: clamp(10px, 0.9765625vw, 15px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  margin-top: clamp(10px, 0.9114583333vw, 14px);
}
@media (max-width: 768px) {
  .p-mission .p-mission__content .p-mission__content__txt p,
  .p-mission .p-mission__content .p-vision__content__txt p,
  .p-mission .p-vision__content .p-mission__content__txt p,
  .p-mission .p-vision__content .p-vision__content__txt p,
  .p-vision .p-mission__content .p-mission__content__txt p,
  .p-vision .p-mission__content .p-vision__content__txt p,
  .p-vision .p-vision__content .p-mission__content__txt p,
  .p-vision .p-vision__content .p-vision__content__txt p {
    font-size: 14px;
    line-height: 1.6428571429;
    margin-top: 19px;
  }
}

.p-value {
  padding-top: clamp(10px, 5.9895833333vw, 92px);
  padding-bottom: clamp(10px, 6.3151041667vw, 97px);
  background: #f5f8fc;
}
@media (max-width: 768px) {
  .p-value {
    padding-top: 43px;
    padding-bottom: 47px;
  }
}
.p-value .p-about-sec__title {
  margin-bottom: 0;
}
.p-value .p-value__content {
  background: #fff;
  width: clamp(10px, 25.2604166667vw, 388px);
  margin: auto;
  margin-top: clamp(10px, 4.8177083333vw, 74px);
  position: relative;
}
@media (max-width: 768px) {
  .p-value .p-value__content {
    max-width: 355px;
    width: 100%;
    margin-top: 38px;
    padding-left: 23px;
  }
}
.p-value .p-value__content .p-value__content__title {
  position: absolute;
  left: 0;
  right: 0;
  top: -1.1067708333vw;
  width: clamp(10px, 12.6302083333vw, 194px);
  height: clamp(10px, 2.5390625vw, 39px);
  background: #003288;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 1;
  text-align: center;
  color: #fff;
  padding-top: clamp(10px, 0.4557291667vw, 7px);
  margin: auto;
  margin-bottom: clamp(10px, 2.6041666667vw, 40px);
}
@media (min-width: 1536px) {
  .p-value .p-value__content .p-value__content__title {
    top: -17px;
  }
}
@media (max-width: 768px) {
  .p-value .p-value__content .p-value__content__title {
    width: 212px;
    height: 41px;
    top: -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
    padding-top: 0;
  }
}
.p-value .p-value__content .p-value__content__list {
  padding-top: clamp(10px, 3.8411458333vw, 59px);
  padding-left: clamp(10px, 3.2552083333vw, 50px);
  padding-bottom: clamp(10px, 3.2552083333vw, 50px);
  counter-reset: value;
  margin-bottom: clamp(10px, 3.2552083333vw, 50px);
}
@media (max-width: 768px) {
  .p-value .p-value__content .p-value__content__list {
    padding-top: 43px;
    padding-bottom: 32px;
    margin-bottom: 20px;
  }
}
.p-value .p-value__content .p-value__content__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
  margin-bottom: clamp(8px, 0.5208333333vw, 8px);
}
@media (max-width: 768px) {
  .p-value .p-value__content .p-value__content__list li {
    font-size: 16px;
  }
}
.p-value .p-value__content .p-value__content__list li::before {
  counter-increment: value;
  content: counter(value);
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  color: #003288;
  width: clamp(10px, 2.8645833333vw, 44px);
  height: clamp(10px, 2.8645833333vw, 44px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .p-value .p-value__content .p-value__content__list li::before {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}
.p-value .p-value__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
}
@media (max-width: 768px) {
  .p-value .p-value__txt {
    font-size: 14px;
    line-height: 23px;
  }
}

.p-special {
  padding-top: clamp(10px, 6.5104166667vw, 100px);
}
@media (max-width: 768px) {
  .p-special {
    padding-top: 50px;
  }
}
.p-special .p-special-box {
  padding: clamp(10px, 3.90625vw, 60px) clamp(10px, 3.2552083333vw, 50px) clamp(10px, 3.90625vw, 60px);
  border: 1.5px solid #0e182c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 3.8411458333vw, 59px);
}
@media (max-width: 768px) {
  .p-special .p-special-box {
    padding: 30px 20px;
    padding-top: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-special .p-special-box .p-special-box__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(10px, 2.734375vw, 42px);
  letter-spacing: 0.04em;
  width: clamp(10px, 23.2421875vw, 357px);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-special .p-special-box .p-special-box__title {
    font-size: 28px;
  }
}
.p-special .p-special-box .p-special-box__content {
  width: clamp(10px, 27.34375vw, 420px);
}
@media (max-width: 768px) {
  .p-special .p-special-box .p-special-box__content {
    width: 100%;
  }
}
.p-special .p-special-box .p-special-box__content p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  margin-bottom: clamp(10px, 2.2135416667vw, 34px);
}
@media (max-width: 768px) {
  .p-special .p-special-box .p-special-box__content p {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 23px;
  }
}
.p-special .p-special-box .p-special-box__content .c-viewmore-btn_black {
  margin-top: 19px;
}/*# sourceMappingURL=about.css.map */