@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #fff;
  background-image: url(../images/common/whole_bg.svg);
  background-size: 100% auto;
  background-position: top 80px center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  body {
    background-image: url(../images/common/whole_bg_sp.png);
    background-position: top -44px center;
  }
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
main {
  padding-top: 161px;
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 106px;
  }
}

.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  will-change: transform, opacity;
}

#page-top {
  position: fixed;
  right: 30px;
  z-index: 100;
  opacity: 0;
  bottom: 30px;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}
@media only screen and (max-width: 767px) {
  #page-top {
    right: 8px;
  }
}
#page-top.active {
  bottom: 100px;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  #page-top.active {
    bottom: 86px;
  }
}
#page-top a {
  width: 48px;
  height: 48px;
}

.footer__about-company {
  padding: 88px 0 42px;
  background-image: url(../images/common/footer_bg_pc.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .footer__about-company {
    background-image: url(../images/common/footer_bg_pc.webp);
  }
}
@media only screen and (max-width: 767px) {
  .footer__about-company {
    padding: 48px 0 36px;
    background-image: url(../images/common/footer_bg_sp.webp);
  }
}
.footer__about-company__inner {
  max-width: 1132px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__inner {
    padding: 0 16px;
  }
}
.footer__about-company__inner h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 12px;
  position: relative;
}
.footer__about-company__inner h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #fff;
}
.footer__about-company__inner h2 span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer__about-company__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}
.footer__about-company__content__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.footer__about-company__content__intro h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__content__intro h3 {
    font-size: 24px;
    text-align: center;
  }
}
.footer__about-company__content__intro p {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__content__intro p {
    gap: 8px;
    width: 100%;
  }
}
.footer__about-company__content__intro p span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__content__intro p span {
    font-size: 14px;
    text-align: center;
  }
}
.footer__about-company__content__cards {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__content__cards {
    flex-direction: column;
  }
}
.footer__about-company__content__cards__item {
  width: 33.333333%;
  position: relative;
  padding: 35px 0;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .footer__about-company__content__cards__item {
    width: 100%;
    padding: 14px 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer__about-company__content__cards__item:hover .footer__about-company__content__cards__item__image {
    transform: scale(1.1);
  }
}
.footer__about-company__content__cards__item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.3s;
  transform: scale(1);
}
.footer__about-company__content__cards__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__about-company__content__cards__item__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.footer__about-company__content__cards__item__content h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  position: relative;
}
.footer__about-company__content__cards__item__content h4::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background: #fff;
}
.footer__about-company__content__cards__item__content h4 small {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
.footer__about-company__content__cards__item__content h4 span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
.footer__upper {
  background: #F3F5FB;
  padding: 48px 0;
}
.footer__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 32px;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__left {
  width: 31.634615%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.footer__brand a {
  width: 240px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer__brand a {
    width: 200px;
  }
}
.footer__brand a img {
  width: 100%;
  height: auto;
}
.footer__texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .footer__texts {
    text-align: center;
  }
}
.footer__texts strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
.footer__texts p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
.footer__texts p span {
  font-weight: bold;
  display: block;
  margin-top: 6px;
  font-weight: bold;
}
.footer__texts a {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer__texts a:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .footer__texts a {
    justify-content: center;
  }
}
.footer__texts a span {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  display: block;
  position: relative;
}
.footer__texts a span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
}
.footer__texts a svg {
  width: 20px;
  height: 20px;
}
.footer__right {
  width: 68.365385%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav ul {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.footer__nav ul li {
  width: calc(33.333333% - 24px);
}
.footer__nav ul li a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  padding: 8px 0;
  padding-left: 35px;
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer__nav ul li a:hover {
    opacity: 0.8;
  }
}
.footer__nav ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 2px;
  border-radius: 10px;
  background: #0068B7;
}
.footer__cv__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 0;
}
.footer__cv__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__cv__text h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  position: relative;
}
.footer__cv__text h3::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #0068B7;
  border-radius: 10px;
}
.footer__cv__text p {
  margin-top: 34px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  text-align: center;
}
.footer__cv__tel {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 16px;
}
.footer__cv__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer__cv__tel a:hover {
    opacity: 0.8;
  }
}
.footer__cv__tel a span {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .footer__cv__tel a span {
    font-size: 32px;
  }
}
.footer__cv__tel small {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  display: block;
  text-align: center;
}
.footer__cv__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__cv__button {
    padding: 0 24px;
  }
}
.footer__cv__button a {
  width: 100%;
}
.footer__bottom {
  background: #103048;
}
.footer__bottom__inner {
  max-width: 1100px;
  padding: 32px 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__inner {
    padding: 28px 24px;
  }
}
.footer__bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__row {
    flex-direction: column;
    justify-content: center;
  }
}
.footer__bottom__left p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__right {
    display: none;
  }
}
.footer__bottom__right a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-decoration: underline;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer__bottom__right a:hover {
    opacity: 0.8;
  }
}

