@charset "UTF-8";
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
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,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  right: 0;
  width: 100%;
  line-height: 1.8;
  color: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption, th {
  text-align: left;
}

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

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------
	Google Web Font
----------------------------------------*/
/**
 * Roboto
 * regular, bold
 * font-family: 'Roboto', sans-serif;
 */
/**
 * Montserrat
 * regular, bold
 * font-family: 'Montserrat', sans-serif;
 */
/**
 * Noto Sans Jp
 * regular, bold
 * font-family: font-family:'Noto Sans JP',"Noto Sans Japanese";
 */
/*----------------------------------------
	fontSize
----------------------------------------*/
html {
  /* font-size: 10px;  ← これを下の行に変更 */
  font-size: 62.5%;
}

body {
  font-size: 1.6rem; /* ここはそのまま（16px相当）でOK */
}

.u-wrapper-l {
  max-width: 1000px;
  margin: 0 auto;
}

.u-wrapper-m {
  max-width: 800px;
  margin: 0 auto;
}

.u-wrapper-s {
  max-width: 500px;
  margin: 0 auto;
}

.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/* =========
  Hero
========= */
.p-hero {
  position: relative;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-top: 0;
  }
}
.p-hero__bg {
  position: relative;
  z-index: 0;
  height: 640px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hero__bg {
    height: 390px;
  }
}
.p-hero__bg img.bg_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.p-hero__bg {
  /* 白い膜っぽい */
  /*&::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.72);
  }*/
}
.p-hero__title {
  display: inline-block;
  margin: 0 auto;
}
.p-hero__title img {
  width: 100%;
  height: auto;
}
.p-hero__inner {
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 84px 0 34px;
  z-index: 5;
  top: 55%;
  /* ▼ 自然なモヤを作る設定 ▼ */
  width: auto; /* 幅を固定せず、文字数に合わせる */
  /* 中心部分の白 */
  background: rgba(255, 255, 255, 0.6);
  /* 周囲に広がるぼかし（ここが重要） */
  /* 0 0 [ぼかし量] [広がる距離] [色] */
  -webkit-box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.6);
  /* 形をふんわりした楕円にする */
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .p-hero__inner {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    top: 50%;
    padding: 0;
    width: 100%;
  }
}
.p-hero__title {
  margin: 0;
  font-size: 4.4rem;
  line-height: 1.5;
  color: #0a2d70;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .p-hero__title {
    font-size: 3.4vw;
    width: 82vw;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 2.5rem;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-hero__lead {
  margin: 30px 0 26px;
}
@media only screen and (min-width: 768px) {
  .p-hero__lead {
    font-size: 2rem;
    line-height: 2.1;
  }
}
.p-hero__lead {
  color: #2c2c2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .p-hero__lead {
    font-weight: 500;
  }
}
.p-hero__lead {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-hero__lead {
    font-size: 1.6rem;
    margin: 20px 20px 15px;
  }
  .p-hero__lead br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .p-hero__lead {
    font-size: 1.6vw;
  }
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/* =========
  sub-Hero
========= */
.p-sub-hero {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-sub-hero {
    padding-top: 61px;
  }
}
.p-sub-hero__bg {
  position: relative;
  z-index: 0;
  height: 290px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sub-hero__bg {
    height: 208px;
  }
}
.p-sub-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.p-sub-hero__bg {
  /* 白い膜っぽい */
}
.p-sub-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.p-sub-hero__inner {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  /* ▼ 自然なモヤを作る設定 ▼ */
  width: auto; /* 幅を固定せず、文字数に合わせる */
  /* 中心部分の白 */
  background: rgba(255, 255, 255, 0.6);
  /* 周囲に広がるぼかし（ここが重要） */
  /* 0 0 [ぼかし量] [広がる距離] [色] */
  -webkit-box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.6);
  /* 形をふんわりした楕円にする */
}
@media only screen and (min-width: 768px) {
  .p-sub-hero__inner {
    border-radius: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-hero__inner {
    /* 1. 上下の余白を少し減らす（必要に応じて調整） */
    padding: 0;
    /* 2. 幅を画面いっぱい(100%)ではなく、中身に合わせる */
    width: 100%; /* または auto */
    margin: 0 auto; /* 中央寄せにする場合 */
    /* 3. ぼかしを小さくする */
    /* 変更前: 0 0 100px 100px ... */
    /* 変更後: 0 0 20px 10px ... (ぼかし量20px, 広がり10px) */
    -webkit-box-shadow: 0 0 60px 60px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 60px 60px rgba(255, 255, 255, 0.6);
    border-radius: 50%;
  }
}
.p-sub-hero__title {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1.2;
  color: #0a2d70;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sub-hero__title {
    font-size: 2.5rem;
    line-height: 38px;
  }
}
.p-sub-hero__eng {
  line-height: 1;
  font-size: 2rem;
  margin-top: 20px;
  color: #d83c9b;
}
@media screen and (max-width: 767px) {
  .p-sub-hero__eng {
    margin-top: 5px;
    font-size: 1.5rem;
  }
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/* =========
  PageTop
========= */
.c-pagetop {
  position: absolute;
  right: 60px;
  top: -45px;
  z-index: 40;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 96px;
  height: auto;
  opacity: 0; /* 透明にする */
  visibility: hidden; /* クリック判定も消す */
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; /* 0.3秒かけて変化 */
}
.c-pagetop img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    right: 8px;
    bottom: 12px;
    top: auto;
    width: 96px;
    height: 96px;
    position: fixed;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .c-pagetop {
    right: 2vw;
    top: -45px;
  }
}

.c-pagetop.is-show {
  opacity: 1; /* 不透明（見える） */
  visibility: visible; /* クリック判定を戻す */
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .c-btn__wrap {
    padding: 0 20px;
  }
}

.c-btn {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
}
@media only screen and (min-width: 768px) {
  .c-btn {
    min-width: 200px;
  }
}
.c-btn {
  height: auto;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#2c4aa3), to(#6b3c91));
  background: linear-gradient(90deg, #2c4aa3, #6b3c91);
  -webkit-box-shadow: 0 12px 22px rgba(46, 76, 160, 0.25);
          box-shadow: 0 12px 22px rgba(46, 76, 160, 0.25);
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: min(150px, 100%);
    height: auto;
    margin-left: auto;
    display: -ms-grid;
    display: grid;
  }
}

