/* ====================================================
layout
==================================================== */
.l-header {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.4s;
  position: fixed;
  background-color: #FFF;
  z-index: 9999;
  width: 100%;
  top: 0;
}

/* ====================================================
project
==================================================== */
/* -----------------------------------------------
header
----------------------------------------------- */
.p-header {
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .p-header {
    height: 5.5rem;
    display: flex;
    align-items: center;
  }
}
.p-header__inner {
  padding-left: 6rem;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .p-header__inner {
    padding-left: 3rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.p-header__logo > a {
  display: block;
  width: 28.4rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__logo > a {
    width: 14rem;
  }
}
.p-header__nav {
  margin-left: auto;
  display: flex;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav {
    padding-bottom: 2rem;
    display: none;
    overflow-y: scroll;
    height: calc(100vh - 5.5rem);
  }
  .p-header__nav.is_open {
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    top: 5.5rem;
  }
}
.p-header__menu {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .p-header__menu {
    flex-wrap: wrap;
  }
}
.p-header__menu > li {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-header__menu > li {
    width: 100%;
    border-top: 1px solid #000000;
    font-size: 1.5rem;
  }
  .p-header__menu > li:last-child {
    border-bottom: 1px solid #000000;
  }
}
.p-header__menu > li > a {
  cursor: pointer;
}
.p-header__menu > li > a,
.p-header__menu > li > span {
  display: block;
  padding: 3.7rem 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__menu > li > a,
  .p-header__menu > li > span {
    padding: 1.8rem 4.2rem 1.8rem 2.5rem;
    background-image: url(../img/common/icon-plus.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 2.5rem;
    background-position: center right 1.5rem;
  }
  .p-header__menu > li > a.is_open,
  .p-header__menu > li > span.is_open {
    background-image: url(../img/common/icon-minus.svg);
  }
  .p-header__menu > li > a > .en,
  .p-header__menu > li > span > .en {
    display: block;
    height: 2.2rem;
    margin-bottom: 0.3rem;
  }
  .p-header__menu > li > a > .en.twoline,
  .p-header__menu > li > span > .en.twoline {
    height: 4.8rem;
  }
  .p-header__menu > li > a > .en > img,
  .p-header__menu > li > span > .en > img {
    height: inherit;
    width: auto;
  }
}
.p-header__mega {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  background-color: #fff;
  color: #1c415c;
  padding: 2rem;
  width: max-content;
  top: 10.4rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__mega {
    position: relative;
    width: 100%;
    top: 0;
    padding-top: 0;
  }
}
.p-header__mega > li {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.p-header__mega > li > ul {
  margin-left: 1em;
}
@media print, screen and (max-width: 768px) {
  .p-header__mega > li > ul > li {
    margin-top: 1rem;
  }
  .p-header__mega > li > ul > li > a {
    display: block;
  }
}
.p-header__mega > li:last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .p-header__mega > li:last-child {
    margin-bottom: 1rem;
  }
}
.p-header__cta {
  display: flex;
  align-items: stretch;
  margin-left: 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    margin-left: 0;
  }
}
.p-header__cta > a {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  width: 18.3rem;
  padding: 2rem 0 2.7rem;
  line-height: 1.8;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta > a {
    width: 16.4rem;
    font-size: 2rem;
    border-radius: 2.5rem;
    padding: 1.5rem 0 2rem;
  }
}
.p-header__cta > a > span {
  display: block;
  width: 8.2rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta > a > span {
    width: 7.5rem;
  }
}
.p-header__submenu {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-header__submenu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 0;
  }
  .p-header__submenu > li > a {
    padding: 0 1.5rem;
  }
  .p-header__submenu > li + li {
    border-left: 1px solid #000;
  }
}

.p-hamburger {
  position: relative;
  cursor: pointer;
  width: 13rem;
  height: 13.4rem;
  top: 0%;
  right: 0;
  bottom: 0%;
  z-index: 99999;
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger {
    width: 5rem;
    height: 4.5rem;
    display: block;
  }
}
.p-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  border-radius: 2px;
  background: #000;
  width: 3rem;
  height: 2px;
}
.p-hamburger span:nth-of-type(1) {
  top: 1.2rem;
}
.p-hamburger span:nth-of-type(2) {
  top: calc(50% - 1.5px);
}
.p-hamburger span:nth-of-type(3) {
  bottom: 1.2rem;
}
.p-hamburger.is_open span {
  position: absolute;
  background: #000;
}
.p-hamburger.is_open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(0) rotate(-135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(1) {
    top: 48%;
  }
}
.p-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is_open span:nth-of-type(3) {
  top: 36%;
  transform: translateY(0) rotate(135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(3) {
    top: 28%;
  }
}

.p-hamburger-nav {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 15rem;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav {
    top: 4.5rem;
    padding: 2.5rem 1.5rem 4rem;
    overflow: scroll;
    position: fixed;
    max-height: 100%;
    height: calc(100vh - 4.5rem);
  }
}
.p-hamburger-nav__wrap {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap {
    flex-wrap: wrap;
  }
}
.p-hamburger-nav__wrap .p-header__btnarea {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap .p-header__btnarea {
    display: flex;
    justify-content: space-between;
  }
}
.p-hamburger-nav__wrap > div {
  width: 33.3%;
  border-left: solid #fff 1px;
  padding: 0 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap > div {
    width: 100%;
    padding: 0;
    border-left: none;
  }
}
.p-hamburger-nav__wrap > div > dl {
  padding: 5rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap > div > dl {
    padding: 3rem 0;
    border-bottom: solid #fff 1px;
  }
}
.p-hamburger-nav__wrap > div > dl + dl {
  border-top: solid #fff 1px;
}
.p-hamburger-nav__wrap > div > dl > dt {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap > div > dl > dt {
    font-size: 2rem;
    background-image: url(../img/common/accordion_plus.png);
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: right top 50%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap > div > dl > dt.is_open {
    background-image: url(../img/common/accordion_close.png);
  }
}
.p-hamburger-nav__wrap > div > dl > dt > span {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-top: 1rem;
}
@media print, screen and (max-width: 1260px) {
  .p-hamburger-nav__wrap > div > dl > dt > span {
    font-size: 1.2rem;
  }
}
@media print, screen and (max-width: 1260px) {
  .p-hamburger-nav__wrap > div > dl > dd {
    display: none;
  }
}
.p-hamburger-nav__wrap > div > dl > dd > ul {
  margin-top: 4rem;
}
@media print, screen and (max-width: 1260px) {
  .p-hamburger-nav__wrap > div > dl > dd > ul {
    margin-top: 2rem;
  }
}
.p-hamburger-nav__wrap > div > dl > dd > ul p,
.p-hamburger-nav__wrap > div > dl > dd > ul a {
  color: #fff;
  font-size: 1.8rem;
  padding: 0.2rem 0;
}
@media print, screen and (max-width: 1260px) {
  .p-hamburger-nav__wrap > div > dl > dd > ul p,
  .p-hamburger-nav__wrap > div > dl > dd > ul a {
    font-size: 1.2rem;
  }
}
.p-hamburger-nav__wrap > div > dl > dd > ul > li > ul {
  padding-left: 1em;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap > div > dl > dd > ul > li > ul {
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
.p-hamburger-nav__wrap > div > dl > dd > ul > li.no-click > a {
  opacity: 0.4;
  cursor: auto;
}
.p-hamburger-nav__wrap > div > dl > dd > ul > li.no-click > ul > li a {
  opacity: 0.4;
  cursor: auto;
}
.p-hamburger-nav__wrap > div > dl > dd > ul > li.no-click > ul > li a:hover {
  opacity: 0.4;
}
.p-hamburger-nav__wrap .closebtn {
  display: none;
  border: solid 1px #fff;
  color: #fff;
  font-size: 2rem;
  width: 17rem;
  padding: 1rem;
  margin: 3rem auto 0;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger-nav__wrap .closebtn {
    display: block;
  }
}
.p-hamburger-nav.is_open {
  display: block;
}

/* -----------------------------------------------
footer
----------------------------------------------- */
.p-footer {
  background: #d7edf2;
  padding: 8.4rem 0 8rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .p-footer {
    padding: 2.5rem 0 2.5rem;
  }
}
.p-footer__inner {
  width: 130rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-footer__inner {
    width: 100%;
  }
}
.p-footer__nav {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media print, screen and (max-width: 768px) {
  .p-footer__nav {
    display: none;
  }
}
.p-footer__nav > dl > dt {
  font-size: 1.9rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.p-footer__nav > dl > dt::after {
  position: absolute;
  bottom: -0.4rem;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #ffff00;
  height: 0.5rem;
  width: 100%;
  content: "";
  border-radius: 5px;
}
.p-footer__nav > dl > dd {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 2rem;
}
.p-footer__nav > dl > dd > ul > li {
  margin-top: 1rem;
}
.p-footer__nav > dl > dd > ul > li > ul {
  margin-left: 1em;
}
.p-footer__submenu {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer__submenu {
    font-size: 1rem;
    margin-top: 0;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
  }
}
@media print, screen and (max-width: 768px) {
  .p-footer__submenu > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #b4dce0;
  }
}
.p-footer__submenu > li > a {
  padding: 0 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer__submenu > li > a {
    display: block;
    padding: 1rem 1rem;
  }
}
.p-footer__submenu > li + li {
  border-left: 1px solid #000;
}
@media print, screen and (max-width: 768px) {
  .p-footer__submenu > li + li {
    border-left: none;
  }
}
.p-footer__copy {
  margin-top: 3.5rem;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

/* -----------------------------------------------
pageup
----------------------------------------------- */
.p-pageup {
  position: fixed;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 7rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100px);
}
@media print, screen and (max-width: 768px) {
  .p-pageup {
    width: 3.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}
.p-pageup.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-pageup.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.p-pageup > a {
  display: block;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .p-pageup > a:hover {
    opacity: 1;
  }
}

/* -----------------------------------------------
page
----------------------------------------------- */
.p-mv {
  background-size: 133rem 68.6rem;
  background-position: top right;
  background-repeat: no-repeat;
  height: 68.6rem;
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv {
    height: auto;
    margin-top: 5.5rem;
    background-size: 100% auto;
    background-position: top center;
    padding-top: 26.6rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-mv--special {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.p-mv__inner {
  display: flex;
  align-items: flex-start;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-mv__inner {
    height: auto;
    justify-content: flex-start;
    width: 32rem;
  }
}
.p-mv__side {
  position: absolute;
  top: 0;
  margin: auto;
  left: -6rem;
  width: 3.2rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__side {
    left: -2.5rem;
    width: 1.2rem;
  }
}
.p-mv__title {
  height: 12.6rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-mv__title {
    height: 4.5rem;
  }
}
.p-mv__title > img {
  height: inherit;
  width: auto;
}
.p-mv__title.twoline {
  height: 25.2rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__title.twoline {
    height: 9.4rem;
  }
}
.p-mv__title.interviewline {
  height: 22rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__title.interviewline {
    height: 9.1rem;
  }
}
.p-mv__subblock {
  background-color: #fff;
  margin-top: 5.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__subblock {
    margin-top: 1rem;
    width: 100%;
  }
}
.p-mv__subblock .p-mv__subtitle {
  width: 100%;
  display: block;
  margin-top: 0;
}
.p-mv__subblock__text {
  font-size: 4.4rem;
  font-weight: 600;
  padding: 2rem;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .p-mv__subblock__text {
    font-size: 1.5rem;
    letter-spacing: 0;
    border: 2px solid #ffff00;
    padding: 1.5rem 1rem;
  }
}
.p-mv__subtitle {
  background-color: #ffff00;
  font-size: 3.4rem;
  font-weight: 600;
  padding: 2rem;
  line-height: 1;
  display: inline-block;
  margin-top: 5.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__subtitle {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    line-height: 2;
  }
}
.p-mv-interview {
  margin-left: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv-interview {
    margin-left: 0;
  }
}
.p-mv-interview .station {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv-interview .station {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}
.p-mv-interview .name {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv-interview .name {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}
.p-mv-interview .career {
  font-size: 2.6rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv-interview .career {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }
}

.p-body {
  padding-top: 20rem;
  padding-bottom: 20rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-body {
    padding-top: 5rem;
    background-position: bottom 0 center;
    background-image: url(../img/common/page_bg_sp.svg);
    background-repeat: no-repeat;
    padding-bottom: 15rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-body.recruit-bg {
    background-position: bottom 13rem center;
    padding-bottom: 4.2rem;
  }
}
.p-body .bg-base {
  background-size: 100% auto;
  background-position: top 34rem center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: -1;
}
.p-body__bg {
  background-image: url(../img/common/page_bg.svg);
  top: 0;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .p-body__bg {
    display: none;
  }
}
.p-body__bg.woman {
  background-image: url(../img/common/page_bg-woman.svg);
  background-position: top 44rem center;
}
@media print, screen and (max-width: 768px) {
  .p-body__bg.woman {
    display: none;
  }
}

.p-clipfile {
  background-color: #fff;
  padding: 10rem;
  outline: 5rem solid #ebf6f8;
  outline-offset: -5rem;
  position: relative;
  margin-top: 4.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-clipfile {
    margin-top: 6.5rem;
    outline-offset: -1.5rem;
    outline: 1.5rem solid #ebf6f8;
    padding: 4.2rem;
  }
}
.p-clipfile::after {
  height: 4.5rem;
  width: 100%;
  content: "";
  top: -4.5rem;
  position: absolute;
  left: 0;
  background-color: #afdae5;
}
@media print, screen and (max-width: 768px) {
  .p-clipfile::after {
    top: -1.7rem;
    height: 1.7rem;
  }
}
.p-clipfile.no-pd {
  padding: 5rem;
  background-color: #ebf6f8;
}
@media print, screen and (max-width: 768px) {
  .p-clipfile.no-pd {
    padding: 2rem 3rem;
  }
}
.p-clipfile-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-clipfile-card > li {
  width: 50rem;
  margin-top: 12rem;
}
@media print, screen and (max-width: 768px) {
  .p-clipfile-card > li {
    margin-top: 4rem;
    width: 100%;
  }
}

.p-table {
  width: 100%;
  table-layout: fixed;
}
.p-table .width10 {
  width: 10%;
}
.p-table .width20 {
  width: 20%;
}
@media print, screen and (max-width: 768px) {
  .p-table .width-auto-sp {
    width: auto;
  }
}
.p-table > thead > tr > th {
  background-color: #1c415c;
  vertical-align: middle;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.3;
  padding: 2rem 0;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-table > thead > tr > th {
    font-size: 1rem;
    padding: 1rem 0;
    text-align: left;
  }
}
@media print, screen and (max-width: 768px) {
  .p-table > thead > tr > th > span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
}
.p-table > thead > tr > th + th {
  border-left: 1px solid #fff;
}
.p-table > tbody > tr > th,
.p-table > tbody > tr > td {
  background-color: #fff;
  border: #028eee 1px solid;
  color: #1c415c;
  padding: 1rem 1.8rem;
  font-weight: 500;
  font-size: 2.3rem;
  vertical-align: middle;
}
@media print, screen and (max-width: 768px) {
  .p-table > tbody > tr > th,
  .p-table > tbody > tr > td {
    font-size: 1rem;
    min-height: 7rem;
    padding: 1rem 0.2rem;
  }
}
.p-table > tbody > tr > th {
  text-align: left;
}
@media print, screen and (max-width: 768px) {
  .p-table > tbody > tr > th.u-text-center-sp {
    text-align: center;
  }
}
.p-table > tbody > tr > td {
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-table > tbody > tr > td {
    font-size: 1.4rem;
  }
}

.p-table02 {
  width: 100%;
  table-layout: fixed;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #1c415c;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.p-table02 .width80 {
  width: 80%;
}
.p-table02 .width20 {
  width: 20%;
}
@media print, screen and (max-width: 768px) {
  .p-table02.vertical-sp tbody {
    display: block;
  }
  .p-table02.vertical-sp th,
  .p-table02.vertical-sp td {
    width: 33.5rem;
    display: block;
  }
  .p-table02.vertical-sp td {
    border-top: none;
    border-bottom: none;
  }
  .p-table02.vertical-sp tr {
    display: block;
  }
  .p-table02.vertical-sp tr:last-child td {
    border-bottom: #1c415c 1px solid;
  }
}
@media print, screen and (max-width: 768px) {
  .p-table02 .width-auto-sp {
    width: auto;
  }
}
.p-table02 th {
  border: #1c415c 1px solid;
  padding: 2rem;
  background-color: #12b8d7;
}
@media print, screen and (max-width: 768px) {
  .p-table02 th {
    padding: 0.5rem;
  }
}
.p-table02 td {
  padding: 2rem;
  border: #1c415c 1px solid;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .p-table02 td {
    padding: 1rem;
  }
}

.p-faq {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-faq {
    margin-top: 3rem;
  }
}
.p-faq__icon-q {
  width: 7%;
  display: inline-block;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-faq__icon-q {
    width: 12%;
    padding-top: 0.3rem;
  }
}
.p-faq__icon-q > img {
  height: 3.5rem;
  width: auto;
}
@media print, screen and (max-width: 768px) {
  .p-faq__icon-q > img {
    height: 2rem;
  }
}
.p-faq__icon-a {
  width: 5%;
  display: inline-block;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-faq__icon-a {
    width: 8%;
    padding-top: 0.3rem;
  }
}
.p-faq__icon-a > img {
  height: 4rem;
  width: auto;
}
@media print, screen and (max-width: 768px) {
  .p-faq__icon-a > img {
    height: 2rem;
  }
}
.p-faq > dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .p-faq > dt {
    font-size: 1.4rem;
    align-items: flex-start;
  }
}
.p-faq > dt > p {
  width: 90%;
}
@media print, screen and (max-width: 768px) {
  .p-faq > dt > p {
    width: 85%;
  }
}
.p-faq > dd {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .p-faq > dd {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
}
.p-faq > dd > p {
  width: 90%;
}
@media print, screen and (max-width: 768px) {
  .p-faq > dd > p {
    width: 85%;
  }
}

.p-cta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 22.4rem;
}
@media print, screen and (max-width: 768px) {
  .p-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: space-between;
    padding-top: 4rem;
  }
}
.p-cta > a {
  display: block;
  color: #fff;
  font-size: 4rem;
  text-align: center;
  width: 46.2rem;
  padding: 2rem 0 3rem;
  line-height: 1.8;
  border-radius: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-cta > a {
    width: 16.4rem;
    font-size: 2rem;
    border-radius: 2.5rem;
    padding: 1.5rem 0 2rem;
  }
}
.p-cta > a > span {
  display: block;
  width: 15rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-cta > a > span {
    width: 7.5rem;
  }
}
.p-cta > a + a {
  margin-left: 2.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-cta > a + a {
    margin-left: 0;
  }
}

/* ====================================================
component
==================================================== */
.c-inner--1300 {
  width: 130rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner--1300 {
    padding: 0 2rem;
    width: 100%;
  }
}
.c-inner--1064 {
  width: 106.4rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner--1064 {
    width: 100%;
  }
}
.c-inner--1045 {
  width: 104.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner--1045 {
    width: 100%;
  }
}
.c-inner--820 {
  width: 82rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner--820 {
    width: 100%;
  }
}
.c-inner--900 {
  width: 90rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner--900 {
    width: 100%;
  }
}

@media print, screen and (max-width: 768px) {
  .c-inner-sp {
    padding: 0 2rem;
  }
}

.c-underline > span {
  position: relative;
  display: inline-block;
  z-index: 1;
  line-height: 1.6;
}
.c-underline > span::after {
  position: absolute;
  bottom: 0.2em;
  left: 0;
  background-color: #ffff00;
  width: 102%;
  height: 0.2em;
  content: "";
  z-index: -1;
  border-radius: 2em;
}

.c-title {
  font-size: 6rem;
  text-align: center;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .c-title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.c-subtitle {
  font-size: 5rem;
  text-align: center;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .c-subtitle {
    font-size: 2.4rem;
  }
}
.c-subtitle.fc-a {
  color: #12c8d4;
}
.c-subtitle.fc-b {
  color: #0cb1de;
}
.c-subtitle.fc-c {
  color: #069ae9;
}
.c-subtitle.fc-d {
  color: #0085f2;
}

.c-subtitle02 {
  font-size: 3.5rem;
  text-align: left;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .c-subtitle02 {
    font-size: 1.7rem;
  }
}

.c-sec {
  margin-top: 20rem;
}
@media print, screen and (max-width: 768px) {
  .c-sec {
    margin-top: 5rem;
  }
}

.c-morebtn {
  width: 22.7rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .c-morebtn {
    width: 11.3rem;
  }
}

.c-btn {
  background-image: url(../img/common/icon_arrow-white.svg), linear-gradient(90deg, #12c8d4 0%, #0085f2 100%);
  background-repeat: no-repeat;
  background-size: 2rem, cover;
  background-position: right 2rem center, top center;
  border-radius: 10rem;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 1.5rem 6rem 1.5rem 3.5rem;
  display: inline-block;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .c-btn {
    font-size: 1.3rem;
    background-size: 0.8rem, cover;
    padding: 0.8rem 3.5rem 0.8rem 2rem;
    background-position: right 1.5rem center, top center;
  }
}

.c-yellow-head {
  text-align: center;
  background-color: #ffff00;
  padding: 1rem 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .c-yellow-head {
    font-size: 1.7rem;
    padding: 0.5rem 2rem;
  }
}

.c-blue-head {
  text-align: center;
  background-color: #afdae5;
  padding: 1rem 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #1c415c;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .c-blue-head {
    font-size: 1.7rem;
    padding: 0.5rem 2rem;
  }
}

.c-blue-body {
  background-color: #ebf6f8;
  padding: 3.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-blue-body {
    padding: 1.5rem;
  }
}

.c-line-body {
  outline: 2rem solid #afdae5;
  outline-offset: -2rem;
  padding: 6rem;
}
@media print, screen and (max-width: 768px) {
  .c-line-body {
    padding: 5rem 4rem;
  }
}

.c-strong-text {
  font-size: 4.6rem;
  font-weight: 600;
  color: #1c415c;
  line-height: 2;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 768px) {
  .c-strong-text {
    font-size: 2rem;
  }
}

.c-crosstalk {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk {
    font-size: 1.3rem;
  }
}
.c-crosstalk > dt {
  width: 8rem;
  font-weight: 600;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk > dt {
    width: 5rem;
  }
}
.c-crosstalk > dd {
  font-weight: 400;
  width: calc(100% - 8rem - 2rem);
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk > dd {
    width: calc(100% - 5rem - 2rem);
  }
}

.c-crosstalk-person {
  background-color: #fff;
  display: flex;
  padding: 4rem;
  gap: 5rem;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person {
    padding: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.c-crosstalk-person.--col2 > li {
  width: calc(50% - (5rem / 2));
  gap: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person.--col2 > li {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
    width: calc(50% - (2rem / 2));
  }
}
.c-crosstalk-person.--col2 > li > figure {
  width: 24rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person.--col2 > li > figure {
    width: 100%;
  }
}
.c-crosstalk-person.--col2 > li > figcaption {
  width: calc(100% - (5rem / 2) - 24rem);
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person.--col2 > li > figcaption {
    width: 100%;
  }
}
.c-crosstalk-person > li {
  width: 24rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person > li {
    width: 12rem;
    margin-bottom: 2.5rem;
  }
  .c-crosstalk-person > li:nth-last-child(1), .c-crosstalk-person > li:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.c-crosstalk-person > li > figcaption {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  padding-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person > li > figcaption {
    padding-top: 1rem;
    font-size: 1.1rem;
  }
}
.c-crosstalk-person > li > figcaption > .station {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person > li > figcaption > .station {
    font-size: 1.1rem;
    min-height: auto;
  }
}
.c-crosstalk-person > li > figcaption > .name {
  font-size: 2.3rem;
  font-weight: 500;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person > li > figcaption > .name {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk-person > li > figcaption > .name.u-mt23-sp {
    margin-top: 2.3rem;
  }
}

/* ====================================================
TOP
==================================================== */
@keyframes fuwafuwa {
  0%,
    100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.top-title {
  text-align: center;
}
.top-title > .en {
  height: 11rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .top-title > .en {
    height: 3.5rem;
  }
}
.top-title > .en.two-line {
  height: 26rem;
}
@media print, screen and (max-width: 768px) {
  .top-title > .en.two-line {
    height: 8.5rem;
  }
}
.top-title > .en > img {
  height: inherit;
}
.top-title > .ja {
  font-size: 4rem;
  font-weight: 600;
  margin-top: 2rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .top-title > .ja {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
.top-linklist {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-linklist {
    flex-wrap: wrap;
    width: 90%;
    margin: 2.3rem auto 0;
  }
}
.top-linklist > li {
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .top-linklist > li {
    width: 50%;
    margin-top: 3rem;
  }
  .top-linklist > li:nth-child(1), .top-linklist > li:nth-child(2) {
    margin-top: 0;
  }
}
.top-linklist > li > a {
  display: block;
  padding: 0 5rem;
}
@media print, screen and (max-width: 768px) {
  .top-linklist > li > a {
    padding: 0 2rem;
  }
}
.top-linklist > li > a > figure {
  width: 26rem;
}
@media print, screen and (max-width: 768px) {
  .top-linklist > li > a > figure {
    width: 100%;
  }
}
.top-linklist > li > a > figcaption {
  font-size: 3.5rem;
  line-height: 1.1;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 2rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .top-linklist > li > a > figcaption {
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.top-body {
  overflow: hidden;
  padding-bottom: 20rem;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .top-body {
    padding-bottom: 6rem;
  }
}
.top-body .bg-base {
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: -1;
}
.top-body__bg01 {
  background-image: url(../img/top/page_bg01.svg);
  top: 8rem;
  height: 133.6rem;
}
@media print, screen and (max-width: 768px) {
  .top-body__bg01 {
    display: none;
  }
}
.top-body__bg02 {
  background-image: url(../img/top/page_bg02.svg);
  top: 6rem;
  height: 140rem;
}
@media print, screen and (max-width: 768px) {
  .top-body__bg02 {
    display: none;
  }
}
.top-body__bg03 {
  background-image: url(../img/top/page_bg03.svg);
  top: -16rem;
  height: 282.4rem;
}
@media print, screen and (max-width: 768px) {
  .top-body__bg03 {
    display: none;
  }
}
.top-body__bg04 {
  background-image: url(../img/top/page_bg04.svg);
  top: -27rem;
  height: 238.4rem;
}
@media print, screen and (max-width: 768px) {
  .top-body__bg04 {
    display: none;
  }
}
.top-body__point01 {
  background-image: url(../img/top/page_point01.svg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 101rem;
  right: 0;
  width: 28.7rem;
  height: 19.6rem;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .top-body__point01 {
    display: none;
  }
}
.top-mv {
  height: 96.5rem;
  background-image: url(../img/top/mv_bg.jpg);
  background-size: cover;
  padding: 5rem 0 1rem;
  position: relative;
  width: 100%;
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv {
    height: 61rem;
    background-image: url(../img/top/mv_bg_sp.jpg);
    padding: 2.3rem 0 1rem;
    margin-top: 5rem;
  }
}
.top-mv__inner {
  height: 100%;
}
.top-mv__title {
  width: 69.7rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__title {
    width: 31.4rem;
    margin: auto;
  }
}
.top-mv__text {
  color: #fff;
  background: #000;
  font-size: 3.5rem;
  font-weight: 600;
  padding: 0.5rem 2.5rem;
  display: inline-block;
  margin-top: 4rem;
  border-radius: 3rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__text {
    font-size: 1.4rem;
    letter-spacing: 0;
    padding: 0.5rem 0.5rem;
    width: 31.5rem;
    margin: 1.5rem auto 0;
    display: block;
    text-align: center;
  }
}
.top-mv__note {
  width: 56.3rem;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__note {
    width: 19.7rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.top-mv__item {
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item {
    position: static;
  }
}
.top-mv__item.item-purple {
  top: 4rem;
  right: 66rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-purple .bubble {
    bottom: 27rem;
    left: 1rem;
    top: auto;
    right: auto;
  }
}
.top-mv__item.item-purple .popup {
  left: -13rem;
  top: 0;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-purple .popup {
    left: 0;
    top: 23.6rem;
    right: 0;
  }
}
.top-mv__item.item-purple .popup__head {
  background-color: #9393f8;
}
.top-mv__item.item-purple .popup__main {
  border: #e9e9fe 2rem solid;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-purple .popup__main {
    border: #e9e9fe 1rem solid;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-purple .popup__main figure {
    width: 60%;
    margin-top: 0.5rem;
  }
}
.top-mv__item.item-orange {
  bottom: 31rem;
  left: 47rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-orange .bubble {
    bottom: 14rem;
    left: 1rem;
  }
}
.top-mv__item.item-orange .popup {
  left: -16rem;
  top: -1rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-orange .popup {
    left: 0;
    top: 23.6rem;
    right: 0;
  }
}
.top-mv__item.item-orange .popup__head {
  background-color: #f6cfa0;
}
.top-mv__item.item-orange .popup__main {
  border: #fcf1e2 2rem solid;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-orange .popup__main {
    border: #fcf1e2 1rem solid;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-orange .popup__main figure {
    width: 60%;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
}
.top-mv__item.item-red {
  bottom: 31rem;
  left: 88rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-red .bubble {
    bottom: 7rem;
    right: 7rem;
    left: auto;
  }
}
.top-mv__item.item-red .popup {
  left: -7rem;
  top: -1rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-red .popup {
    left: 0;
    top: 23.6rem;
    right: 0;
  }
}
.top-mv__item.item-red .popup__head {
  background-color: #ef8683;
}
.top-mv__item.item-red .popup__main {
  border: #fce7e6 2rem solid;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-red .popup__main {
    border: #fce7e6 1rem solid;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-red .popup__main figure {
    width: 70%;
    margin-top: 2rem;
  }
}
.top-mv__item.item-pink {
  bottom: 44rem;
  right: 51rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-pink .bubble {
    top: auto;
    bottom: 20.5rem;
    right: 12.5rem;
  }
}
.top-mv__item.item-pink .popup {
  left: -1rem;
  top: 0rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-pink .popup {
    left: 0;
    top: 23.6rem;
    right: 0;
  }
}
.top-mv__item.item-pink .popup__head {
  background-color: #ef8bbf;
}
.top-mv__item.item-pink .popup__main {
  border: #fce8f2 2rem solid;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-pink .popup__main {
    border: #fce8f2 1rem solid;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-pink .popup__main figure {
    width: 50%;
  }
}
.top-mv__item.item-green {
  top: 20.7rem;
  right: 20rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-green .bubble {
    top: auto;
    bottom: 27rem;
    right: 1rem;
  }
}
.top-mv__item.item-green .popup {
  right: -11rem;
  top: -3rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-green .popup {
    left: 0;
    top: 23.6rem;
    right: 0;
  }
}
.top-mv__item.item-green .popup__head {
  background-color: #aafc9a;
}
.top-mv__item.item-green .popup__main {
  border: #eafee6 2rem solid;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item.item-green .popup__main {
    border: #eafee6 1rem solid;
  }
}
.top-mv__item .bubble {
  animation: 3s fuwafuwa infinite;
  z-index: 1;
  cursor: pointer;
  background: #fff;
  color: #1c415c;
  display: inline-block;
  text-align: center;
  border-radius: 2rem;
  padding: 1.5rem 3rem;
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .bubble {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 1rem;
    letter-spacing: 0;
    position: absolute;
  }
}
.top-mv__item .bubble::after {
  position: absolute;
  content: "";
  background-image: url(../img/top/bubble_deco.svg);
  width: 2.3rem;
  background-repeat: no-repeat;
  height: 2.1rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -2rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .bubble::after {
    width: 1.35rem;
    height: 1.2rem;
    bottom: -1.2rem;
  }
}
.top-mv__item .popup {
  z-index: 2;
  display: none;
  width: 69.3rem;
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup {
    width: 34rem;
    display: block;
    margin: auto;
    position: absolute;
  }
}
.top-mv__item .popup.js-popup-open {
  display: none;
}
.top-mv__item .popup.js-popup-open.is_open {
  display: block;
}
.top-mv__item .popup__erase {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__erase {
    width: 2rem;
    display: block;
    margin-left: auto;
  }
}
.top-mv__item .popup__head {
  background-image: url(../img/common/icon_dot.svg);
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 6rem;
  width: 100%;
  height: 6rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__head {
    height: 3.5rem;
    background-size: 2rem;
    background-position: left 1rem center;
    padding: 0.6rem 1rem 0.6rem 0;
  }
}
.top-mv__item .popup__main {
  background-color: #fff;
  padding: 2rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main {
    padding: 1rem;
  }
}
.top-mv__item .popup__main__title {
  font-size: 2rem;
  color: #1c415c;
  line-height: 1.7;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
.top-mv__item .popup__main figcaption {
  width: 60%;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main figcaption {
    width: 100%;
  }
}
.top-mv__item .popup__main figcaption > p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main figcaption > p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}
.top-mv__item .popup__main figure {
  width: 40%;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main figure {
    width: 70%;
    margin: 0rem auto 0;
  }
}
.top-mv__item .popup__main__wrap {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main__wrap {
    flex-wrap: wrap;
  }
}
.top-mv__item .popup__main__btn {
  width: 19.6rem;
  display: block;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .top-mv__item .popup__main__btn {
    width: 12rem;
    margin: 1.5rem auto 0;
  }
}
@media print, screen and (min-width: 768px) {
  .top-mv__item:hover .popup {
    display: block;
  }
}
.top-message {
  position: relative;
  padding-top: 14rem;
}
@media print, screen and (max-width: 768px) {
  .top-message {
    padding-top: 5.5rem;
    padding-bottom: 12rem;
    background-image: url(../img/top/message_bg_sp.svg);
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.top-message__text {
  width: 60rem;
  font-size: 2rem;
  margin: 3.4rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .top-message__text {
    width: 100%;
    font-size: 1.2rem;
    margin: 1.5rem auto 0;
  }
}
.top-about {
  padding-top: 17rem;
}
@media print, screen and (max-width: 768px) {
  .top-about {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    background-image: url(../img/top/about_bg_sp.svg);
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.top-people {
  position: relative;
  padding-top: 22rem;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .top-people {
    padding-top: 5rem;
  }
}
.top-people__wrap {
  width: 146rem;
  margin: 5rem auto 0;
  background-image: url(../img/top/people_bg.svg);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 13.7rem 11rem 14rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__wrap {
    width: 34.5rem;
    margin: 2.6rem auto 0;
    padding: 8.6rem 2.4rem 5rem;
    background-image: url(../img/top/people_bg_sp.svg);
    background-size: cover;
  }
}
.top-people__item {
  margin-top: 5.4rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item {
    margin-top: 2rem;
  }
  .top-people__item:first-child {
    margin-top: 0;
  }
}
.top-people__item__title {
  text-align: center;
  background-color: #ffff00;
  padding: 1rem 0;
  font-size: 3.5rem;
  font-weight: 600;
  background-image: url(../img/common/icon_dot.svg);
  background-position: left 2.5rem center;
  background-repeat: no-repeat;
  background-size: 5rem;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .top-people__item__title {
    font-size: 1.8rem;
    background-size: 2.5rem;
    background-position: left 1.5rem center;
    padding: 0.5rem 0 0.5rem 3rem;
  }
}
.top-people__item__main {
  background-color: #fff;
  padding: 3.4rem 5rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item__main {
    padding: 1.5rem 1.5rem 2rem;
  }
}
.top-people__item .work__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-people__item .work__list__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__list__head {
    justify-content: center;
  }
}
.top-people__item .work__list__head > a {
  color: #fff;
  height: 26.6rem;
  border-radius: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 4rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__list__head > a {
    height: 10rem;
    width: 12.5rem;
    font-size: 1.6rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
  }
  .top-people__item .work__list__head > a:nth-child(1), .top-people__item .work__list__head > a:nth-child(2) {
    margin-top: 0;
  }
}
.top-people__item .work__list__side {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 6rem;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__list__side {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.top-people__item .work__list__side > a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #1c415c;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.5em;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 5rem;
  background-position: center right 0;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__list__side > a {
    font-size: 1.3rem;
    background-size: 2.2rem;
    background-position: center right 0;
    min-height: 3em;
  }
}
.top-people__item .work__list__side > a span {
  display: block;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__list__side > a span {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.top-people__item .work__item {
  width: calc(33.3% - 4rem);
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__item {
    width: calc(50% - 1rem);
  }
}
.top-people__item .work__item.development {
  width: calc(50% - 1rem);
  background-image: url(../img/top/work_development.jpg);
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__item.development {
    background-image: url(../img/top/work_development_sp.jpg);
  }
}
.top-people__item .work__item.sales {
  width: calc(50% - 1rem);
  background-image: url(../img/top/work_sales.jpg);
}
@media print, screen and (max-width: 768px) {
  .top-people__item .work__item.sales {
    background-image: url(../img/top/work_sales_sp.jpg);
  }
}
.top-people__item .interview__list {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__list {
    flex-wrap: wrap;
    padding-top: 2.5rem;
  }
}
.top-people__item .interview__item {
  margin: auto;
  width: 33.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__item {
    width: 12rem;
    margin-top: 3rem;
  }
  .top-people__item .interview__item:nth-child(2n) {
    margin-left: 2rem;
  }
  .top-people__item .interview__item:nth-child(1), .top-people__item .interview__item:nth-child(2) {
    margin-top: 0;
  }
}
.top-people__item .interview__item > figcaption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1.5;
  margin-top: -2.7rem;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__item > figcaption {
    margin-top: 0.5rem;
    display: block;
    background-image: url(../img/common/icon_arrow.svg);
    background-repeat: no-repeat;
    background-size: 3rem;
    background-position: center right;
  }
}
.top-people__item .interview__item > figcaption > .name {
  font-size: 3.2rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__item > figcaption > .name {
    font-size: 1.2rem;
  }
}
.top-people__item .interview__item > figcaption > .name > span {
  font-size: 2.6rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__item > figcaption > .name > span {
    font-size: 1.4rem;
  }
}
.top-people__item .interview__item > figcaption > .year {
  font-size: 2.4rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .top-people__item .interview__item > figcaption > .year {
    font-size: 1.1rem;
    margin-top: 0.3rem;
  }
}
.top-special {
  padding-top: 22rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-special {
    padding-top: 20rem;
    background-image: url(../img/top/special_bg_sp02.svg);
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    margin-top: -10rem;
    z-index: 1;
  }
}
.top-special__wrap {
  width: 146rem;
  margin: 5rem auto 0;
  background-image: url(../img/top/special_bg.svg);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 6rem 11rem 9rem;
}
@media print, screen and (max-width: 768px) {
  .top-special__wrap {
    background-image: url(../img/top/special_bg_sp.svg);
    width: 100%;
    width: 34.5rem;
    padding: 3.5rem 1.5rem 3.5rem;
    background-size: cover;
    margin: 2.5rem auto 0;
  }
}
.top-special__item {
  background-color: #ebf6f8;
  padding: 5rem 2rem 2rem;
  background-image: url(../img/common/icon_dot.svg);
  background-position: left 2.5rem top 1.5rem;
  background-repeat: no-repeat;
  background-size: 5rem;
  display: block;
  margin-top: 5rem;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .top-special__item {
    background-size: 2.4rem;
    background-position: left 1rem top 1rem;
    padding: 2.5rem 1rem 1rem;
    margin-top: 1.5rem;
  }
}
.top-special__item > figcaption {
  font-size: 4.8rem;
  font-weight: 600;
  color: #1c415c;
  height: 11rem;
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 4rem;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 7rem;
  background-position: center right 2rem;
}
@media print, screen and (max-width: 768px) {
  .top-special__item > figcaption {
    font-size: 1.5rem;
    background-size: 2.5rem;
    height: 5rem;
    line-height: 1.3;
    padding-left: 1rem;
    background-position: center right 1rem;
  }
}
.top-special__item > figcaption > .num {
  height: 6rem;
  display: inline-block;
  padding-right: 3.7rem;
}
@media print, screen and (max-width: 768px) {
  .top-special__item > figcaption > .num {
    height: 2rem;
    padding-right: 1.5rem;
  }
}
.top-special__item > figcaption > .num > img {
  height: inherit;
  width: auto;
}
.top-special__item > figcaption > p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-special__item > figcaption > p > span {
  margin-left: 2rem;
  display: inline-block;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .top-special__item > figcaption > p > span {
    font-size: 1rem;
    margin-left: 0;
  }
}
.top-working {
  padding-top: 22rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-working {
    padding-top: 18.5rem;
    padding-bottom: 12rem;
    background-image: url(../img/top/working_bg_sp.svg);
    background-position: center top 0.5rem;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.top-recruit {
  padding-top: 22rem;
}
@media print, screen and (max-width: 768px) {
  .top-recruit {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background-image: url(../img/top/recruit_bg_sp.svg);
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

.strength-mv {
  background-image: url(../img/strength/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .strength-mv {
    background-image: url(../img/strength/mv_bg_sp.jpg);
  }
}
.strength-point__item {
  padding-top: 11.2rem;
}
@media print, screen and (max-width: 768px) {
  .strength-point__item {
    padding-top: 6rem;
  }
}
.strength-point__item:first-child {
  padding-top: 0;
}
.strength-point__title {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  letter-spacing: 0;
}
@media print, screen and (max-width: 768px) {
  .strength-point__title {
    font-size: 2.4rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
.strength-point__title > .num {
  width: 12rem;
  margin-right: 3.6rem;
}
@media print, screen and (max-width: 768px) {
  .strength-point__title > .num {
    width: 5rem;
    margin: auto;
  }
}
@media print, screen and (max-width: 768px) {
  .strength-point__title > span {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.strength-point__main {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .strength-point__main {
    flex-wrap: wrap;
    margin-top: 2rem;
  }
}
.strength-point__main > p {
  width: 62rem;
}
.strength-point__main > figure {
  width: 58rem;
}

.business-mv {
  background-image: url(../img/business/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .business-mv {
    background-image: url(../img/business/mv_bg_sp.jpg);
  }
}
.business-lineup__list {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__list {
    margin: 0 auto;
    width: 31rem;
  }
}
.business-lineup__item {
  width: 62rem;
  background-color: #ebf6f8;
  border-top: 45px solid #afdae5;
  padding: 4rem;
  width: 62rem;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__item {
    margin-top: 3rem;
    border-top: 1.7rem solid #afdae5;
    padding: 2rem;
    width: 100%;
  }
}
.business-lineup__item__title {
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  padding-top: 3rem;
  line-height: 1.3;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__item__title {
    font-size: 1.7rem;
    padding-top: 1.5rem;
  }
}
.business-lineup__item > figcaption {
  min-height: 32rem;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__item > figcaption {
    min-height: auto;
  }
}
.business-lineup__item > figcaption > p {
  font-weight: 400;
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__item > figcaption > p {
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.business-lineup__item__btn {
  margin: auto;
  margin-bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .business-lineup__item__btn {
    margin-top: 3rem;
  }
}

.education-mv {
  background-image: url(../img/education/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .education-mv {
    background-image: url(../img/education/mv_bg_sp.jpg);
  }
}

.walfare-mv {
  background-image: url(../img/walfare/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .walfare-mv {
    background-image: url(../img/walfare/mv_bg_sp.jpg);
  }
}

.careerplan-mv {
  background-image: url(../img/careerplan/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .careerplan-mv {
    background-image: url(../img/careerplan/mv_bg_sp.jpg);
  }
}

.questionnaire-mv {
  background-image: url(../img/questionnaire/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .questionnaire-mv {
    background-image: url(../img/questionnaire/mv_bg_sp.jpg);
  }
}
.questionnaire__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  align-items: stretch;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__list {
    margin-top: 0;
  }
}
.questionnaire__item {
  width: 60rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #1c415c;
  background-color: #ebf6f8;
  margin-top: 9rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item {
    width: 100%;
    margin-top: 5rem;
  }
}
.questionnaire__item__title {
  font-size: 2.8rem;
  font-weight: 600;
  background-color: #afdae5;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
}
.questionnaire__item__title.u-threeline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__title.u-threeline {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.questionnaire__item__title.u-threeline > .text {
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__title.u-threeline > .text {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__title {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}
.questionnaire__item__title > span {
  display: block;
  margin-right: 3.7rem;
  width: 9.2rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__title > span {
    margin-right: 2rem;
  }
}
.questionnaire__item__title > span > img {
  height: 7.6rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__title > span > img {
    height: 3.5rem;
  }
}
.questionnaire__item__title > .text {
  width: 39rem;
  display: block;
  margin-right: 0;
}
.questionnaire__item__body {
  padding: 3rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__body {
    padding: 1.5rem;
  }
}
.questionnaire__item__body > p {
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__body > p {
    font-size: 1.4rem;
  }
  .questionnaire__item__body > p.u-mt0-sp {
    margin-top: 0;
  }
}
.questionnaire__item__body > ul {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .questionnaire__item__body > ul {
    font-size: 1.1rem;
  }
}
.questionnaire__item__body > ul > li {
  margin-top: 1rem;
}

.people-job-mv {
  background-image: url(../img/people-job/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .people-job-mv {
    background-image: url(../img/people-job/mv_bg_sp.jpg);
  }
}
.people-job-work__item {
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item {
    margin-top: 3rem;
  }
}
.people-job-work__item .work__list {
  padding: 2rem 4rem 4rem;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list {
    padding: 0;
  }
}
.people-job-work__item .work__list__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list__head {
    justify-content: center;
  }
}
.people-job-work__item .work__list__head > a {
  color: #fff;
  height: 27rem;
  border-radius: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 4rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list__head > a {
    height: 10.8rem;
    width: 14rem;
    font-size: 1.6rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
  }
  .people-job-work__item .work__list__head > a:nth-child(1), .people-job-work__item .work__list__head > a:nth-child(2) {
    margin-top: 0;
  }
}
.people-job-work__item .work__list__side {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 6rem;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list__side {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.people-job-work__item .work__list__side > a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #1c415c;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.5em;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 5rem;
  background-position: center right 0;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list__side > a {
    font-size: 1.3rem;
    background-size: 2.4rem;
    background-position: center right 0;
    min-height: 3rem;
    letter-spacing: 1;
  }
}
.people-job-work__item .work__list__side > a > span {
  display: block;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__list__side > a > span {
    font-size: 1rem;
  }
}
.people-job-work__item .work__item {
  width: calc(33.3% - 4rem);
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__item {
    width: calc(50% - 1rem);
  }
}
.people-job-work__item .work__item.development {
  width: calc(50% - 1rem);
  background-image: url(../img/people-job/work_development.jpg);
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__item.development {
    background-image: url(../img/people-job/work_development_sp.jpg);
  }
}
.people-job-work__item .work__item.sales {
  width: calc(50% - 1rem);
  background-image: url(../img/people-job/work_sales.jpg);
}
@media print, screen and (max-width: 768px) {
  .people-job-work__item .work__item.sales {
    background-image: url(../img/people-job/work_sales_sp.jpg);
  }
}
.people-job-work__item .interview__list {
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
}
.people-job-work__item .interview__item {
  width: 33.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.people-job-work__item .interview__item > figcaption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1.5;
  margin-top: -2.7rem;
}
.people-job-work__item .interview__item > figcaption > .name {
  font-size: 3.2rem;
}
.people-job-work__item .interview__item > figcaption > .name > span {
  font-size: 2.6rem;
  display: block;
}
.people-job-work__item .interview__item > figcaption > .year {
  font-size: 2.4rem;
}
.people-job-interview__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10rem auto 0;
  width: 90%;
}
@media print, screen and (max-width: 768px) {
  .people-job-interview__list {
    margin-top: 3rem;
    justify-content: center;
    width: 100%;
  }
}
.people-job-interview__list > li {
  width: 40rem;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .people-job-interview__list > li {
    width: 16rem;
    margin-top: 1.5rem;
  }
  .people-job-interview__list > li:nth-child(2n) {
    margin-left: 1.5rem;
  }
  .people-job-interview__list > li:nth-child(1), .people-job-interview__list > li:nth-child(2) {
    margin-top: 0;
  }
}
.people-job-interview__body > figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  color: #1c415c;
}
@media print, screen and (max-width: 768px) {
  .people-job-interview__body > figcaption {
    margin-top: 1rem;
  }
}
.people-job-interview__body > figcaption > .name {
  font-size: 3.2rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .people-job-interview__body > figcaption > .name {
    font-size: 1.3rem;
  }
}
.people-job-interview__body > figcaption > .career {
  font-size: 2.4rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .people-job-interview__body > figcaption > .career {
    font-size: 1.1rem;
  }
}

.interview1-mv {
  background-image: url(../img/interview1/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview1-mv {
    background-image: url(../img/interview1/mv_bg_sp.jpg);
    padding-top: 22rem;
  }
}

.interview2-mv {
  background-image: url(../img/interview2/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview2-mv {
    background-image: url(../img/interview2/mv_bg_sp.jpg);
    padding-top: 22rem;
  }
}

.interview3-mv {
  background-image: url(../img/interview3/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview3-mv {
    background-image: url(../img/interview3/mv_bg_sp.jpg);
    padding-top: 22rem;
  }
}

.interview-schedule {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule {
    flex-direction: column;
  }
}
.interview-schedule:after {
  position: absolute;
  background-color: #1c415c;
  width: 95%;
  height: 2px;
  top: 6.8rem;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule:after {
    height: calc(100% - 3.2rem);
    width: 2px;
    top: 1.8rem;
    right: auto;
    left: 4.9rem;
  }
}
.interview-schedule > li {
  width: 7rem;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule > li {
    width: 100%;
  }
  .interview-schedule > li + li {
    margin-top: 3rem;
  }
}
.interview-schedule > li > dl {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule > li > dl {
    display: flex;
    text-align: left;
    align-items: center;
  }
}
.interview-schedule > li > dl > dt {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1c415c;
  padding-bottom: 5.2rem;
  position: relative;
  letter-spacing: 0;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule > li > dl > dt {
    font-size: 1.4rem;
    padding-bottom: 0;
    text-align: left;
    width: 30%;
  }
}
.interview-schedule > li > dl > dt:after {
  position: absolute;
  border-radius: 50%;
  background-color: #1c415c;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  bottom: 1.8rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule > li > dl > dt:after {
    width: 1.2rem;
    height: 1.2rem;
    bottom: auto;
    top: 0.7rem;
    margin: auto;
    left: 2.5rem;
  }
}
.interview-schedule > li > dl > dd {
  margin: auto;
  font-size: 1.9rem;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule > li > dl > dd {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 1.3rem;
    margin: 0;
    width: 70%;
  }
}
.interview-other {
  margin-top: 20rem;
  margin-bottom: 8rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other {
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
.interview-other__list {
  display: flex;
  justify-content: center;
  margin-top: 6.5rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other__list {
    margin-top: 2rem;
    justify-content: space-between;
  }
}
.interview-other__list > li {
  width: 37rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other__list > li {
    width: 22rem;
    margin: auto;
  }
}
.interview-other__list > li + li {
  margin-left: 5rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other__list > li + li {
    margin-left: 0;
  }
}

.work-mv {
  background-image: url(../img/work/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .work-mv {
    background-image: url(../img/work/mv_bg_sp.jpg);
  }
}
.work__title-icon {
  width: 16rem;
  margin: 0 auto 3rem;
}
@media print, screen and (max-width: 768px) {
  .work__title-icon {
    width: 8rem;
    margin: 0 auto 0.5rem;
  }
}

.matrix-mv {
  background-image: url(../img/work/mv_bg02.jpg);
}
@media print, screen and (max-width: 768px) {
  .matrix-mv {
    background-image: url(../img/work/mv_bg02_sp.jpg);
  }
}

.crosstalk-mv {
  background-image: url(../img/crosstalk/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv {
    background-image: url(../img/crosstalk/mv_bg_sp.jpg);
  }
}
.crosstalk-talk__q {
  font-size: 2rem;
  font-weight: 600;
  color: #1c415c;
  margin-top: 4rem;
  padding-left: 1.5em;
  text-indent: -1.5em;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-talk__q {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
}

.topinterview-mv {
  background-image: url(../img/topinterview/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .topinterview-mv {
    background-image: url(../img/topinterview/mv_bg_sp.jpg);
  }
}
.topinterview-president {
  background-image: url(../img/topinterview/president_bg.jpg);
  background-size: cover;
  height: 45rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 5.4rem 8rem;
}
@media print, screen and (max-width: 768px) {
  .topinterview-president {
    background-image: url(../img/topinterview/president_bg_sp.jpg);
    height: 35rem;
    padding: 2rem 3.5rem;
    background-position: top right;
  }
}
.topinterview-president__block {
  width: 32.6rem;
  background-color: #fff;
  border-top: solid 4.5rem #ebf6f8;
  padding: 3rem 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .topinterview-president__block {
    padding: 1rem 2rem;
    border-top: solid 1.5rem #ebf6f8;
    width: 100%;
  }
}
.topinterview-president__block > .position {
  font-size: 2.2rem;
}
@media print, screen and (max-width: 768px) {
  .topinterview-president__block > .position {
    font-size: 1.2rem;
  }
}
.topinterview-president__block > .name {
  font-size: 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .topinterview-president__block > .name {
    font-size: 1.7rem;
  }
}

.dialogue-mv {
  background-image: url(../img/dialogue/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .dialogue-mv {
    background-image: url(../img/dialogue/mv_bg_sp.jpg);
  }
}
.dialogue-reason__item {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .dialogue-reason__item {
    flex-wrap: wrap;
    position: static;
  }
}
.dialogue-reason__item > figcaption {
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .dialogue-reason__item > figcaption {
    width: 100%;
    padding-top: 0;
  }
}
.dialogue-reason__item > figcaption .num {
  height: 8.3rem;
  line-height: 1;
  margin-bottom: 12rem;
}
@media print, screen and (max-width: 768px) {
  .dialogue-reason__item > figcaption .num {
    height: 4rem;
    text-align: center;
    margin-bottom: 0;
  }
}
.dialogue-reason__item > figcaption .num > img {
  height: inherit;
  width: auto;
}
.dialogue-reason__item > figure {
  z-index: 1;
}
.dialogue-reason__item:nth-child(2n) > figcaption {
  margin-left: auto;
}
.dialogue-reason__item:nth-child(2n) .dialogue-reason__img {
  left: 0;
  right: auto;
}
.dialogue-reason__textbox {
  width: 70rem;
  margin-right: auto;
}
@media print, screen and (max-width: 768px) {
  .dialogue-reason__textbox {
    width: 100%;
    position: relative;
  }
}
.dialogue-reason__img {
  width: 68rem;
  position: absolute;
  right: 0;
}
@media print, screen and (max-width: 768px) {
  .dialogue-reason__img {
    width: 100%;
    position: relative;
  }
}

.recruit-mv {
  background-image: url(../img/recruit/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .recruit-mv {
    background-image: url(../img/recruit/mv_bg_sp.jpg);
  }
}
.recruit-demand {
  width: 94.8rem;
  margin: 0 auto;
}
@media print, screen and (max-width: 768px) {
  .recruit-demand {
    width: 100%;
  }
}

/* ====================================================
Recruit
==================================================== */
/*----------requirement---------------*/
.u-fl {
  display: flex;
  flex-wrap: wrap;
}
.u-fl.two {
  justify-content: space-between;
}
.u-fl.align-end {
  align-items: flex-end;
}
.u-fl .od2 {
  order: 2;
}
@media print, screen and (max-width: 768px) {
  .u-fl .od2-sp {
    order: 2;
  }
}

.u-fc-white {
  color: #FFF;
}

.u-fc-darkblue {
  color: #1c415c;
}

.u-font--zenmaru {
  font-family: 'Zen Maru Gothic', sans-serif;
}

.u-bg-red {
  background-color: #e30000;
}

.u-bg-blue {
  background-color: #001ea6;
}

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

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

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

@media print, screen and (max-width: 768px) {
  .u-text-left-sp {
    text-align: left;
  }

  .u-text-center-sp {
    text-align: center;
  }
}
@media print, screen and (max-width: 768px) {
  .u-height60 {
    height: 6rem;
  }

  .u-height70 {
    height: 7rem;
  }

  .u-height110 {
    height: 11rem;
  }
}
.u-block {
  display: block;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw600 {
  font-weight: 600;
}

.u-fs12 {
  font-size: 1.2rem;
}

.u-fs16 {
  font-size: 1.6rem;
}

.u-fs18 {
  font-size: 1.8rem;
}

.u-fs20 {
  font-size: 2rem;
}

.u-fs24 {
  font-size: 2.4rem;
}

.u-fs28 {
  font-size: 2.8rem;
}

.u-fs30 {
  font-size: 3.0rem;
}

.u-fs45 {
  font-size: 4.5rem;
}

.u-fs60 {
  font-size: 6rem;
}

.u-fs-s {
  font-size: .6em;
}

.u-pt0 {
  padding-top: 0;
}

@media print, screen and (max-width: 768px) {
  .u-fs10-sp {
    font-size: 1rem;
  }

  .u-fs11-sp {
    font-size: 1.1rem;
  }

  .u-fs13-sp {
    font-size: 1.3rem;
  }

  .u-fs14-sp {
    font-size: 1.4rem;
  }

  .u-fs15-sp {
    font-size: 1.5rem;
  }

  .u-fs18-sp {
    font-size: 1.8rem;
  }

  .u-fs20-sp {
    font-size: 2rem;
  }
}
.u-mt10 {
  margin-top: 1rem;
}

.u-mt13 {
  margin-top: 13rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mt120 {
  margin-top: 12rem;
}

.u-mt140 {
  margin-top: 14rem;
}

.u-mt200 {
  margin-top: 20rem;
}

.u-mt340 {
  margin-top: 34rem;
}

@media print, screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0;
  }

  .u-mt10-sp {
    margin-top: 1rem;
  }

  .u-mt15-sp {
    margin-top: 1.5rem;
  }

  .u-mt20-sp {
    margin-top: 2rem;
  }

  .u-mt28-sp {
    margin-top: 2rem;
  }

  .u-mt30-sp {
    margin-top: 3rem;
  }

  .u-mt40-sp {
    margin-top: 4rem;
  }

  .u-mt50-sp {
    margin-top: 5rem;
  }

  .u-mt60-sp {
    margin-top: 6rem;
  }

  .u-mt120-sp {
    margin-top: 12rem;
  }

  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
.u-pt1em {
  padding-top: 1em;
}

@media print, screen and (max-width: 768px) {
  .u-plr30-sp {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .u-plr27-sp {
    padding-left: 2.7rem;
    padding-right: 2.7rem;
  }

  .u-plr40-sp {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.u-posi--re {
  position: relative;
}

.u-textspace0 {
  letter-spacing: 0;
}

.u-textheight16 {
  line-height: 1.6;
}

.u-mlr-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-w35per {
  width: 35%;
}

.u-w46per {
  width: 46%;
}

.u-w47per {
  width: 47%;
}

.u-w50per {
  width: 50%;
}

.u-w48per {
  width: 48%;
}

.u-w60per {
  width: 60%;
}

@media print, screen and (max-width: 768px) {
  .u-w35per-sp {
    width: 35%;
  }

  .u-w70per-sp {
    width: 70%;
  }

  .u-w100per-sp {
    width: 100%;
  }
}
.u-list > li {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

@media print, screen and (max-width: 768px) {
  .u-text-vertical-sp {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: inline-block;
  }
}