body.is-mega-open {
  overflow: hidden;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__h1 {
  padding: 0 24px;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header__h1 {
    display: none;
  }
}
.header__h1 h1 {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.header__inner {
  padding: 10px 40px;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    padding: 16px 24px;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  display: block;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .header__logo a img {
    height: 71px;
  }
}
.header__toggle {
  position: fixed;
  top: 64px;
  right: 40px;
  width: 48px;
  height: 74px;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header__toggle {
    top: 20px;
    right: 24px;
  }
}
.header__toggle-button {
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .header__toggle-button:hover {
    opacity: 0.8;
  }
}
.header__toggle-button.is-active em svg:nth-child(1) {
  opacity: 0;
}
.header__toggle-button.is-active em svg:nth-child(2) {
  opacity: 1;
}
.header__toggle-button.is-active strong span:nth-child(1) {
  opacity: 0;
}
.header__toggle-button.is-active strong span:nth-child(2) {
  opacity: 1;
}
.header__toggle button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.header__toggle button em {
  width: 44px;
  height: 44px;
  position: relative;
  background: #103048;
  border-radius: 50%;
}
.header__toggle button em svg {
  width: 18px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.header__toggle button em svg:nth-child(1) {
  opacity: 1;
}
.header__toggle button em svg:nth-child(2) {
  width: 16px;
  height: 16px;
  opacity: 0;
}
.header__toggle button > strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #103048;
  position: relative;
}
.header__toggle button > strong span {
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
.header__toggle button > strong span:nth-child(1) {
  position: relative;
  opacity: 1;
}
.header__toggle button > strong span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.header__mega {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__mega__inner {
  display: flex;
  height: 100%;
  width: 100%;
}
.header__mega__image {
  width: calc(100% - 480px);
  height: 100%;
}
.header__mega__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__mega__content {
  width: 480px;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
  padding: 26px 48px;
}
@media only screen and (max-width: 767px) {
  .header__mega__content {
    width: 100%;
    padding: 24px;
  }
}
.header__mega__brand a {
  width: 160px;
  display: block;
}
.header__mega__nav {
  margin-top: 48px;
}
.header__mega__nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__mega__nav ul li a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  padding: 8px 0;
  padding-left: 35px;
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: all 0.3s;
}
.header__mega__nav ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 2px;
  border-radius: 10px;
  background: #0068B7;
}
.header__mega__box {
  margin-top: 32px;
}
.header__mega__box__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: #F3F5FB;
  padding: 32px 0;
  border-radius: 16px;
}
.header__mega__box__texts h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  position: relative;
  text-align: center;
}
.header__mega__box__texts h3::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.header__mega__box__texts p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  margin-top: 34px;
  text-align: center;
}
.header__mega__box__tel a {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  opacity: 1;
  transition: all 0.3s;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .header__mega__box__tel a:hover {
    opacity: 0.8;
  }
}
.header__mega__box__tel a svg {
  width: 24px;
  height: 24px;
}
.header__mega__box__tel a span {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
.header__mega__box__tel small {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  text-align: center;
  display: block;
}
.header__mega__box__button {
  padding: 0 24px;
}
.header__mega__box__button a {
  width: 100%;
}

.c-button {
  max-width: 380px;
  text-align: center;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #0068B7;
  border: 1px solid #0068B7;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
  display: flex;
  width: 100%;
  transition: background 0.3s ease, border 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .c-button:hover {
    background: #fff;
    border: 1px solid #0068B7;
    color: #0068B7;
  }
  .c-button:hover span {
    color: #0068B7;
  }
  .c-button:hover svg path {
    fill: #0068B7;
  }
}
.c-button span {
  color: #fff;
  display: block;
  transition: color 0.3s ease;
}
.c-button svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.c-button svg path {
  transition: fill 0.3s ease;
}

.c-h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .c-h2 {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
.c-h2 span {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: bold;
  line-height: 1.5;
}
.c-h2:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #0068B7;
  display: block;
}

.c-more-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.c-more-button a span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  position: relative;
}
.c-more-button a span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #103048;
  transition: all 0.3s;
}
.c-more-button a em {
  display: block;
  width: 64px;
  height: 64px;
  position: relative;
  background: #0068B7;
  border-radius: 50%;
}
.c-more-button a em svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.c-more-button a em svg:last-child {
  opacity: 0;
  left: calc(50% - 16px);
}
@media only screen and (min-width: 768px) {
  .c-more-button a:hover span:after {
    width: 0;
  }
  .c-more-button a:hover em svg:first-child {
    opacity: 0;
    left: calc(50% + 16px);
  }
  .c-more-button a:hover em svg:last-child {
    opacity: 1;
    left: 50%;
  }
}

.anchor-links {
  background: #F3F5FB;
}
.anchor-links__inner {
  padding: 48px 30px;
  max-width: 1132px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .anchor-links__inner {
    padding: 24px 16px;
  }
}
.anchor-links__inner ul {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .anchor-links__inner ul {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .anchor-links__inner ul li {
    width: 50%;
  }
}
.anchor-links__inner ul li a {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
  background: #103048;
  border-radius: 8px;
  display: block;
  width: 100%;
  text-align: center;
  height: 64px;
  border: 1px solid #103048;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .anchor-links__inner ul li a {
    width: 100%;
  }
}
.anchor-links__inner ul li a:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 47%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.3s;
}
.anchor-links__inner ul li a:hover {
  background: #fff;
  color: #103048;
}
.anchor-links__inner ul li a:hover:after {
  border-top: 1px solid #103048;
  border-right: 1px solid #103048;
}