.m-heading__wrap {
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------------
	m-heading01
----------------------------------------*/
.m-heading01 {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .m-heading01 {
    font-size: 2.1rem;
  }
}
/*----------------------------------------
	m-table
----------------------------------------*/
/*----------------------------------------
	m-list
----------------------------------------*/
.m-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-list dl {
    font-size: 1.6rem;
  }
}
.m-list dl dt, .m-list dl dd {
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .m-list dl dt, .m-list dl dd {
    padding: 0;
  }
}
.m-list dl dt {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .m-list dl dt {
    border-bottom: none;
    color: #271477;
  }
}
.m-list dl dt {
  position: relative;
}
.m-list dl dt:before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #333;
}
@media screen and (max-width: 767px) {
  .m-list dl dt:before {
    display: none;
  }
}
.m-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .m-list dl dd {
    border-bottom: 0;
  }
}
.m-list dl dd ul {
  margin: 0;
  list-style: disc;
}
.m-list dl dd ul li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.m-list dl dd ul li:last-child {
  margin-bottom: 0;
}
.m-list dl dd small {
  font-size: 0.85em;
  color: inherit;
  display: block;
  margin-top: 0.5em;
}
.m-list dl:last-child {
  border-bottom: 0;
}
.m-list dl:last-child dt, .m-list dl:last-child dd {
  border-bottom: 0;
}
.m-list dl:last-child dt:before, .m-list dl:last-child dd:before {
  display: none;
}
@media (max-width: 768px) {
  .m-list dl {
    display: block;
    border-top: 1px solid #BCBCBC;
    padding: 10px 20px;
  }
  .m-list dl dt {
    width: 100%;
    margin-bottom: 8px;
  }
  .m-list dl dd {
    width: 100%;
    padding-left: 0;
  }
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/*----------------------------------------
	共通部分
----------------------------------------*/
/* 共通幅 */
body {
  overflow-x: clip;
}

.l-wrapper {
  overflow-x: clip;
  width: 100%;
}

.m-wrap {
  width: 1152px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .m-wrap {
    width: 100%;
    padding: 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-wrap {
    width: auto;
    padding: 0 20px;
  }
}

.m-wrap__contents {
  width: 1152px;
}
@media screen and (max-width: 767px) {
  .m-wrap__contents {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-wrap__contents {
    width: auto;
    padding: 0 20px;
  }
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/* =========
  Header
========= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* 滑らかに動かす */
}
@media only screen and (min-width: 768px) {
  .l-header {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-show {
    background: #ffffff;
  }
}
.l-header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%); /* 上に移動して画面外へ隠す */
}
.l-header__inner {
  /* Grid -> Flexに変更 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  padding: 8px 54px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 14px 10px 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-header__inner {
    padding: 14px 10px;
  }
}
.l-header#sub {
  background: #ffffff;
}
.l-header__brandlink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-right: auto; /* Flexで左寄せ維持のため */
}
.l-header__logo {
  width: 455px;
  padding: 7px 0;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 74vw;
    padding-top: 0;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-header__logo {
    width: 38vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .l-header__navlist {
    margin-top: -8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-header__navlist {
    gap: 14px;
  }
}
.l-header__navlist a {
  position: relative;
  display: inline-block;
  padding: 8px 6px;
  color: #222;
  font-size: 1.8rem;
}
.l-header__navlist a.is-active::after, .l-header__navlist a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 0;
  height: 2px;
  width: 40px;
  background: #3d69c2;
}
.l-header__keio img {
  height: auto;
  width: 77px;
}
@media screen and (max-width: 767px) {
  .l-header__keio {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-header__keio {
    position: relative;
    top: -4px;
  }
}

/* SP hamburger fixed */
.c-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 53px;
  height: 62px;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 50;
  display: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f5bc0), to(#6b3c91));
  background: linear-gradient(180deg, #2f5bc0, #6b3c91);
  /* Grid -> Flex (center) */
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-hamburger__lines {
  /* Grid -> Flex (column) */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.c-hamburger__lines span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
  border-radius: 99px;
}
.c-hamburger__txt {
  font-size: 11px;
  margin-top: 6px;
}
.c-hamburger__lines span {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.c-hamburger.c-spmenu__close .c-hamburger__lines span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.c-hamburger.c-spmenu__close .c-hamburger__lines span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.c-spmenu__close .c-hamburger__lines span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.c-hamburger.c-spmenu__close .c-hamburger__txt {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* SP menu */
.c-spmenu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.c-spmenu.is-open {
  pointer-events: auto;
  opacity: 1;
}
.c-spmenu.is-open .c-spmenu__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-spmenu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.c-spmenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(61vw, 360px);
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-box-shadow: -12px 0 24px rgba(0, 0, 0, 0.18);
          box-shadow: -12px 0 24px rgba(0, 0, 0, 0.18);
  /* Grid -> Flex (vertical layout) */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-spmenu__head {
  padding: 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* ヘッダーが潰れないように */
}
.c-spmenu__head img {
  height: 28px;
  width: auto;
}
.c-spmenu__nav {
  padding: 10px 16px 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: auto;
}
.c-spmenu__nav a {
  display: block;
  padding: 14px 10px;
  border-bottom: 1px solid #e9e9e9;
  font-weight: 700;
}
.c-spmenu__nav .privacy_txt {
  margin-top: 20px;
  font-size: 13px;
}
.c-spmenu__nav .privacy_txt a {
  border-bottom: 0;
}

/* =========
  Variables
========= */
.c-sectionhead__en, .l-footer__copy, .p-sub-hero__eng {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
/* =========
  Footer
========= */
.l-footer {
  position: relative;
  padding: 52px 0 60px;
  color: #fff;
  border-top: 4px solid;
  -o-border-image: linear-gradient(to right, #263CB1, #DA006D);
     border-image: -webkit-gradient(linear, left top, right top, from(#263CB1), to(#DA006D));
     border-image: linear-gradient(to right, #263CB1, #DA006D);
  border-image-slice: 1;
  background: #000c20 url(../img/common/bg_footer_pc.jpg) no-repeat right bottom;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-footer {
    background: #000c20 url(../img/common/bg_footer_pc.jpg) no-repeat right -18vw bottom;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 30px 0 90px;
    background: #000c20 url(../img/common/bg_footer_sp.jpg) no-repeat right bottom;
    background-size: cover;
  }
}
.l-footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.l-footer__inner {
  position: relative;
  z-index: 1;
  /* Grid -> Flex */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding-bottom: 80px;
  /* 子要素幅 */
}
.l-footer__inner > *:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
}
.l-footer__inner { /* ブランドロゴエリア */ }
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-footer__inner > *:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10vw;
            flex: 0 0 10vw;
  }
  .l-footer__inner { /* ブランドロゴエリア */ }
}
.l-footer__inner > *:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__inner { /* 右側コンテンツ */ }
@media screen and (max-width: 767px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
    padding: 0 20px;
  }
  .l-footer__inner > *:first-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 89px;
  }
}
.l-footer__brand img {
  height: auto;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    margin-inline: auto;
    width: 40px;
  }
  .l-footer__brand img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-footer__brand img {
    height: auto;
    width: 90px;
  }
}
.l-footer__copy {
  margin: 22px 0 0;
  font-size: 1.2rem;
  position: absolute;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    display: none;
  }
}
.l-footer__nav {
  /* Grid -> Flex (Wrap) */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-footer__nav {
    gap: 0;
  }
}
.l-footer__nav {
  /* 4カラム計算 */
}
.l-footer__nav > * {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .l-footer__nav > * {
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    /* 2カラム計算 */
  }
  .l-footer__nav > * {
    margin-right: auto;
    width: calc((100% - 22px) / 2);
  }
}
.l-footer .l-footer__col ul {
  margin-top: 15px;
  margin-left: 12px;
}
.l-footer .l-footer__col ul.-privacy {
  margin-top: 0;
}
.l-footer .l-footer__col ul li {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer__col ul li {
    font-size: 1.4rem;
    margin-bottom: 11px;
  }
}
.l-footer__ttl {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__ttl {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
}
.l-footer a {
  display: inline-block;
}
.l-footer a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .l-footer .sp_copyright {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .privacy_sp {
    margin-top: 100px;
    margin-left: 0 !important;
  }
  .l-footer .sp_copyright {
    font-size: 10px;
    margin-top: 6px;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}

/*----------------------------------------
	l-sidebar
----------------------------------------*/
.mega-menu {
  display: none;
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  background-color: #eff4f9;
  padding: 40px 0 60px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.mega-menu * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mega-menu__header {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega-menu__title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega-menu__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #6c9bc5;
  border-radius: 50%;
  margin-right: 12px;
}
.mega-menu__top-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1f3b5e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mega-menu__top-btn:hover {
  opacity: 0.8;
}
.mega-menu__top-btn .arrow-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  margin-left: 10px;
}
.mega-menu__top-btn .arrow-circle::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #1f3b5e;
  border-right: 2px solid #1f3b5e;
  -webkit-transform: translate(-1px, 0) rotate(45deg);
          transform: translate(-1px, 0) rotate(45deg);
}
.mega-menu__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.mega-menu__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.mega-menu__category, .mega-menu__single-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #E1EBF2;
  padding: 0 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  height: 80px;
  border-radius: 4px;
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.mega-menu__category:hover, .mega-menu__single-link:hover {
  background-color: rgb(221.3269230769, 231.2307692308, 237.1730769231);
}
.mega-menu__category .icon-arrow-right, .mega-menu__single-link .icon-arrow-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  background-color: #8daabf;
  border-radius: 50%;
}
.mega-menu__category .icon-arrow-right::after, .mega-menu__single-link .icon-arrow-right::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-1px, 0) rotate(45deg);
          transform: translate(-1px, 0) rotate(45deg);
}
.mega-menu__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega-menu__links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}
.mega-menu__links li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega-menu__links li a::before {
  content: "›";
  color: #6c9bc5;
  font-size: 20px;
  margin-right: 6px;
  line-height: 1;
  margin-top: -2px;
}
.mega-menu__links li a:hover {
  color: #1f3b5e;
  text-decoration: underline;
}
.mega-menu__grid-row {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  width: 100%;
}
.mega-menu__grid-row--2col {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.mega-menu__grid-row--4col {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.mega-menu__single-link {
  width: 100%;
  margin-right: 0;
}
.mega-menu__footer {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mega-menu__close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #333;
}
.mega-menu__close-btn .close-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.mega-menu__close-btn .close-icon::before, .mega-menu__close-btn .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.mega-menu__close-btn .close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mega-menu__close-btn .close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mega-menu__close-btn:hover {
  opacity: 0.7;
}

/*----------------------------------------
	l-navMobile
----------------------------------------*/
.sp-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #eff4f9;
  z-index: 9990;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.sp-nav-menu__inner {
  padding-bottom: 60px;
}
.sp-nav-menu__search {
  background-color: #eff4f9;
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}
.sp-nav-menu__search .search-input {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 22px;
  padding: 0 15px;
  padding-right: 90px;
  background: #fff;
  font-size: 14px;
  outline: none;
}
.sp-nav-menu__search .search-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  height: 44px;
  width: 80px;
  background-color: #1f3b5e;
  color: #fff;
  border: none;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  font-weight: bold;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.sp-nav-menu__search .search-btn .icon-search::before {
  content: "🔍";
  margin-right: 4px;
  font-family: sans-serif;
}
.sp-nav-menu .sp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-nav-menu .sp-nav-item {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.sp-nav-menu .sp-nav-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  font-size: 15px;
  text-decoration: none;
}
.sp-nav-menu .sp-nav-item__head.no-accordion {
  color: #333;
}
.sp-nav-menu .sp-nav-item__head .toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.sp-nav-menu .sp-nav-item__head .toggle-icon::before, .sp-nav-menu .sp-nav-item__head .toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sp-nav-menu .sp-nav-item__head .toggle-icon::before {
  width: 12px;
  height: 2px;
}
.sp-nav-menu .sp-nav-item__head .toggle-icon::after {
  width: 2px;
  height: 12px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.sp-nav-menu .sp-nav-item__head.is-open .toggle-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.sp-nav-menu .sp-nav-item__body {
  display: none;
  background-color: #eff4f9;
  padding: 10px 0;
}
.sp-nav-menu .sp-nav-item__body .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav-menu .sp-nav-item__body .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px 12px 30px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sp-nav-menu .sp-nav-item__body .sub-menu li a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #8daabf;
  border-radius: 50%;
  position: relative;
}
.sp-nav-menu .sp-nav-item__body .sub-menu li a::after::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-20%, -50%) rotate(45deg);
          transform: translate(-20%, -50%) rotate(45deg);
}
.sp-nav-menu .sp-nav-item__body .sub-menu li a:hover {
  opacity: 0.7;
}
.sp-nav-menu__footer {
  padding: 30px 20px;
  background-color: #eff4f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.sp-nav-menu .sp-recruit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#7baad4), to(#588ebc));
  background: linear-gradient(to right, #7baad4 0%, #588ebc 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 4px 10px rgba(31, 59, 94, 0.2);
          box-shadow: 0 4px 10px rgba(31, 59, 94, 0.2);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sp-nav-menu .sp-recruit-btn:hover {
  opacity: 0.9;
}
.sp-nav-menu .sp-faq-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
.sp-nav-menu .sp-faq-link .icon-circle-q {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #1f3b5e;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-family: serif;
  margin-right: 8px;
}

/*----------------------------------------
	p-common
----------------------------------------*/
.scroll_margin {
  scroll-margin-top: 60px;
}

.p-section {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-section {
    padding: 20px 0;
  }
}

.c-sectionhead {
  position: relative;
  padding-top: 6px;
  margin-bottom: 28px;
}
.c-sectionhead__en {
  margin: 0 0 6px;
  line-height: 1;
  font-size: 2rem;
  color: #d83c9b;
}
@media screen and (max-width: 767px) {
  .c-sectionhead__en {
    font-size: 16px;
  }
}
.c-sectionhead__jp {
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  color: #0a2d70;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sectionhead__jp {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.c-sectionhead__arrow {
  display: block;
  place-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: -59px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(../img/common/ico-arrow.svg) no-repeat;
  background-size: 100%;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .c-sectionhead__arrow {
    width: 28px;
    height: 28px;
    top: 52%;
    right: -35px;
  }
}
.c-sectionhead__desc {
  margin: 14px 0 0;
  line-height: 1.9;
  padding-right: 20px;
}
@media only screen and (min-width: 768px) {
  .c-sectionhead__desc {
    font-size: 1.8rem;
    padding: 0;
  }
}

/* Pills */
.c-pill {
  position: relative;
  display: block;
  padding: 32px 70px 32px 38px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 768px) {
  .c-pill {
    backdrop-filter: blur(8px);
  }
}
@media screen and (max-width: 767px) {
  .c-pill {
    color: #fff;
    padding: 15px 70px 20px 30px;
    background: -webkit-gradient(linear, left top, right top, from(#223CB2), to(#763C99));
    background: linear-gradient(90deg, #223CB2 0%, #763C99 100%);
  }
}
.c-pill__ttl {
  display: block;
  font-weight: bold;
  font-size: 3rem;
  color: #223CB2;
}
@media screen and (max-width: 767px) {
  .c-pill__ttl {
    font-size: 1.9rem;
    color: #ffffff;
  }
}
.c-pill__sub {
  display: block;
  margin-top: 4px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-pill__sub {
    margin-top: 0;
    line-height: 1.5;
  }
}
.c-pill__icon {
  position: absolute;
  right: 50px;
  top: 45px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
  background: url(../img/common/ico-arrow.svg) no-repeat;
}
@media screen and (max-width: 767px) {
  .c-pill__icon {
    right: 20px;
    top: 50%;
    width: 25px;
    height: 25px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background: url(../img/common/ico-arrow_sp.svg) no-repeat;
  }
}
.c-pill__icon {
  background-size: 100%;
  font-weight: bold;
}

/* =========
  Variables
========= */
.p-sub-hero__eng, .l-footer__copy, .c-sectionhead__en {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
@media screen and (max-width: 767px) {
  .c-sectionhead {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .c-sectionhead {
    padding-left: 20px;
  }
}

.service_content {
  background: url(../img/common/bg_service.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .service_content {
    background: url(../img/common/bg_service_sp.png) no-repeat left 210px;
    background-size: cover;
  }
}

/* =========
  Marquee slider (左右逆方向)
========= */
.p-marquee {
  position: relative;
  padding: 12px 0 24px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-marquee {
    margin-top: -80px;
  }
}
.p-marquee__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.p-marquee__row.is-left {
  -webkit-animation: marquee-right 50s linear infinite;
          animation: marquee-right 50s linear infinite;
}
.p-marquee__row.is-right {
  margin-top: 15px;
  -webkit-animation: marquee-left 50s linear infinite;
          animation: marquee-left 50s linear infinite;
}
.p-marquee__row img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  height: auto;
  margin: 0 7px;
  -webkit-box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-marquee__row img {
    width: 190px;
  }
}

@-webkit-keyframes marquee-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333333333%);
            transform: translateX(-33.3333333333%);
  }
}

@keyframes marquee-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333333333%);
            transform: translateX(-33.3333333333%);
  }
}
@-webkit-keyframes marquee-right {
  0% {
    -webkit-transform: translateX(-33.3333333333%);
            transform: translateX(-33.3333333333%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee-right {
  0% {
    -webkit-transform: translateX(-33.3333333333%);
            transform: translateX(-33.3333333333%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* Service cards */
.m-service {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5effa), to(#f2f6ff));
  background: linear-gradient(180deg, #f5effa 0%, #f2f6ff 100%);
}

.m-service {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5effa), to(#f2f6ff));
  background: linear-gradient(180deg, #f5effa 0%, #f2f6ff 100%);
  padding: 60px 0;
}

.m-service__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  /* 子要素（カード）の基本設定 */
}
.m-service__grid > * {
  width: calc((100% - 48px) / 3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.m-service__grid {
  /* JavaScriptでスクロール位置（rootMargin）に到達し、
     .is-animated クラスが付与されたらアニメーション開始
  */
}
.m-service__grid.is-animated > * {
  -webkit-animation: fade-in-up-bold 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fade-in-up-bold 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.m-service__grid.is-animated {
  /* 左から順に時間差で出す設定（少し間隔を広げてダイナミックに） */
}
.m-service__grid.is-animated > *:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.m-service__grid.is-animated > *:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.m-service__grid.is-animated > *:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .m-service__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    padding: 0 0;
  }
  .m-service__grid > * {
    width: 100%;
  }
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 140px;
  }
}
.c-card__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-card__img img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-card__img {
    width: 42%;
    height: auto;
  }
}
.c-card__body {
  position: relative;
  padding: 18px 18px 54px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#223CB2), to(#763C99));
  background: linear-gradient(180deg, #223CB2 0%, #763C99 100%);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .c-card__body {
    padding: 18px 16px 21px;
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-card__title {
  margin: 0 0 10px;
  font-size: 2.7rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1.7rem;
    text-align: left;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .c-card__title {
    font-size: 2.1rem;
  }
}
.c-card__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-card__text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-card__icon {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 24px;
  height: 24px;
  background: url(../img/common/ico_right.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .c-card__icon {
    width: 18px;
    height: 18px;
  }
}

/* 大胆なアニメーション設定
   - 60px下から浮き上がる
   - 0.8倍から1倍へ少し拡大（奥行き感を出す）
*/
@-webkit-keyframes fade-in-up-bold {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px) scale(0.9);
            transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes fade-in-up-bold {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px) scale(0.9);
            transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.p-company {
  background: #fff;
  overflow: clip;
  overflow-clip-margin: 200px;
}
.p-company .p-company__bg {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-company .p-company__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 64px);
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#D3D8F0), color-stop(50%, #E5D8EA), to(#FFFFFF));
    background: linear-gradient(180deg, #D3D8F0 0%, #E5D8EA 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company .p-company__bg {
    padding-bottom: 0;
  }
  .p-company .p-company__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 64px);
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#D3D8F0), color-stop(50%, #E5D8EA), to(#FFFFFF));
    background: linear-gradient(180deg, #D3D8F0 0%, #E5D8EA 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
.p-company .c-sectionhead,
.p-company .p-company__links,
.p-company .p-company__photo {
  position: relative;
  z-index: 1;
}
.p-company .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-company .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3px;
}
@media only screen and (min-width: 768px) {
  .p-company .p-company__content {
    display: contents;
  }
  .p-company .c-sectionhead {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .p-company .p-company__links {
    /* Grid -> Flex (vertical) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 3;
    padding-top: 38px;
  }
  .p-company .p-company__inner {
    position: relative;
    z-index: 1;
    padding-left: max(0px, (100vw - 1152px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .p-company .p-company__inner {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-company .p-company__body {
    /* Grid -> Flex */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    margin-top: 28px;
    /* 子要素の幅制御 */
  }
  .p-company .p-company__body > *:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 564px;
            flex: 0 0 564px; /* 左カラム固定 */
  }
  .p-company .p-company__body > *:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; /* 右カラム可変 */
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .p-company .p-company__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    margin-top: 18px;
  }
  .p-company .p-company__body > *:first-child,
  .p-company .p-company__body > *:last-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .p-company .p-company__photo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0;
    overflow: hidden;
    -ms-grid-row-align: end;
        align-self: end;
    width: 100%;
    height: 582px;
    margin-right: calc(50% - 1168px);
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    overflow: hidden;
  }
  .p-company .p-company__photo img {
    aspect-ratio: 2/1;
    display: block;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company .p-company__content {
    margin-bottom: 28px;
  }
  .p-company .p-company__links {
    display: -ms-grid;
    display: grid;
    gap: 18px;
  }
  .p-company .p-company__photo {
    margin: 0;
    margin-top: 35px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .p-company .p-company__photo img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

/* Recruit section */
.p-recruit {
  background: #fff;
  overflow: clip;
  overflow-clip-margin: 200px;
}
.p-recruit .p-recruit__bg {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
}
.p-recruit .p-recruit__bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: max(0px, (100vw - 1152px) / 2);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #F8EBF2), to(#FFFFFF));
  background: linear-gradient(180deg, #FFF3F8 0%, #F8EBF2 50%, #FFFFFF 100%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: max(0px, (100vw - 1152px) / 2);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #F8EBF2), to(#FFFFFF));
    background: linear-gradient(180deg, #FFF3F8 0%, #F8EBF2 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
.p-recruit .p-recruit__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__inner {
    padding-left: 0;
  }
}
.p-recruit .p-recruit__head .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruit .p-recruit__head .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3px;
}
.p-recruit .p-recruit__body {
  /* Grid -> Flex */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media only screen and (min-width: 768px) {
  .p-recruit .p-recruit__body {
    /* 子要素の幅制御 */
  }
  .p-recruit .p-recruit__body > *:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 564px;
            flex: 0 0 564px; /* 左カラム固定 */
  }
  .p-recruit .p-recruit__body > *:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; /* 右カラム可変 */
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    margin-top: 18px;
  }
}
.p-recruit .p-recruit__links {
  /* Grid -> Flex (vertical) */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 3;
  padding-top: 38px;
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__links {
    padding-top: 0;
  }
}
.p-recruit .p-recruit__photo {
  margin: 0;
  position: relative;
  z-index: 1;
  height: 582px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-recruit .p-recruit__photo {
    margin-right: calc(50% - 1168px);
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__photo {
    margin: 0;
    margin-top: 35px;
    margin-left: -20px;
    width: calc(100% + 40px);
    height: auto;
  }
  .p-recruit .p-recruit__photo img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .p-recruit .p-recruit__photo img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .p-recruit__photo img {
    height: auto;
  }
}

/* =========
  Variables
========= */
.p-sub-hero__eng, .l-footer__copy, .c-sectionhead__en {
  font-family: "Roboto", sans-serif;
}

/* =========================
   size
========================= */
.m-message {
  background: #fff;
  margin-bottom: 80px;
}
.m-message__bg {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .m-message__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 74px);
    right: 0;
    background: #ffffff;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-message__bg {
    padding: 30px 0 0;
    background: #ffffff;
    display: block;
  }
  .m-message__bg::before {
    display: none;
  }
}
.m-message__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
@media screen and (max-width: 767px) {
  .m-message__inner {
    padding-left: 0;
  }
}
.m-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .m-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 10px 40px;
  }
}
.m-message__body p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-message__body p {
    font-size: 1.6rem;
  }
}
.m-message__photo {
  margin-right: -25vw;
  width: 38vw;
}
@media screen and (max-width: 767px) {
  .m-message__photo {
    width: 100%;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-message__photo {
    width: 40vw;
  }
}
.m-message__content {
  width: 632px;
}
@media screen and (max-width: 767px) {
  .m-message__content {
    width: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-message__content {
    width: 50vw;
  }
}
.m-message__content p {
  margin-bottom: 15px;
}
.m-message__content .name {
  text-align: right;
  font-weight: bold;
  font-size: 2.3rem;
  margin-top: 10px;
  color: #525252;
  margin-right: 6px;
}
@media screen and (max-width: 767px) {
  .m-message__content .name {
    font-size: 1.8rem;
  }
}
.m-message .c-sectionhead {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .m-message .c-sectionhead {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.m-message .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-message .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 18px;
}

.m-outline {
  background: #fff;
}
.m-outline .c-sectionhead__date {
  margin-top: -60px;
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .m-outline .c-sectionhead__date {
    margin-top: 0;
    margin-bottom: 0;
    margin-top: -40px;
    padding-bottom: 10px;
  }
}
.m-outline__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
@media screen and (max-width: 767px) {
  .m-outline__inner {
    padding-left: 0;
    margin-bottom: 10px;
  }
}
.m-outline__bg {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .m-outline__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 74px);
    right: 0;
    background: #EFEFEF;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-outline__bg {
    padding: 54px 0;
    background: #EFEFEF;
    display: block;
  }
  .m-outline__bg::before {
    display: none;
  }
}
.m-outline__body .business_list li {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.m-outline__body .business_list li:before {
  content: "";
  background: #333;
  width: 3px;
  height: 3px;
  position: absolute;
  border-radius: 100%;
  left: 4px;
  /* 修正ポイント: 1行目の中央に配置 */
  top: 0.8em; /* テキストの高さの半分くらいの位置へ */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); /* 点の高さの半分だけ上にずらして中央合わせ */
}
.m-outline__photo {
  position: relative;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
  width: 420px;
}
@media screen and (max-width: 767px) {
  .m-outline__photo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    margin-right: 0;
    width: 100%;
    gap: 0 4px;
  }
}
.m-outline__photo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .m-outline__photo img {
    width: 50%;
  }
}
.m-outline__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-outline .map__wrap {
  position: relative;
  margin-top: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 14px;
}
@media screen and (max-width: 767px) {
  .m-outline .map__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.m-outline .map__wrap .map {
  width: 100%;
}
.m-outline .map__wrap .map iframe {
  width: 100%;
  height: 402px;
}
@media screen and (max-width: 767px) {
  .m-outline .map__wrap .map iframe {
    height: 300px;
  }
}
.m-outline .c-sectionhead {
  position: relative;
  z-index: 1;
}
.m-outline .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-outline .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 18px;
}
@media only screen and (min-width: 768px) {
  .m-outline .c-sectionhead {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}

.m-vision {
  background: #fff;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .m-vision {
    padding-bottom: 60px;
  }
}
.m-vision .-label1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .m-vision .-label1 {
    margin-bottom: 20px;
  }
}
.m-vision .c-sectionhead {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .m-vision .c-sectionhead {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.m-vision .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-vision .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 18px;
}
.m-vision__inner__head {
  padding-left: max(0px, (100vw - 1152px) / 2);
}
.m-vision__inner {
  padding-left: max(0px, (100vw - 1152px) / 2);
  padding-right: 6vw;
  position: relative;
}
.m-vision__inner:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#223CB2), to(#763C99));
  background: linear-gradient(180deg, #223CB2 0%, #763C99 100%);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(0px, (100vw - 1152px) / 2 - 74px);
  right: max(0px, (100vw - 1152px) / 2 - 61px);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .m-vision__inner:before {
    left: auto;
    right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .m-vision__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.m-vision__box {
  color: #fff;
  padding: 40px 0 80px;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-vision__box {
    padding: 50px 0;
    margin-top: 30px;
    margin-left: 0;
  }
}
.m-vision__top {
  position: relative;
  margin-bottom: 60px;
}
.m-vision__label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.m-vision__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .m-vision__label {
    font-size: 2.1rem;
  }
}
.m-vision__label::before {
  content: "";
  display: inline-block;
  width: 240px;
  height: 1px;
  background: rgb(255, 255, 255);
  margin-right: 15px;
  margin-left: -215px;
}
.m-vision__label-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 10px;
}
.m-vision__label-right .m-vision__label {
  margin-right: 30px;
}
.m-vision__label-right .m-vision__label::before {
  content: none;
}
.m-vision__label-right .m-vision__label::after {
  content: "";
  display: inline-block;
  width: 240px;
  height: 1px;
  background: rgb(255, 255, 255);
  margin-right: -240px;
  margin-left: 15px;
}
.m-vision__bg-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  position: absolute;
  right: 120px;
  top: 130px;
  line-height: 1;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .m-vision__bg-text {
    font-size: 4rem;
    top: -10px;
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-vision__bg-text {
    right: 0vw;
    top: 2vw;
  }
}
.m-vision__bg-text--way {
  right: auto;
  left: 0;
  top: 0;
}
.m-vision__quote {
  position: relative;
  z-index: 1;
  padding-left: 70px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .m-vision__quote {
    padding-left: 50px;
    margin-bottom: 100px;
  }
}
.m-vision__quote::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/page/company/ico_fukidashi.svg) no-repeat;
  background-size: 100%;
  width: 60px;
  height: 60px;
  top: -10px;
  line-height: 1;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .m-vision__quote::before {
    width: 40px;
    height: 40px;
  }
}
.m-vision__lead {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .m-vision__lead {
    font-size: 16px;
    padding-right: 16px;
  }
}
.m-vision__diagram-area {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}
.m-vision__chart {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-vision__chart {
    padding-top: 25px;
  }
}
.m-vision__chart img {
  width: 100%;
  height: auto;
}
.m-vision__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 80px;
}
@media screen and (max-width: 767px) {
  .m-vision__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-vision__grid {
    gap: 40px 4vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .m-vision__item {
    width: 512px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-vision__item {
    width: calc(50% - 2vw);
  }
}
.m-vision__item-title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}
.m-vision__item-title:after {
  background: #FFFFFF;
  content: "";
  width: 71px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .m-vision__item-title {
    font-size: 2.1rem;
  }
}
.m-vision__item-desc {
  margin: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-vision__item-desc {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.m-history {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .m-history {
    margin-top: 40px;
  }
}
.m-history__bg {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .m-history__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: max(0px, (100vw - 1152px) / 2 - 74px);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #F8EBF2), to(#FFFFFF));
    background: linear-gradient(180deg, #FFF3F8 0%, #F8EBF2 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-history__bg {
    padding: 54px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #F8EBF2), to(#FFFFFF));
    background: linear-gradient(180deg, #FFF3F8 0%, #F8EBF2 50%, #FFFFFF 100%);
    display: block;
  }
  .m-history__bg::before {
    display: none;
  }
}
.m-history__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
@media screen and (max-width: 767px) {
  .m-history__inner {
    padding-left: 0;
  }
}
.m-history__body {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .m-history__body {
    margin-top: 40px;
    padding-bottom: 60px;
  }
}
.m-history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-history__row {
    display: block;
    margin-bottom: 0;
    padding-bottom: 45px;
  }
  .m-history__row::before {
    content: "";
    position: absolute;
    top: 54px;
    bottom: -54px;
    left: 10px;
    width: 2px;
    background: #3e3a85;
    z-index: 0;
  }
  .m-history__row:last-child {
    padding-bottom: 0;
  }
  .m-history__row:last-child::before {
    bottom: auto;
    height: calc(100% + 30px);
  }
  .m-history__row:last-child .m-history__timeline {
    padding-bottom: 0 !important;
    height: 0;
  }
}
.m-history__row:last-child .m-history__timeline {
  padding-bottom: 0 !important;
}
.m-history__year {
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #3e3a85;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  padding-right: 40px;
  position: relative;
  top: -15px;
}
@media screen and (max-width: 767px) {
  .m-history__year {
    position: relative;
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 2.4rem;
    top: 0;
  }
}
.m-history__timeline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 2px solid #3e3a85;
  padding-left: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .m-history__timeline {
    border-left: none;
    margin-left: 0;
    padding-left: 35px;
    padding-bottom: 0;
  }
}
.m-history__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 30px;
}
.m-history__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .m-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.m-history__dot {
  position: absolute;
  left: -47px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #3e3a85;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .m-history__dot {
    left: -30px;
    top: 8px;
  }
}
.m-history__date {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#223CB2), to(#763C99));
  background: linear-gradient(90deg, #223CB2 0%, #763C99 100%);
  color: #fff;
  font-size: 1.8rem;
  padding: 3px 0;
  width: 100px;
  text-align: center;
  border-radius: 20px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: -15px;
}
@media screen and (max-width: 767px) {
  .m-history__date {
    position: static;
    font-size: 1.6rem;
    margin-right: 0;
    padding: 0;
    margin-bottom: 10px;
  }
}
.m-history__desc {
  margin: 0;
  font-size: 1.8rem;
  position: relative;
  top: -15px;
}
@media screen and (max-width: 767px) {
  .m-history__desc {
    position: static;
    font-size: 1.6rem;
  }
}
.m-history .c-sectionhead {
  position: relative;
  z-index: 1;
}
.m-history .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-history .c-sectionhead__en::after {
  content: "";
  display: block;
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 18px;
}

/*----------------------------------------
	p-privacy
----------------------------------------*/
.email {
  width: 160px;
  vertical-align: bottom;
  position: relative;
  top: -4px;
}

@media screen and (max-width: 767px) {
  .-center {
    text-align: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.m-recruit .-border_none {
  padding-left: 0;
}

.m-recruit .-border_none .c-sectionhead__en {
  display: none;
}

.m-recruit .-border_none .c-sectionhead__en::after {
  display: none;
}

.m-privacy-policy__company dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.m-privacy-policy__company dl dd {
  padding-left: 48px;
}

.m-privacy-policy__company dl dt .num-prefix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.indent_li li {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.indent_li li:before {
  content: "";
  background: #333;
  width: 3px;
  height: 3px;
  position: absolute;
  border-radius: 100%;
  left: 4px;
  /* 修正ポイント: 1行目の中央に配置 */
  top: 0.8em; /* テキストの高さの半分くらいの位置へ */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); /* 点の高さの半分だけ上にずらして中央合わせ */
}

.m-privacy-policy__group ul {
  list-style: none;
  padding-left: 0;
}

.m-privacy-policy__group ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 8px;
}

.m-privacy-policy__group ul li .num-prefix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact_box {
  padding-left: 45px;
}

.m-privacy__bg {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .m-privacy__bg {
    padding: 30px 0 54px;
  }
}

.-head_top {
  margin-top: 90px;
}

.m-privacy-policy__group a, .m-privacy-policy__company a {
  text-decoration: underline;
}
.m-privacy-policy__group p, .m-privacy-policy__company p {
  margin-bottom: 15px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-privacy-policy__group p, .m-privacy-policy__company p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.m-privacy-policy__group h3, .m-privacy-policy__company h3 {
  color: #223CB2;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .m-privacy-policy__group h3, .m-privacy-policy__company h3 {
    font-size: 2rem;
    line-height: 1.7;
    margin-bottom: 6px;
  }
}
.m-privacy-policy__group h4, .m-privacy-policy__company h4 {
  color: #223CB2;
  font-size: 1.8rem;
  border-bottom: 1px solid #223CB2;
  margin-bottom: 15px;
  margin-top: 15px;
}

/* =========
  p-service
========= */
@media screen and (max-width: 767px) {
  .p-service {
    overflow: hidden;
  }
}

.p-service__accounting__bg {
  position: relative;
  padding: 74px 0;
}
@media only screen and (min-width: 768px) {
  .p-service__accounting__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 74px);
    right: 0;
    background: #ffffff;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__accounting__bg {
    padding: 30px 0 54px;
    background: #ffffff;
    display: block;
  }
  .p-service__accounting__bg::before {
    display: none;
  }
}
.p-service__accounting {
  /* 右：メディア（右だけフルブリード） */
}
.p-service__accounting__photo {
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-service__accounting__photo {
    margin-top: 0;
  }
}

.p-service__finance .c-sectionhead__en::after {
  background: #ffffff !important;
}
.p-service__finance__bg {
  position: relative;
  padding: 74px 0;
}
@media only screen and (min-width: 768px) {
  .p-service__finance__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 74px);
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#D3D8F0), color-stop(50%, #E5D8EA), to(#FFFFFF));
    background: linear-gradient(180deg, #D3D8F0 0%, #E5D8EA 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__finance__bg {
    padding: 54px 0;
    display: block;
  }
  .p-service__finance__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 74px);
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#D3D8F0), color-stop(50%, #ffffff), to(#FFFFFF));
    background: linear-gradient(180deg, #D3D8F0 0%, #ffffff 50%, #FFFFFF 100%);
    z-index: 0;
  }
}

.p-service__dx__bg {
  position: relative;
  padding: 74px 0;
}
@media only screen and (min-width: 768px) {
  .p-service__dx__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: max(0px, (100vw - 1152px) / 2 - 74px);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #F8EBF2), to(#FFFFFF));
    background: linear-gradient(180deg, #FFF3F8 0%, #F8EBF2 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__dx__bg {
    padding: 54px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF3F8), color-stop(50%, #ffffff), to(#FFFFFF));
    background: linear-gradient(180deg, #FFF3F8 0%, #ffffff 50%, #FFFFFF 100%);
    display: block;
  }
  .p-service__dx__bg::before {
    display: none;
  }
}

.p-service .c-sectionhead {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .p-service .c-sectionhead {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.p-service .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-service .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3px;
}
.p-service__ttl {
  color: #223CB2;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .p-service__ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__ttl {
    line-height: 1.5;
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-service__content {
    width: 746px;
  }
}
.p-service__content p {
  margin-bottom: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-service__content p {
    font-size: 1.6rem;
  }
}
.p-service__content .name {
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}
.p-service__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-left: 0;
  }
}
.p-service__inner.-top {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-service__inner.-top {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
.p-service__inner2 {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__inner2 {
    padding-right: 0;
  }
}
.p-service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-service__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .p-service__body .p-service__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-service__body .p-service__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-service__body.-odd .p-service__photo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 0;
  margin-left: -200px;
}
@media screen and (max-width: 767px) {
  .p-service__body.-odd .p-service__photo {
    margin-left: 0;
  }
}
.p-service__body.-odd .p-service__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .p-service__body.-odd .p-service__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-service__photo {
  width: 734px;
  margin-right: -200px;
}
@media screen and (max-width: 767px) {
  .p-service__photo {
    margin-right: auto;
    width: 100%;
  }
}
.p-service__figure {
  width: 680px;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__figure {
    width: 100%;
    margin-top: 10px;
  }
}

/*----------------------------------------
	p-contact
----------------------------------------*/
.p-contact__head {
  padding: 60px 0;
}
.p-contact__head__txt {
  text-align: center;
  margin-bottom: 30px;
}
.p-contact__head__tel_box {
  width: 500px;
  background: #EDF8FA;
  border-radius: 12px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}
.p-contact__head__tel_box .c-label {
  margin-bottom: 12px;
}
.p-contact__head__tel_box .c-tel {
  width: 200px;
  margin: 0 auto;
}

.p-contact-block {
  padding: 60px 20px 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F9F4EE;
}
.p-contact-block .l-container {
  max-width: 850px;
  margin: 0 auto;
}
.p-contact-block__head {
  font-size: 3.6rem;
  text-align: center;
  margin: 0 0 80px;
}
.p-contact-block__lead {
  font-size: 1.6rem;
  margin: 0 0 24px;
  text-align: center;
}
.p-contact-block__tel {
  display: inline-block;
  max-width: 296px;
}
.p-contact-block__body {
  margin: 60px 0 0;
}
.p-contact-block__body li {
  margin: 0 0 20px;
}
.p-contact-block__body li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact-block__body .head {
  font-size: 1.6rem;
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: center;
  width: 200px;
}
.p-contact-block__body .head .require {
  font-size: 1.6rem;
  background: #77B4C2;
  vertical-align: super;
  padding: 4px;
  color: #ffffff;
  border-radius: 3px;
  margin-left: 10px;
  line-height: 1;
}
.p-contact-block__body .inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-contact-block__body .inner input[type=text],
.p-contact-block__body .inner input[type=email] {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FAFAFA;
  border: 1px solid #707070;
  border-radius: 6px;
  padding: 10px;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-contact-block__body .inner input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #707070;
}
.p-contact-block__body .inner input[type=radio]:checked {
  background: #FF9700;
}
.p-contact-block__body .inner .wpcf7-list-item {
  margin: 0 0 14px;
  display: block;
}
.p-contact-block__body .inner textarea {
  display: block;
  width: 100%;
  height: 240px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-contact-block__body .privacyLink {
  text-align: center;
  color: #1B224C;
  font-size: 1.6rem;
  margin: 0 0 30px;
}
.p-contact-block__body .privacyLink a {
  color: #1B224C;
  text-decoration: underline;
}
.p-contact-block__body .privacyCheck {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 60px;
}
.p-contact-block__body .privacyCheck label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact-block__body .privacyCheck input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 16px;
}
.p-contact-block__body .privacyCheck input[type=checkbox]:checked {
  background: #FF9700;
}
.p-contact-block__body .privacyCheck span {
  color: #1B224C;
}
.p-contact-block__body .privacyCheck span.wpcf7-list-item {
  margin: 0;
}
.p-contact-block__body .privacyCheck span.wpcf7-not-valid-tip {
  color: #f00;
}
.p-contact-block__body .formBtn input[type=submit] {
  margin: 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 280px;
  height: 60px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  background: url(../images/_common/icon_arrow01_right_orange.png) no-repeat center right 10px/19px, #FF9700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-contact-block__body .formBtn input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-contact-block__head {
    font-size: 3rem;
    margin: 0 0 50px;
  }
  .p-contact-block__lead {
    line-height: 1.6;
  }
  .p-contact-block__body .head {
    font-size: 1.5rem;
  }
}
/* =========
  p-recruit
========= */
.m-recruit {
  background: #fff;
}
.m-recruit__bg {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  background: url(../img/page/recruit/bg_jobinfo.png) no-repeat;
  background-position: center 400px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .m-recruit__bg {
    padding: 30px 0 54px;
    background: #ffffff;
    display: block;
  }
  .m-recruit__bg::before {
    display: none;
  }
}
.m-recruit__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
@media screen and (max-width: 767px) {
  .m-recruit__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.m-recruit .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-recruit .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #C7BFE6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3px;
}
.m-recruit__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .m-recruit__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    margin-bottom: 50px;
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-recruit__intro {
    gap: 40px;
  }
}
.m-recruit__message {
  width: 632px;
}
@media screen and (max-width: 767px) {
  .m-recruit__message {
    width: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-recruit__message {
    width: 50vw;
  }
}
.m-recruit__message p {
  margin-bottom: 15px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-recruit__message p {
    font-size: 1.6rem;
  }
}
.m-recruit__message p:last-child {
  margin-bottom: 0;
}
.m-recruit__image {
  margin-right: -25vw;
  width: 38vw;
}
@media screen and (max-width: 767px) {
  .m-recruit__image {
    width: 100%;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-recruit__image {
    width: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .m-recruit .m-recruit__cards__bg {
    padding-top: 35px;
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#F8EDFC));
    background: linear-gradient(0deg, #ffffff 0%, #F8EDFC 100%);
  }
}
.m-recruit__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .m-recruit__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.m-recruit-card .c-btn__recruit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 25px 15px;
  text-decoration: none;
  border-radius: 7px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  font-size: 2.9rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.m-recruit-card .c-btn__recruit:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .m-recruit-card .c-btn__recruit {
    padding: 15px 15px;
    border-radius: 12px;
    font-size: 2.1rem;
  }
}
.m-recruit-card .c-btn__recruit--gray {
  background: #eaeaea;
  color: #333;
  border: 1px solid #707070;
}
.m-recruit-card .c-btn__recruit::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url("../img/common/ico_external.svg") no-repeat center center/contain;
}
.m-recruit-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 7px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.m-recruit-card__image {
  width: 100%;
  height: 290px;
}
.m-recruit-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .m-recruit-card__image {
    height: 250px;
  }
}
.m-recruit-card__body {
  padding: 25px 30px 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .m-recruit-card__body {
    padding: 20px;
  }
}
.m-recruit-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}
.m-recruit-card__title {
  font-size: 3.8rem;
  font-weight: 600;
  color: #102F65;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .m-recruit-card__title {
    font-size: 2.4rem;
  }
}
.m-recruit-card__badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #707070;
  color: #666;
  background: #fff;
  line-height: 1;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .m-recruit-card__badge {
    font-size: 1.6rem;
  }
}
.m-recruit-card__badge--active {
  background: -webkit-gradient(linear, left top, right top, from(#223CB2), to(#763C99));
  background: linear-gradient(90deg, #223CB2 0%, #763C99 100%);
  color: #fff;
  border: none;
}
.m-recruit-card__desc {
  margin-bottom: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-recruit-card__desc {
    font-size: 1.6rem;
  }
}
.m-recruit-card__desc a.m-recruit-card__link {
  text-decoration: underline;
}
.m-recruit-card__desc a.m-recruit-card__link:hover {
  text-decoration: none;
}
.m-recruit-card__btn {
  text-align: center;
}

.m-features {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .m-features {
    padding-bottom: 0;
  }
}
.m-features .c-sectionhead__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-features .c-sectionhead__en::after {
  content: "";
  height: 1px;
  background: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3px;
}
.m-features__bg {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .m-features__bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, (100vw - 1152px) / 2 - 64px);
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#D3D8F0), color-stop(50%, #E5D8EA), to(#FFFFFF));
    background: linear-gradient(180deg, #D3D8F0 0%, #E5D8EA 50%, #FFFFFF 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-features__bg {
    padding: 54px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#eef2ff), to(#f5effa));
    background: linear-gradient(180deg, #eef2ff 0%, #f5effa 100%);
    display: block;
  }
  .m-features__bg::before {
    display: none;
  }
}
.m-features__inner {
  position: relative;
  z-index: 1;
  padding-left: max(0px, (100vw - 1152px) / 2);
}
.m-features__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .m-features__list {
    margin-top: 40px;
    gap: 20px;
  }
}
.m-features__item {
  background: #fff;
  border-top: 2px solid #102F65;
  padding: 30px 60px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 767px) {
  .m-features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.m-features__title {
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #102F65;
  font-size: 2.7rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  padding-top: 8px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .m-features__title {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
.m-features__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .m-features__desc {
    width: 100%;
    font-size: 1.6rem;
  }
}

.p-not-found {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* ヘッダーやフッターの高さに合わせて調整してください */
  min-height: 60vh;
  padding: 300px 20px;
  overflow: hidden; /* 背景の404がはみ出た際の横スクロール防止 */
  background-color: #ffffff;
}
.p-not-found::before {
  content: "404";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: clamp(160px, 35vw, 450px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #EFEFF5; /* 画像から抽出した薄いパープルグレー */
  z-index: 0;
  pointer-events: none; /* テキスト選択などの邪魔にならないように */
}
.p-not-found.-error::before {
  display: none;
}
.p-not-found__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-not-found__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-not-found__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-not-found__text {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}
@media (max-width: 768px) {
  .p-not-found__text {
    font-size: 14px;
  }
}