.big-card-row {
  padding-bottom: 32px;
}
.big-card-row__inner {
  max-width: 1247px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .big-card-row__inner {
    padding: 0 16px;
  }
}
.big-card-row__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
}
@media only screen and (min-width: 768px) {
  .big-card-row__row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .big-card-row__row:nth-child(odd) {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .big-card-row__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 0;
  }
}
.big-card-row__image {
  width: 47.138047%;
}
@media only screen and (max-width: 767px) {
  .big-card-row__image {
    width: 100%;
  }
}
.big-card-row__image picture {
  overflow: hidden;
  border-radius: 16px;
}
.big-card-row__image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.big-card-row__content {
  width: 47.138047%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.big-card-row__content .c-h2 {
  width: 100%;
  text-align: left;
}
.big-card-row__content h3 {
  width: 100%;
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-top: 32px;
  color: #103048;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content h3 {
    font-size: 24px;
    margin-top: 24px;
    text-align: center;
  }
}
.big-card-row__content h3 strong {
  color: #0068B7;
}
.big-card-row__content > img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content > img {
    display: block;
    border-radius: 16px;
    margin-top: 24px;
  }
}
.big-card-row__content p {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content p {
    margin-top: 16px;
    gap: 8px;
  }
}
.big-card-row__content p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #103048;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content p span {
    font-size: 14px;
  }
}
.big-card-row__content > small {
  display: block;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  font-weight: bold;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content > small {
    text-align: right;
    width: 100%;
    margin-top: 16px;
  }
}
.big-card-row__content blockquote {
  width: 100%;
  margin-top: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #0068B7;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .big-card-row__content blockquote {
    padding: 16px;
  }
}
.big-card-row__content blockquote p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 0;
}
.big-card-row__content blockquote ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.big-card-row__content blockquote ul li {
  font-size: 14px;
  font-weight: bold;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.big-card-row__content blockquote ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #103048;
  border-radius: 50%;
}

.breadcrumb__inner {
  padding: 32px 0 16px;
}
.breadcrumb__inner ul {
  display: flex;
  align-items: center;
  gap: 37px;
  padding: 0 88px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb__inner ul {
    padding: 0 16px;
  }
}
.breadcrumb__inner ul li {
  font-size: 12px;
  color: #103048;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: bold;
  position: relative;
  align-items: center;
  display: flex;
}
.breadcrumb__inner ul li:last-child:before {
  display: none;
}
.breadcrumb__inner ul li:before {
  content: "/";
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  color: #0068B7;
}
.breadcrumb__inner ul li a {
  text-decoration: underline;
  gap: 8px;
}

.cv-area {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
}
.cv-area__inner {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .cv-area__inner {
    padding: 32px 16px;
  }
}
.cv-area__box__title h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cv-area__box__title h3 span {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
}
.cv-area__box__title h3:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #0068B7;
}
.cv-area__box__content {
  padding-top: 16px;
}
.cv-area__box__content p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  text-align: center;
}
.cv-area__box__content a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  margin-top: 20px;
}
.cv-area__box__content a small {
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: 900;
}
.cv-area__box__content a strong {
  font-size: 40px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .cv-area__box__content a strong {
    font-size: 32px;
  }
}
.cv-area__box__content > small {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #103048;
  margin-top: 16px;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .cv-area__box__content > small {
    margin-top: 16px;
  }
}
.cv-area .c-button {
  margin-top: 24px;
}

.intro-cards {
  padding-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .intro-cards {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
.intro-cards__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .intro-cards__inner {
    padding: 0 16px;
  }
}
.intro-cards__row {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .intro-cards__row {
    gap: 10px;
    flex-direction: column;
  }
}
.intro-cards__item {
  width: 33.333333%;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 2px solid #0068B7;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item {
    width: 100%;
    padding: 24px 16px;
  }
}
.intro-cards__item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item__content {
    gap: 16px;
  }
}
.intro-cards__item__content > strong {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #103048;
  box-shadow: inset 0px -4px 0 0px #bee1fb, 0px 4px 0 0px #bee1fb;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item__content > strong {
    font-size: 20px;
  }
}
.intro-cards__item__content__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.intro-cards__item__content__texts > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}
.intro-cards__item__content__texts > div small {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item__content__texts > div small {
    font-size: 18px;
  }
}
.intro-cards__item__content__texts > div strong {
  font-size: 48px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #0068B7;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item__content__texts > div strong {
    font-size: 36px;
  }
}
.intro-cards__item__content__texts > small {
  font-size: 14px;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .intro-cards__item__content__texts > small {
    font-size: 13px;
  }
}

.sub-main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1247px;
  padding: 32px 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sub-main__inner {
    padding: 32px 16px;
  }
}
.sub-main__inner .c-h2 {
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.sub-main__inner h3 {
  width: 100%;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sub-main__inner h3 {
    font-size: 24px;
  }
}
.sub-main__inner h3 strong {
  color: #0068B7;
}
.sub-main__inner p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}
.sub-main__inner p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  display: block;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .sub-main__inner p span {
    font-size: 14px;
  }
}

.benefits-single__about {
  padding: 48px 0;
  background: #F3F5FB;
}
.benefits-single__about__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__inner {
    padding: 0 16px;
  }
}
.benefits-single__about__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__title h2 {
    text-align: center;
    width: 100%;
  }
}
.benefits-single__about__title h3 {
  margin-top: 32px;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__title h3 {
    font-size: 24px;
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
}
.benefits-single__about__title h3 strong {
  color: #0068B7;
}
.benefits-single__about__title p {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  gap: 8px;
}
.benefits-single__about__title p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  display: block;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__title p span {
    font-size: 14px;
    line-height: 2;
  }
}
.benefits-single__about__box {
  margin-top: 32px;
}
.benefits-single__about__box__inner {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__box__inner {
    padding: 24px 16px;
  }
}
.benefits-single__about__box__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__box__row {
    flex-direction: column;
  }
}
.benefits-single__about__box__row ul {
  display: flex;
  flex-direction: column;
  width: 33.333333%;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__box__row ul {
    width: 100%;
  }
}
.benefits-single__about__box__row ul li {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #103048;
  padding: 12px 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__box__row ul li {
    font-size: 14px;
  }
}
.benefits-single__about__box__row ul li:nth-child(even) {
  background: #F3F5FB;
}
.benefits-single__about__box__caution {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .benefits-single__about__box__caution {
    margin-top: 24px;
  }
}
.benefits-single__about__box__caution p {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits-single__about__box__caution p span {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  display: block;
  font-weight: bold;
}

.company-single__intro {
  padding: 48px 0;
}
@media only screen and (max-width: 767px) {
  .company-single__intro {
    padding: 24px 0;
  }
}
.company-single__intro__inner {
  max-width: 1132px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .company-single__intro__inner {
    padding: 0 16px;
  }
}
.company-single__intro__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  .company-single__intro__row {
    flex-direction: column;
  }
}
.company-single__intro__image {
  width: 43.3213%;
}
@media only screen and (max-width: 767px) {
  .company-single__intro__image {
    display: none;
  }
}
.company-single__intro__content {
  width: calc(56.6787% - 48px);
}
@media only screen and (max-width: 767px) {
  .company-single__intro__content {
    width: 100%;
  }
}
.company-single__intro .c-h2 {
  width: 100%;
  margin-top: 24px;
}
.company-single__intro .c-h2:first-child {
  margin-top: 0;
}
.company-single__intro h3 {
  width: 100%;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 32px;
  color: #103048;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .company-single__intro h3 {
    font-size: 24px;
    margin-top: 24px;
    text-align: center;
    padding-bottom: 24px;
  }
}
.company-single__intro h3 strong {
  color: #0068B7;
}
.company-single__intro small, .company-single__intro p {
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .company-single__intro small, .company-single__intro p {
    margin-top: 16px;
    gap: 8px;
    display: block;
  }
}
.company-single__intro p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-single__intro p span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
.company-single__intro small {
  margin-top: 12px;
  display: block;
}
.company-single__intro ul {
  margin-top: 16px;
  border: 1px solid #0068B7;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: bold;
  list-style: none;
  color: #103048;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .company-single__intro ul {
    gap: 8px;
    padding: 16px 16px;
  }
}
.company-single__intro ul li {
  padding-left: 16px;
  position: relative;
}
.company-single__intro ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #103048;
  border-radius: 50%;
}
.company-single__history {
  padding-bottom: 48px;
  padding-top: 48px;
}
@media only screen and (max-width: 767px) {
  .company-single__history {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.company-single__history__inner {
  max-width: 1244px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .company-single__history__inner {
    padding: 0 16px;
  }
}
.company-single__history__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .company-single__history__title h2 {
    text-align: center;
    width: 100%;
  }
}
.company-single__history__title h3 {
  margin-top: 32px;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .company-single__history__title h3 {
    font-size: 24px;
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
}
.company-single__history__title h3 strong {
  color: #0068B7;
}
.company-single__history__title p {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .company-single__history__title p {
    margin-top: 16px;
    gap: 8px;
  }
}
.company-single__history__content {
  margin-top: 24px;
  position: relative;
}
.company-single__history__content:before {
  content: "";
  width: 8px;
  height: 100%;
  background: #f3f5fb;
  position: absolute;
  left: 124px;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .company-single__history__content:before {
    left: 83px;
  }
}
.company-single__history__content__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 0 38px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .company-single__history__content__row {
    flex-direction: column;
    gap: 0;
    padding: 0px;
  }
}
.company-single__history__content__left {
  width: calc(100% - 290px - 48px);
}
@media only screen and (max-width: 767px) {
  .company-single__history__content__left {
    width: 100%;
  }
}
.company-single__history__content__left__box {
  width: 100%;
  display: flex;
  gap: 24px;
  padding: 16px 0;
}
.company-single__history__content__left__label {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 88px;
  position: relative;
}
.company-single__history__content__left__label:before {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 4px solid #103048;
  background: #fff;
}
.company-single__history__content__left__label p {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #0068B7;
}
.company-single__history__content__left__content {
  width: calc(100% - 88px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-single__history__content__left__content ul {
  display: flex;
  align-items: flex-start;
}
.company-single__history__content__left__content ul li:first-child {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #0068B7;
  width: 52px;
}
.company-single__history__content__left__content ul li:last-child {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #103048;
  width: calc(100% - 52px);
  padding-top: 6px;
}
.company-single__history__content__left__content ul li:last-child a {
  color: #0068B7;
  text-decoration: underline;
}
.company-single__history__content__right {
  width: 290px;
}
@media only screen and (max-width: 767px) {
  .company-single__history__content__right {
    display: none;
  }
}
.company-single__history__content__right__images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.company-single__history__content__right__images img {
  width: 100%;
}
.company-single__overview {
  padding-bottom: 96px;
}
@media only screen and (max-width: 767px) {
  .company-single__overview {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}
.company-single__overview__inner {
  max-width: 1184px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__inner {
    padding: 0 16px;
  }
}
.company-single__overview__inner table {
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__inner table {
    display: block;
    width: 100%;
    line-height: 2;
  }
}
.company-single__overview__inner table tr {
  border-bottom: 1px solid #0068B7;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__inner table tr {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px;
  }
}
.company-single__overview__inner table th {
  width: 192px;
  padding: 16px;
  color: #0068B7;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__inner table th {
    display: block;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .company-single__overview__inner table td {
    display: block;
    width: 100%;
  }
}
.company-single__overview__map {
  margin-top: 54px;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__map {
    margin-top: 24px;
  }
}
.company-single__overview__map figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-single__overview__map figure iframe {
  width: 100%;
  height: 532px;
}
@media only screen and (max-width: 767px) {
  .company-single__overview__map figure iframe {
    height: 240px;
  }
}
.company-single__overview__map figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-single__overview__map figure figcaption p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #103048;
}
.company-single__overview__map figure figcaption div a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.company-single__overview__map figure figcaption div a span {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  text-decoration: underline;
}
.company-single__about {
  padding: 48px 0;
  background: #F3F5FB;
}
.company-single__about__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .company-single__about__inner {
    padding: 0 16px;
  }
}
.company-single__about__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .company-single__about__title h2 {
    text-align: center;
    width: 100%;
  }
}
.company-single__about__title h3 {
  margin-top: 32px;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .company-single__about__title h3 {
    font-size: 24px;
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
}
.company-single__about__title h3 strong {
  color: #0068B7;
}
.company-single__about__title p {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  gap: 8px;
}
.company-single__about__title p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: #103048;
  display: block;
}
.company-single__about__content {
  margin-top: 32px;
  padding: 48px;
  background: #fff;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .company-single__about__content {
    margin-top: 40px;
    padding: 16px;
  }
}
.company-single__about__content__row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}
@media only screen and (max-width: 767px) {
  .company-single__about__content__row {
    flex-direction: column;
    gap: 38px;
  }
}
.company-single__about__content__item {
  width: calc(33.333333% - 16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .company-single__about__content__item {
    width: 100%;
  }
}
.company-single__about__content__item h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #0068B7;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .company-single__about__content__item h4 {
    margin-bottom: 0px;
  }
}
.company-single__about__content__item h4:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #0068B7;
}
.company-single__about__content__item ul {
  display: flex;
  flex-direction: column;
}
.company-single__about__content__item ul li {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: bold;
  padding: 12px 16px;
}
.company-single__about__content__item ul li:nth-child(even) {
  background: #F3F5FB;
}

.contact-single .contact-form {
  background: #F3F5FB;
  /* 確認画面: ラジオボタンを選択不可に */
  padding: 48px 0;
}
.contact-single .contact-form--confirm .contact-form__form__radio input {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form {
    padding: 24px 0;
  }
}
.contact-single .contact-form__inner {
  max-width: 1172px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__inner {
    padding: 0 16px;
  }
}
.contact-single .contact-form__title h2 {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #2E2A34;
  font-weight: bold;
  text-align: center;
}
.contact-single .contact-form__step {
  max-width: 751px;
  margin: auto;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__step {
    max-width: 100%;
  }
}
.contact-single .contact-form__step ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.contact-single .contact-form__step ul:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  width: calc(100% - 12px);
  height: 2px;
  border-radius: 100px;
  background: #BBC5D5;
}
.contact-single .contact-form__step ul li {
  padding-bottom: 72px;
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 2;
}
.contact-single .contact-form__step ul li.is-active span {
  color: #0068B7;
}
.contact-single .contact-form__step ul li.is-active:before {
  background: #0068B7;
}
.contact-single .contact-form__step ul li:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: #B3B3B3;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.contact-single .contact-form__step ul li span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #B3B3B3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}
.contact-single .contact-form__form__contents {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__contents {
    margin-top: 24px;
  }
}
.contact-single .contact-form__form__row {
  display: flex;
  gap: 40px;
  position: relative;
  padding: 0 52px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__row {
    gap: 0;
    padding: 0;
    flex-direction: column;
  }
}
.contact-single .contact-form__form__row:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 100%;
  height: 1px;
  background: #B3B3B3;
}
.contact-single .contact-form__form__row > label {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__row > label {
    width: 100%;
  }
}
.contact-single .contact-form__form__row > label span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
.contact-single .contact-form__form__row > label em {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  background: #0068B7;
  padding: 8px;
  border-radius: 4px;
}
.contact-single .contact-form__form__values {
  width: calc(100% - 240px - 40px);
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__values {
    width: 100%;
  }
}
.contact-single .contact-form__form__radio {
  padding-top: 6px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__radio {
    padding: 16px;
    padding-bottom: 0;
  }
}
.contact-single .contact-form__form__radio ul {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__radio ul {
    gap: 16px;
    flex-direction: column;
  }
}
.contact-single .contact-form__form__radio ul li {
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__radio ul li {
    min-width: 0;
    width: 100%;
  }
}
.contact-single .contact-form__form__radio ul li label {
  position: relative;
  display: block;
  width: 100%;
}
.contact-single .contact-form__form__radio ul li label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.contact-single .contact-form__form__radio ul li label input:checked + span:before {
  border-color: #0068B7;
}
.contact-single .contact-form__form__radio ul li label input:checked + span:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0068B7;
  left: 6px;
  top: 48%;
  transform: translateY(-50%);
}
.contact-single .contact-form__form__radio ul li label span {
  font-size: 14px;
  padding-left: 28px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
.contact-single .contact-form__form__radio ul li label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #B3B3B3;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__text {
    padding-top: 16px;
  }
}
.contact-single .contact-form__form__text input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #B3B3B3;
  background: #fff;
  padding: 11px 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__textarea {
    padding-top: 16px;
  }
}
.contact-single .contact-form__form__textarea textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #B3B3B3;
  background: #fff;
  padding: 18px 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  height: 240px;
}
.contact-single .contact-form__form__agree {
  background: #fff;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 48px 52px;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__agree {
    padding: 48px 24px;
  }
}
.contact-single .contact-form__form__agree.transparent {
  background: transparent;
  margin-top: 76px;
  padding: 0;
  gap: 0;
  padding-bottom: 32px;
}
.contact-single .contact-form__form__agree__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.contact-single .contact-form__form__agree__title strong {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #103048;
}
.contact-single .contact-form__form__agree__title p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  text-align: center;
}
.contact-single .contact-form__form__agree__title p a {
  font-weight: bold;
  text-decoration: underline;
}
.contact-single .contact-form__form__agree__checkbox {
  position: relative;
}
.contact-single .contact-form__form__agree__checkbox ul {
  display: flex;
  gap: 16px;
}
.contact-single .contact-form__form__agree__checkbox ul li label {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.contact-single .contact-form__form__agree__checkbox ul li label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.contact-single .contact-form__form__agree__checkbox ul li label input:checked + span:before {
  background: #0068B7;
}
.contact-single .contact-form__form__agree__checkbox ul li label input:checked + span:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 46%;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.contact-single .contact-form__form__agree__checkbox ul li label span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #103048;
  font-weight: bold;
  display: block;
  padding: 13px 0;
  padding-left: 40px;
}
.contact-single .contact-form__form__agree__checkbox ul li label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #B3B3B3;
  background: #fff;
  transition: all 0.3s;
}
.contact-single .contact-form__form__agree__checkbox ul li label span:checked:before {
  background: #0068B7;
}
.contact-single .contact-form__form__agree__error {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #c00;
  letter-spacing: 0.08em;
}
.contact-single .contact-form__form__agree__error[hidden] {
  display: none;
}
.contact-single .contact-form__form__agree__button {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contact-single .contact-form__form__agree__button {
    width: 100%;
  }
}
.contact-single .contact-form__form__agree__button a {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
}
.contact-single .contact-form__form__agree__button__back {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.contact-single .contact-form__form__complete {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.contact-single .contact-form__form__complete h2 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #0068B7;
}
.contact-single .contact-form__form__complete p {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-single .contact-form__form__complete p span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
  text-align: center;
}
.contact-single .contact-form__form__complete a {
  margin-top: 24px;
}

.privacy-single__content {
  padding: 48px 0;
}
.privacy-single__content__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  .privacy-single__content__inner {
    padding: 0 16px;
    gap: 32px;
  }
}
.privacy-single__content__inner > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy-single__content__inner > div h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.privacy-single__content__inner > div h3::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #0068B7;
}
.privacy-single__content__inner > div h3 span {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #0068B7;
}
@media only screen and (max-width: 767px) {
  .privacy-single__content__inner > div h3 span {
    font-size: 20px;
  }
}
.privacy-single__content__inner > div > p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.privacy-single__content__inner > div > p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .privacy-single__content__inner > div > p span {
    font-size: 14px;
  }
}
.privacy-single__content__inner > div > blockquote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #0068B7;
}
.privacy-single__content__inner > div > blockquote ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-single__content__inner > div > blockquote ul li {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  padding-left: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .privacy-single__content__inner > div > blockquote ul li {
    font-size: 14px;
  }
}
.privacy-single__content__inner > div > blockquote ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 4px;
  background: #103048;
  border-radius: 50%;
  transform: translateY(-50%);
}
.privacy-single__content__inner > div > blockquote p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .privacy-single__content__inner > div > blockquote p {
    font-size: 14px;
  }
}

.requirement-single .big-card-row {
  padding-bottom: 0;
}
.requirement-single__cards {
  background: #F3F5FB;
}
.requirement-single__cards__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
  padding-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__inner {
    padding: 0 16px;
    padding-bottom: 24px;
  }
}
.requirement-single__cards__row {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__row {
    gap: 10px;
  }
}
.requirement-single__cards__card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card {
    padding: 24px 16px;
    gap: 24px;
  }
}
.requirement-single__cards__card > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.requirement-single__cards__card > div h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.requirement-single__cards__card > div h2 span {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #0068B7;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card > div h2 span {
    font-size: 20px;
  }
}
.requirement-single__cards__card > div h2:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #0068B7;
}
.requirement-single__cards__card > div > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.requirement-single__cards__card > div > ul li {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  letter-spacing: 0.08em;
  padding-left: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card > div > ul li {
    font-size: 14px;
  }
}
.requirement-single__cards__card > div > ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #103048;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card > div > ul li:before {
    top: 11px;
  }
}
.requirement-single__cards__card > div blockquote {
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #0068B7;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card > div blockquote {
    padding: 16px;
  }
}
.requirement-single__cards__card > div blockquote strong {
  font-weight: bold;
  color: #103048;
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
}
.requirement-single__cards__card > div blockquote ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.requirement-single__cards__card > div blockquote ul li {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  letter-spacing: 0.08em;
  padding-left: 16px;
  position: relative;
}
.requirement-single__cards__card > div blockquote ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #103048;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .requirement-single__cards__card > div blockquote ul li:before {
    top: 11px;
  }
}
.requirement-single__cards__card .c-button {
  margin: auto;
}

.work-single__members {
  background: #F3F5FB;
  padding: 48px 0;
}
@media only screen and (max-width: 767px) {
  .work-single__members {
    padding: 24px 0;
  }
}
.work-single__members__inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .work-single__members__inner {
    padding: 0 16px;
  }
}
.work-single__members__box {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .work-single__members__box {
    padding: 24px 16px;
  }
}
.work-single__members__box > p {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.work-single__members__box > p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
.work-single__members__title h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #0068B7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.work-single__members__title h3:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #0068B7;
}
.work-single__members__image {
  width: 100%;
  margin-top: 32px;
}
.work-single__members__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.work-single__members__flow__content {
  margin-top: 24px;
  position: relative;
}
.work-single__members__flow__content:before {
  content: "";
  width: 8px;
  height: 100%;
  background: #f3f5fb;
  position: absolute;
  left: 124px;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .work-single__members__flow__content:before {
    left: 83px;
  }
}
.work-single__members__flow__content__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 0 38px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .work-single__members__flow__content__row {
    flex-direction: column;
    gap: 0;
    padding: 0px;
  }
}
.work-single__members__flow__content__left {
  width: 100%;
}
.work-single__members__flow__content__left__box {
  width: 100%;
  display: flex;
  gap: 24px;
  padding: 16px 0;
}
.work-single__members__flow__content__left__label {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 88px;
  position: relative;
}
.work-single__members__flow__content__left__label:before {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 4px solid #103048;
  background: #fff;
}
.work-single__members__flow__content__left__label p {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #0068B7;
}
.work-single__members__flow__content__left__content {
  width: calc(100% - 88px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-single__members__flow__content__left__content p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #103048;
  width: calc(100% - 52px);
  padding-top: 6px;
}
.work-single__members__flow__content__left__content p a {
  color: #0068B7;
  text-decoration: underline;
}
.work-single__members__flow__content__left__content ul {
  display: flex;
  align-items: flex-start;
}
.work-single__members__flow__content__left__content ul li:first-child {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #0068B7;
  width: 52px;
}
.work-single__members__flow__content__left__content ul li:last-child {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #103048;
  width: calc(100% - 52px);
  padding-top: 6px;
}
.work-single__members__flow__content__left__content ul li:last-child a {
  color: #0068B7;
  text-decoration: underline;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #fff;
  background-image: url(../images/common/whole_bg.svg);
  background-size: 100% auto;
  background-position: top 80px center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  body {
    background-image: url(../images/common/whole_bg_sp.png);
    background-position: top -44px center;
  }
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
main {
  padding-top: 161px;
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 106px;
  }
}

.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  will-change: transform, opacity;
}

.top .main-visual__inner {
  position: relative;
  z-index: 1;
  max-width: 1247px;
  padding: 32px 30px 48px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .top .main-visual__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 16px;
  }
}
.top .main-visual__images {
  position: relative;
  z-index: 1;
  width: 45.492839%;
  overflow: hidden;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .top .main-visual__images {
    width: 100%;
  }
}
.top .main-visual__images .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.top .main-visual__images .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .main-visual__images .main-visual__swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 10;
}
.top .main-visual .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 8px !important;
}
.top .main-visual .swiper-pagination-bullet-active {
  background: #0068B7;
}
.top .main-visual .main-visual__images .main-visual__swiper-pagination {
  bottom: 24px;
}
.top .main-visual__content {
  position: relative;
  z-index: 1;
  width: 50.463353%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .top .main-visual__content {
    width: 100%;
  }
}
.top .main-visual__content h2 {
  line-height: 1.5;
  font-size: 64px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .top .main-visual__content h2 {
    font-size: 36px;
  }
}
.top .main-visual__content h2 span strong {
  font-size: 80px;
  color: #0068B7;
}
@media only screen and (max-width: 767px) {
  .top .main-visual__content h2 span strong {
    font-size: 40px;
  }
}
.top .main-visual__content p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-weight: bold;
}
.top .main-visual__content p span {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
.top .peoples {
  padding: 124px 0 40px 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top .peoples {
    padding: 48px 0 24px;
  }
}
.top .peoples__inner {
  max-width: 1247px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .top .peoples__inner {
    padding: 0 16px;
  }
}
.top .peoples__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .top .peoples__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.top .peoples__left {
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left {
    width: 100%;
  }
  .top .peoples__left .c-h2 {
    width: 100%;
  }
}
.top .peoples__left__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left__content {
    margin-top: 24px;
    width: 100%;
  }
}
.top .peoples__left__content h3 {
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left__content h3 {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }
}
.top .peoples__left__content h3 strong {
  color: #0068B7;
}
.top .peoples__left__content p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left__content p {
    gap: 8px;
  }
}
.top .peoples__left__content p span {
  font-size: 16px;
  display: block;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left__content p span {
    font-size: 14px;
  }
}
.top .peoples__left .c-more-button {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .top .peoples__left .c-more-button {
    margin: 0 0 0 auto;
    margin-top: 32px;
  }
}
.top .peoples__images {
  position: absolute;
  z-index: 0;
  left: 512px;
  top: -82px;
  width: 400%;
  overflow: visible;
  /* Swiper: overflow: hidden必須（タッチ検知のため）、widthは可視領域を指定 */
}
@media only screen and (max-width: 767px) {
  .top .peoples__images {
    left: 0;
    top: 0;
    position: relative;
    width: 100%;
  }
}
.top .peoples__images .peoples__images__swiper,
.top .peoples__images .swiper {
  overflow: visible;
  margin: 0;
  width: max(200px, 25% - 482px); /* 可視領域 = inner幅 - 482px */
  touch-action: pan-y; /* 横スワイプを有効化 */
}
.top .peoples__images .swiper-wrapper {
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .top .peoples__images .peoples__images__pagination {
    display: none;
  }
}
.top .peoples__images .swiper-slide {
  width: 320px;
  height: 480px;
  flex-shrink: 0;
  align-self: flex-end; /* スライドを下揃えに */
  transition: width 0.4s ease, height 0.4s ease, opacity 0.5s ease, padding-top 0.4s ease;
  padding-top: 60px;
  /* 左にスライドが移動する際、左側の全slideをopacityで非表示にアニメーション */
  /* :has(~ .swiper-slide-active) = activeの前に存在する全スライド（左1個目〜左N個目） */
  /* PCのみ適用（スマホでは解除） */
  /* 移動完了後に付与→transitionでスムーズに拡大 */
}
@media only screen and (max-width: 767px) {
  .top .peoples__images .swiper-slide {
    width: 280px;
    height: 400px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .top .peoples__images .swiper-slide:has(~ .swiper-slide-active):not(.swiper-slide-active):not(.swiper-slide-next) {
    opacity: 0;
  }
}
.top .peoples__images .swiper-slide.swiper-slide-active {
  width: 360px;
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .top .peoples__images .swiper-slide.swiper-slide-active {
    width: 280px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .top .peoples__images .swiper-slide a:hover picture img {
    transform: scale(1.05);
  }
  .top .peoples__images .swiper-slide a:hover picture svg path {
    fill: #103048;
  }
  .top .peoples__images .swiper-slide a:hover picture svg rect {
    fill: #fff;
  }
}
.top .peoples__images .swiper-slide picture {
  display: block;
  width: 100%;
  padding-top: 150%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .top .peoples__images .swiper-slide picture {
    padding-top: 142.857143%;
  }
}
.top .peoples__images .swiper-slide img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
  transform: scale(1);
}
.top .peoples__images__texts {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  color: #fff;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .top .peoples__images__texts {
    padding: 16px;
    gap: 12px;
  }
}
.top .peoples__images__texts > div {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .top .peoples__images__texts > div {
    text-align: center;
  }
}
.top .peoples__images__texts > div:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background: #fff;
}
.top .peoples__images__texts > div small {
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.top .peoples__images__texts > div strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
}
.top .peoples__images__texts > svg {
  display: inline-block;
  margin-top: 8px;
}
.top .peoples__images__texts > svg path {
  transition: fill 0.4s;
  fill: #fff;
}
.top .peoples__images__texts > svg rect {
  transition: fill 0.4s;
  fill: transparent;
}
.top .peoples__images__pagination {
  position: absolute;
  bottom: -130px;
  right: 0;
  z-index: 10;
}
.top .peoples__images__pagination ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top .peoples__images__pagination ul li {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  display: block;
  border: 1px solid #103048;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.top .peoples__images__pagination ul li.is-active {
  opacity: 1;
}
.top .peoples__images__pagination ul li > span {
  display: block;
  width: 100%;
  height: 100%;
}
.top .peoples__images__pagination ul li > span > span {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #103048;
}
.top .welfare {
  padding: 24px 0 48px 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top .welfare {
    padding: 24px 0;
  }
}
.top .welfare__inner {
  max-width: 1495px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top .welfare__inner {
    padding: 0 16px;
  }
}
.top .welfare__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 124px;
}
@media only screen and (max-width: 767px) {
  .top .welfare__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-right: 0;
  }
}
.top .welfare__left {
  width: calc(100% - 540px);
  display: flex;
}
@media only screen and (max-width: 767px) {
  .top .welfare__left {
    width: 100%;
    display: none;
  }
}
.top .welfare__left__image {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .top .welfare__left__image {
    width: 100%;
    height: 100%;
  }
}
.top .welfare__left__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.top .welfare__left__image picture img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.top .welfare__left__image picture img:nth-child(1) {
  opacity: 0;
}
.top .welfare__right {
  width: 492px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right {
    width: 100%;
  }
  .top .welfare__right .c-h2 {
    width: 100%;
  }
}
.top .welfare__right__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right__content {
    margin-top: 24px;
    width: 100%;
  }
  .top .welfare__right__content img {
    margin-left: -16px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
  }
}
.top .welfare__right__content h3 {
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right__content h3 {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
}
.top .welfare__right__content h3 strong {
  color: #0068B7;
}
.top .welfare__right__content p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right__content p {
    gap: 8px;
  }
}
.top .welfare__right__content p span {
  font-size: 16px;
  display: block;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right__content p span {
    font-size: 14px;
  }
}
.top .welfare__right .c-more-button {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .top .welfare__right .c-more-button {
    margin: 0 0 0 auto;
    margin-top: 32px;
  }
}
.top .data {
  background: #F3F5FB;
  padding: 88px 0 48px 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top .data {
    padding: 48px 0 24px 0;
  }
}
.top .data__inner {
  max-width: 1247px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top .data__inner {
    padding: 0 16px;
    width: 100%;
  }
  .top .data__inner .c-h2 {
    width: 100%;
  }
}
.top .data__introduction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .top .data__introduction {
    gap: 24px;
  }
}
.top .data__introduction__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .top .data__introduction__content {
    gap: 16px;
  }
}
.top .data__introduction__content h3 {
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .top .data__introduction__content h3 {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
}
.top .data__introduction__content h3 strong {
  color: #0068B7;
}
.top .data__introduction__content p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .top .data__introduction__content p {
    font-size: 14px;
  }
}
.top .data__introduction__content .c-more-button {
  position: absolute;
  right: 12px;
  bottom: 0;
}
.top .data__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .top .data__contents {
    margin-top: 32px;
    gap: 10px;
  }
  .top .data__contents .c-more-button {
    margin: 32px 0 0 auto;
  }
}
.top .data__contents__card {
  width: calc(33.333333% - 16px);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.top .data__contents__card--graph {
  padding: 32px 28px;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card {
    width: calc(50% - 5px);
    padding: 24px 16px;
    gap: 16px;
  }
  .top .data__contents__card--graph {
    width: 100%;
  }
}
.top .data__contents__card--title h4 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .data__contents__card--title h4 span {
  display: inline-block;
  position: relative;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: bold;
  box-shadow: inset 0px -4px 0 0px #bee1fb, 0px 4px 0 0px #bee1fb;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--title h4 span {
    font-size: 20px;
  }
}
.top .data__contents__card--title h4 small {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--image {
    display: none;
  }
}
.top .data__contents__card--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--content {
    margin-top: 0;
  }
}
.top .data__contents__card--content h5 {
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #103048;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--content h5 {
    font-size: 24px;
  }
}
.top .data__contents__card--content h5 strong {
  font-size: 80px;
  color: #0068B7;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--content h5 strong {
    font-size: 48px;
  }
}
.top .data__contents__card--content small {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: bold;
  color: #103048;
}
@media only screen and (max-width: 767px) {
  .top .data__contents__card--content small {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }
}

.section {
  width: 100px;
  height: auto;
}