@charset "UTF-8";
/* ====================================================
layout
==================================================== */
.l-header {
  position: fixed;
  left: 0;
  right: 0%;
  top: 0;
  z-index: 9999;
}
@media print, screen and (max-width: 768px) {
  .l-header {
    margin-top: 0;
  }
}

.l-bg_note {
  background-image: url(../../img/staff/common/bg_note.png);
  background-size: 3rem;
  background-repeat: repeat;
}
@media print, screen and (max-width: 768px) {
  .l-bg_note {
    background-size: 1.5rem;
  }
}

.l-page__body {
  padding-bottom: 16rem;
}
@media print, screen and (max-width: 768px) {
  .l-page__body {
    padding-bottom: 10rem;
  }
}

.l-top-main {
  padding-bottom: 16rem;
}
@media print, screen and (max-width: 768px) {
  .l-top-main {
    padding-bottom: 4.5rem;
  }
}

/* ====================================================
js
==================================================== */
@-webkit-keyframes railUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes railUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes railDown {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes railDown {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.js-mv_bg01 .swiper-wrapper {
  transition-timing-function: linear;
}
.js-mv_bg01 .swiper-wrapper img {
  height: auto;
  width: 100%;
}

.js-mv_bg02 .swiper-wrapper {
  transition-timing-function: linear;
}
.js-mv_bg02 .swiper-wrapper img {
  height: auto;
  width: 100%;
}

.js-slider_interview .swiper-slide {
  width: 32rem !important;
  position: relative;
  -webkit-transition: width .8s ease,height .8s ease;
  transition: width .8s ease,height .8s ease;
  height: 38rem;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-slide {
    padding: 0 .8rem;
    width: 18.8rem !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.js-slider_interview .swiper-slide * {
  box-sizing: border-box;
}
.js-slider_interview .swiper-slide.swiper-slide-next {
  margin-top: 0;
  height: 60rem;
}
@media print, screen and (min-width: 768px) {
  .js-slider_interview .swiper-slide.swiper-slide-next {
    width: 48rem !important;
  }
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-slide.swiper-slide-next {
    height: auto;
  }
}
.js-slider_interview .swiper-wrapper {
  transition-timing-function: linear;
  height: 60rem;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-wrapper {
    height: auto;
  }
}
.js-slider_interview .swiper-button-next, .js-slider_interview .swiper-button-prev {
  width: 12.6rem;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-button-next, .js-slider_interview .swiper-button-prev {
    width: 9rem;
  }
}
.js-slider_interview .swiper-button__wrap {
  display: flex;
  justify-content: space-between;
  width: 29.7rem;
  position: absolute;
  bottom: 12rem;
  right: 31.4rem;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-button__wrap {
    position: static;
    bottom: auto;
    right: auto;
    width: 22rem;
    margin: 3rem auto 0;
  }
}

.js-slider_offices {
  width: 117rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .js-slider_offices {
    width: 28.6rem;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  margin-top: 7rem;
  border-left: 1px solid #1b1b1b;
}
@media print, screen and (max-width: 768px) {
  .pagination {
    margin-top: 2rem;
  }
}
.pagination > li {
  border: 1px solid #1b1b1b;
  border-left: none;
}
@media print, screen and (max-width: 768px) {
  .pagination > li {
    line-height: 1.2;
  }
}
.pagination > li.disabled {
  display: none;
}
.pagination > li > a {
  display: block;
  background-color: #FFF;
  width: 100%;
  padding: .5rem 1.7rem;
}
@media print, screen and (max-width: 768px) {
  .pagination > li > a {
    padding: .5rem .8rem;
  }
}
.pagination > li.pageNumbers > a:hover {
  opacity: 1;
}
.pagination > li.first > a, .pagination > li.last > a {
  padding: .5rem 2rem;
}
@media print, screen and (max-width: 768px) {
  .pagination > li.first > a, .pagination > li.last > a {
    padding: .5rem .8rem;
  }
}
.pagination > li.page.active > a {
  background-color: #f77440;
  color: #FFF;
}
.pagination > li.prev {
  position: relative;
  width: 5rem;
  background-color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .pagination > li.prev {
    width: 2.7rem;
  }
}
.pagination > li.prev::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  position: absolute;
  background-color: #1b1b1b;
  height: calc(1.6rem / 2 * tan(60deg));
  width: 1.4rem;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media print, screen and (max-width: 768px) {
  .pagination > li.prev::after {
    height: calc(1rem / 2 * tan(60deg));
    width: .6rem;
  }
}
.pagination > li.next {
  position: relative;
  width: 5rem;
  background-color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .pagination > li.next {
    width: 2.7rem;
  }
}
.pagination > li.next::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  position: absolute;
  background-color: #1b1b1b;
  height: calc(1.6rem / 2 * tan(60deg));
  width: 1.4rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media print, screen and (max-width: 768px) {
  .pagination > li.next::after {
    height: calc(1rem / 2 * tan(60deg));
    width: .6rem;
  }
}
.pagination > li.prev, .pagination > li.next, .pagination > li.page {
  text-align: center;
}

/* ====================================================
page
==================================================== */
/* about */
.message-mv {
  background: url(../../img/staff/about/message/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .message-mv {
    background: url(../../img/staff/about/message/mv_bg-sp.jpg) no-repeat;
  }
}
.message-mv.p-page-mv {
  height: 106.5rem;
}
@media print, screen and (max-width: 768px) {
  .message-mv.p-page-mv {
    height: auto;
  }
}
.message-mv-point {
  display: flex;
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .message-mv-point {
    flex-wrap: wrap;
    margin-top: 2rem;
  }
}
.message-mv-point__title {
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 4rem;
  color: #00c7ff;
  background-color: #FFF;
  font-weight: 500;
  padding: 2rem 0;
  margin-right: 2rem;
  border: 1px solid #00c7ff;
}
@media print, screen and (max-width: 768px) {
  .message-mv-point__title {
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    font-size: 1.6rem;
    display: inline-block;
    padding: .5rem 1rem;
    margin-bottom: 1.5rem;
  }
}
.message-mv-point__item span {
  display: inline-block;
  background-color: #00c7ff;
  color: #FFF;
  font-size: 4rem;
  font-weight: 600;
  left: 0.15;
  margin-bottom: 1rem;
  padding: 0 2rem;
}
@media print, screen and (max-width: 768px) {
  .message-mv-point__item span {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    padding: .5rem 1.5rem;
    margin-bottom: .5rem;
  }
}
.message-mv-point__item + .message-mv-point__item {
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .message-mv-point__item + .message-mv-point__item {
    margin-top: 1rem;
  }
}
.message-step > li {
  padding: 10rem 0;
  margin-top: 9rem;
}

.strength-mv {
  background: url(../../img/staff/about/strength/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .strength-mv {
    background: url(../../img/staff/about/strength/mv_bg-sp.jpg) no-repeat;
  }
}
.strength-step > li {
  padding: 10rem 0;
  margin-top: 9rem;
}
@media print, screen and (max-width: 768px) {
  .strength-step > li {
    padding: 0 0;
    margin-top: 5rem;
  }
}
.strength-step > li.u-ptb0 {
  padding-top: 0;
  padding-bottom: 0;
}

.business-mv {
  background: url(../../img/staff/about/business/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business-mv {
    background: url(../../img/staff/about/business/mv_bg-sp.jpg) no-repeat;
  }
}
.business-step > li {
  padding: 10rem 0;
  margin-top: 9rem;
}
@media print, screen and (max-width: 768px) {
  .business-step > li {
    margin-top: 5rem;
    padding: 0 0 2.7rem 0;
  }
}
@media print, screen and (max-width: 768px) {
  .business-step > li.right-grad-l::before {
    width: 9.6rem;
    height: 84.3rem;
    bottom: 0;
    top: auto;
  }
  .business-step > li.left-grad::after {
    width: 9.6rem;
    height: 84.3rem;
    right: 0;
    left: auto;
    bottom: 0;
    top: auto;
  }
  .business-step > li.left-grad.h1058-sp::after {
    height: 105.8rem;
  }
}
.business-blackarea {
  background: #1b1b1b;
  color: #FFF;
  width: 161.3rem;
  padding: 12rem 10rem 12rem 10rem;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea {
    width: 34.2rem;
    padding: 4rem 2rem 3.5rem 3.2rem;
  }
}
.business-blackarea__wrap {
  width: 119rem;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__wrap {
    width: 100%;
  }
}
.business-blackarea__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__body {
    flex-wrap: wrap;
  }
}
.business-blackarea__list {
  width: 84rem;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__list {
    width: 100%;
  }
}
.business-blackarea__list > li {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__list > li {
    margin-top: 3rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.9;
  }
}
.business-blackarea__list__title {
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__list__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
.business-blackarea__list__title > .num {
  height: 2.6rem;
  margin-right: 1.8rem;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__list__title > .num {
    height: 1.6rem;
    margin-right: 1rem;
  }
}
.business-blackarea__list__title > .num > img {
  height: inherit;
}
.business-blackarea__btn {
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #FFF;
  width: 25rem;
  text-align: center;
  padding: .8rem 0 3rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__btn {
    font-size: .7rem;
    letter-spacing: 0.01em;
    padding: .8rem 2.5rem 2.2rem;
    width: 24rem;
    text-align: left;
    margin: 2.5rem 0 0 auto;
  }
}
.business-blackarea__btn::after {
  content: '';
  display: block;
  width: 20rem;
  height: 1.2rem;
  background: url(../../img/staff/common/icon_arrow.svg) no-repeat;
  position: absolute;
  z-index: 1111;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 1.5rem;
  -webkit-transition: right .3s;
  transition: right .3s;
}
@media print, screen and (max-width: 768px) {
  .business-blackarea__btn::after {
    bottom: 1rem;
  }
}

.business2-mv {
  background: url(../../img/staff/about/business2/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-mv {
    background: url(../../img/staff/about/business2/mv_bg-sp.jpg) no-repeat;
  }
}
.business2-mv .p-page-mv__catch {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .business2-mv .p-page-mv__catch {
    margin-top: 0;
  }
}
.business2-mv .p-page-mv__catch > span {
  background-color: #FFF;
  color: #1b1b1b;
}
@media print, screen and (max-width: 768px) {
  .business2-mv .p-page-mv__catch > span {
    background-color: #1b1b1b;
    color: #FFF;
    font-size: 1.6rem;
  }
}
.business2-needs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .business2-needs--wrap01 {
    width: 24rem;
    margin-left: auto;
    border-left: 1px solid #ffa726;
  }
  .business2-needs--wrap02 {
    width: calc(24rem + 1.5rem);
    margin-left: auto;
    border-left: 1px solid #8fc441;
  }
  .business2-needs--wrap03 {
    width: calc(24rem + 3rem);
    margin-left: auto;
    border-left: 1px solid #66a9e5;
  }
}
.business2-needs__title {
  background: #979797;
  color: #FFF;
  text-align: center;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 8.6rem;
  font-size: 2.2rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__title {
    height: 3rem;
    font-size: 1.3rem;
    width: 100%;
    writing-mode: horizontal-tb;
  }
}
.business2-needs__main {
  width: 116rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__main {
    width: 100%;
    margin-top: 1rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    border-left: 1px solid #9b8bd0;
  }
}
.business2-needs__item {
  display: flex;
  flex-wrap: wrap;
  min-height: 31.3rem;
  padding-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item {
    padding-top: 0;
    min-height: auto;
    width: 24rem;
    margin-top: 2rem;
  }
}
.business2-needs__item.item01 {
  border-bottom: 1px solid #ffa726;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item.item01 {
    border-bottom: none;
    margin-left: auto;
    margin-top: 0;
  }
}
.business2-needs__item.item01 .business2-needs__item__after {
  color: #ffa726;
}
.business2-needs__item.item01 .business2-needs__item__btn {
  background-color: #ffa726;
}
.business2-needs__item.item01 .business2-needs__item__list > li::after {
  color: #ffa726;
}
.business2-needs__item.item02 {
  border-bottom: 1px solid #8fc441;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item.item02 {
    border-bottom: none;
    margin-left: 0;
  }
}
.business2-needs__item.item02 .business2-needs__item__after {
  color: #8fc441;
}
.business2-needs__item.item02 .business2-needs__item__btn {
  background-color: #8fc441;
}
.business2-needs__item.item02 .business2-needs__item__list > li::after {
  color: #8fc441;
}
.business2-needs__item.item03 {
  border-bottom: 1px solid #66a9e5;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item.item03 {
    border-bottom: none;
    margin-left: 0;
  }
}
.business2-needs__item.item03 .business2-needs__item__after {
  color: #66a9e5;
}
.business2-needs__item.item03 .business2-needs__item__btn {
  background-color: #66a9e5;
}
.business2-needs__item.item03 .business2-needs__item__list > li::after {
  color: #66a9e5;
}
.business2-needs__item.item04 {
  border-bottom: 1px solid #9b8bd0;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item.item04 {
    border-bottom: none;
    margin-left: 0;
  }
}
.business2-needs__item.item04 .business2-needs__item__after {
  color: #9b8bd0;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item.item04 .business2-needs__item__before {
    padding-top: 1.3rem;
  }
}
.business2-needs__item.item04 .business2-needs__item__btn {
  background-color: #9b8bd0;
}
.business2-needs__item.item04 .business2-needs__item__list > li::after {
  color: #9b8bd0;
}
.business2-needs__item > dt {
  display: flex;
  align-items: center;
  width: 50%;
  padding-bottom: 6.3rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item > dt {
    width: 100%;
    align-items: flex-start;
    padding: 1.5rem 0 1.3rem 1.5rem;
  }
}
.business2-needs__item > dd {
  width: 50%;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item > dd {
    width: 100%;
  }
}
.business2-needs__item__before, .business2-needs__item__after {
  width: 50%;
  font-weight: 600;
}
.business2-needs__item__before {
  font-size: 2.6rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__before {
    font-size: 1.1rem;
    width: 43%;
  }
}
.business2-needs__item__before::after {
  position: absolute;
  content: "";
  width: 4.5rem;
  height: 2.3rem;
  background: url(../../img/staff/about/business2/needs_icon-arrow.svg) no-repeat;
  background-size: cover;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__before::after {
    display: none;
  }
}
.business2-needs__item__after {
  font-size: 2.5rem;
  padding-left: 4rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__after {
    font-size: 1.1rem;
    padding-left: 0;
    text-align: right;
    width: 57%;
  }
}
.business2-needs__item__after > .num {
  display: block;
  height: 9rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__after > .num {
    height: 4.5rem;
    position: relative;
  }
  .business2-needs__item__after > .num::after {
    position: absolute;
    content: "";
    background: url(../../img/staff/about/business2/needs_icon-arrow.svg) no-repeat;
    background-size: cover;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2.4rem;
    height: 1.2rem;
    left: 0;
  }
}
.business2-needs__item__after > .num > img {
  height: inherit;
}
.business2-needs__item__list {
  font-size: 2.2rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__list {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding-left: 1.3rem;
  }
}
.business2-needs__item__list > li {
  padding-left: 3rem;
  position: relative;
}
.business2-needs__item__list > li + li {
  margin-top: .5rem;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__list > li {
    padding-left: 1.5rem;
  }
}
.business2-needs__item__list > li::after {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.business2-needs__item__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 6.3rem;
  right: 0;
  bottom: 0;
  color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .business2-needs__item__btn {
    width: 100%;
    letter-spacing: 0;
    height: auto;
    padding: .5rem;
    position: static;
    font-size: 1rem;
  }
}
.business2-guide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.business2-guide__list {
  width: 82.6rem;
}
@media print, screen and (max-width: 768px) {
  .business2-guide__list {
    width: 100%;
  }
}
.business2-guide__label {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 0.5rem 1.4rem;
  margin-bottom: 1rem;
}
.business2-03-content .business2-guide__label {
  background-color: #c2ddf5;
}
.business2-guide__item {
  border: 1rem solid #ffa726;
  border-bottom: none;
  padding: 3rem;
  letter-spacing: .01em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .business2-guide__item {
    border-width: .5rem;
    padding: 1.5rem 1.3rem;
    display: block;
  }
}
.business2-guide__item:last-child {
  border-bottom: 1rem solid #ffa726;
}
@media print, screen and (max-width: 768px) {
  .business2-guide__item:last-child {
    border-width: .5rem;
  }
}
.business2-01-content .business2-guide__item {
  border-color: #ffa726;
}
.business2-02-content .business2-guide__item {
  border-color: #8fc441;
  min-height: 25rem;
}
@media print, screen and (max-width: 768px) {
  .business2-02-content .business2-guide__item {
    min-height: auto;
  }
}
.business2-03-content .business2-guide__item {
  border-color: #66a9e5;
}
.business2-04-content .business2-guide__item {
  border-color: #9b8bd0;
  min-height: 20rem;
}
@media print, screen and (max-width: 768px) {
  .business2-04-content .business2-guide__item {
    min-height: auto;
  }
}
.business2-guide__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .business2-guide__title {
    font-size: 1.3rem;
    letter-spacing: .01em;
    margin-bottom: .7rem;
  }
}
.business2-01-content .business2-guide__title {
  color: #ffa726;
}
.business2-02-content .business2-guide__title {
  color: #8fc441;
}
.business2-03-content .business2-guide__title {
  color: #66a9e5;
}
.business2-04-content .business2-guide__title {
  color: #9b8bd0;
}
.business2-effect {
  text-align: center;
  width: 23rem;
}
@media print, screen and (max-width: 768px) {
  .business2-effect {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 6rem;
    background-position: top center;
    background-size: 15rem;
    background-repeat: no-repeat;
  }
  .business2-01-content .business2-effect {
    background-image: url(../../img/staff/about/business2/business01/guide_icon-arrow-sp.svg);
  }
  .business2-02-content .business2-effect {
    background-image: url(../../img/staff/about/business2/business02/guide_icon-arrow-sp.svg);
  }
  .business2-03-content .business2-effect {
    background-image: url(../../img/staff/about/business2/business03/guide_icon-arrow-sp.svg);
  }
  .business2-04-content .business2-effect {
    background-image: url(../../img/staff/about/business2/business04/guide_icon-arrow-sp.svg);
  }
}
.business2-effect > dt {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .business2-effect > dt {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.business2-effect > dd {
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .business2-effect > dd {
    font-size: 1rem;
  }
}
@media print, screen and (max-width: 768px) {
  .business2-effect__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.business2-01-content .business2-effect__list > li {
  margin-bottom: 5rem;
}
@media print, screen and (max-width: 768px) {
  .business2-01-content .business2-effect__list > li {
    margin-bottom: 0;
  }
}
.business2-02-content .business2-effect__list > li {
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .business2-02-content .business2-effect__list > li {
    margin-bottom: 0;
  }
}
.business2-03-content .business2-effect__list > li {
  margin-bottom: 5rem;
}
@media print, screen and (max-width: 768px) {
  .business2-03-content .business2-effect__list > li {
    margin-bottom: 0;
  }
}
.business2-04-content .business2-effect__list > li {
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .business2-04-content .business2-effect__list > li {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 768px) {
  .business2-effect__list > li:first-child {
    width: 100%;
  }
  .business2-effect__list > li:first-child > p {
    margin: auto;
  }
}
.business2-effect__list > li > p {
  border-radius: 50%;
  width: 23rem;
  height: 23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
.business2-01-content .business2-effect__list > li > p {
  background-color: #ffd79d;
}
.business2-02-content .business2-effect__list > li > p {
  background-color: #d2e7b3;
}
.business2-03-content .business2-effect__list > li > p {
  background-color: #c2ddf5;
}
.business2-04-content .business2-effect__list > li > p {
  background-color: #dcd6ef;
}
@media print, screen and (max-width: 768px) {
  .business2-effect__list > li > p {
    width: 11rem;
    height: 11rem;
    margin-bottom: 0;
    margin: 0rem 1rem 0;
  }
}
.business2-effect__list > li > p::after {
  position: absolute;
  content: "";
  width: 15.8rem;
  height: 2.4rem;
  background-size: cover;
  left: -20rem;
}
.business2-01-content .business2-effect__list > li > p::after {
  background: url(../../img/staff/about/business2/business01/guide_icon-arrow.svg) no-repeat;
}
.business2-02-content .business2-effect__list > li > p::after {
  background: url(../../img/staff/about/business2/business02/guide_icon-arrow.svg) no-repeat;
}
.business2-03-content .business2-effect__list > li > p::after {
  background: url(../../img/staff/about/business2/business03/guide_icon-arrow.svg) no-repeat;
}
.business2-04-content .business2-effect__list > li > p::after {
  background: url(../../img/staff/about/business2/business04/guide_icon-arrow.svg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-effect__list > li > p::after {
    display: none;
  }
}
.business2-comment__head {
  margin-top: -20rem;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__head {
    margin-top: 0;
  }
}
.business2-comment__title span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 600;
  color: #FFF;
  background: #1b1b1b;
  padding: 2rem 3.5rem;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__title span {
    font-size: 2.2rem;
    padding: 1rem 1rem;
    margin-top: .5rem;
  }
}
.business2-comment__catch {
  margin-top: 4.8rem;
  letter-spacing: .2em;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__catch {
    margin-top: 1rem;
  }
}
.business2-comment__catch span {
  display: inline-block;
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 600;
  padding: 0 2rem;
  margin-top: 1.5rem;
}
.business2-01-content .business2-comment__catch span {
  background: #ffa726;
}
.business2-02-content .business2-comment__catch span {
  background: #8fc441;
}
.business2-03-content .business2-comment__catch span {
  background: #66a9e5;
}
.business2-04-content .business2-comment__catch span {
  background: #9b8bd0;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__catch span {
    font-size: 1.7rem;
    padding: 0 1rem;
    margin-top: .5rem;
    letter-spacing: 0.2em;
  }
}
.business2-comment__name {
  margin-top: 6rem;
  padding-bottom: 1rem;
  width: 100%;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 1px solid #ffa726;
}
.business2-01-content .business2-comment__name {
  border-color: #ffa726;
}
.business2-02-content .business2-comment__name {
  border-color: #8fc441;
}
.business2-03-content .business2-comment__name {
  border-color: #66a9e5;
}
.business2-04-content .business2-comment__name {
  border-color: #9b8bd0;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__name {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}
.business2-comment__name > span {
  font-size: 3.2rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__name > span {
    font-size: 1.3rem;
  }
}
.business2-comment__sec {
  margin-top: 10rem;
}
.business2-comment__sec.first-item {
  margin-top: -5rem;
}
@media print, screen and (max-width: 768px) {
  .business2-comment__sec.first-item {
    margin-top: 3rem;
  }
}
@media print, screen and (max-width: 768px) {
  .business2-comment__sec {
    margin-top: 3rem;
  }
}

.business2-01-mv {
  background: url(../../img/staff/about/business2/business01/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-01-mv {
    background: url(../../img/staff/about/business2/business01/mv_bg-sp.jpg) no-repeat;
  }
}
.business2-01-mv .p-page-mv__title > span {
  background-color: #ffa726;
}

.business2-02-mv {
  background: url(../../img/staff/about/business2/business02/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-02-mv {
    background: url(../../img/staff/about/business2/business02/mv_bg-sp.jpg) no-repeat;
  }
}
.business2-02-mv .p-page-mv__title > span {
  background-color: #8fc441;
}

.business2-03-mv {
  background: url(../../img/staff/about/business2/business03/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-03-mv {
    background: url(../../img/staff/about/business2/business03/mv_bg-sp.jpg) no-repeat;
  }
}
.business2-03-mv .p-page-mv__title > span {
  background-color: #66a9e5;
}

.business2-04-mv {
  background: url(../../img/staff/about/business2/business04/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .business2-04-mv {
    background: url(../../img/staff/about/business2/business04/mv_bg-sp.jpg) no-repeat;
  }
}
.business2-04-mv .p-page-mv__title > span {
  background-color: #9b8bd0;
}

/* special */
.technology-mv {
  background: url(../../img/staff/special/technology/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .technology-mv {
    background: url(../../img/staff/special/technology/mv_bg-sp.jpg) no-repeat;
  }
}

.special-mv__title.p-page-mv__entitle {
  height: 17.6rem;
}
@media print, screen and (max-width: 768px) {
  .special-mv__title.p-page-mv__entitle {
    height: 12.4rem;
  }
}
.special-mv__title.p-page-mv__entitle picture, .special-mv__title.p-page-mv__entitle img {
  height: inherit;
}
.special__faq {
  margin-top: 4rem;
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .special__faq {
    margin-top: 2rem;
  }
}
.special__faq > dt {
  color: #00c7ff;
  width: 8rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .special__faq > dt {
    width: 5rem;
  }
}
.special__faq > dd {
  width: calc(100% - 8rem);
}
@media print, screen and (max-width: 768px) {
  .special__faq > dd {
    width: calc(100% - 5rem);
  }
}

.crosstalk1-mv {
  background: url(../../img/staff/special/crosstalk1/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .crosstalk1-mv {
    background: url(../../img/staff/special/crosstalk1/mv_bg-sp.jpg) no-repeat;
  }
}

.crosstalk2-mv {
  background: url(../../img/staff/special/crosstalk2/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .crosstalk2-mv {
    background: url(../../img/staff/special/crosstalk2/mv_bg-sp.jpg) no-repeat;
  }
}

.chizai-mv {
  background: url(../../img/staff/special/chizai/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .chizai-mv {
    background: url(../../img/staff/special/chizai/mv_bg-sp.jpg) no-repeat;
  }
}
.chizai-column__list {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .chizai-column__list {
    justify-content: space-between;
    margin-top: 3rem;
  }
}
.chizai-column__item {
  margin-bottom: 3.5rem;
  width: calc(100% / 4 - 3rem);
  margin-right: 4rem;
}
@media print, screen and (max-width: 768px) {
  .chizai-column__item {
    margin-right: 0;
    width: calc(50% - 1rem);
    margin-bottom: 2rem;
  }
}
.chizai-column__item:nth-child(4n) {
  margin-right: 0;
}
.chizai-column__item > a {
  display: block;
}
.chizai-column__item > a > figure {
  position: relative;
}
.chizai-column__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f77440;
  color: #FFF;
  padding: .5rem 1rem;
  font-size: 1.4rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .chizai-column__label {
    font-size: 1.1rem;
    padding: .2rem .5rem;
  }
}
.chizai-column__title {
  font-size: 2rem;
  font-weight: 600;
  color: #f77440;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .chizai-column__title {
    font-size: 1.3rem;
    margin-top: .5rem;
  }
}
.chizai-column__date {
  margin-top: 1rem;
  font-size: 1.6rem;
}
@media print, screen and (max-width: 768px) {
  .chizai-column__date {
    font-size: 1rem;
    margin-top: .5rem;
  }
}

.chizai-column-mv {
  background: url(../../img/staff/special/chizai/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .chizai-column-mv {
    background: url(../../img/staff/special/chizai/mv_bg-sp.jpg) no-repeat;
  }
  .chizai-column-mv.p-page-mv {
    padding-top: 5.5rem;
    background-size: contain;
    padding-bottom: 1.5rem;
  }
  .chizai-column-mv.p-page-mv .special-mv__title.p-page-mv__entitle {
    height: auto;
    width: 26rem;
    margin-bottom: 1rem;
  }
  .chizai-column-mv.p-page-mv .p-page-mv__title span {
    font-size: 1.8rem;
  }
}

.media-mv {
  background: url(../../img/staff/special/media/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .media-mv {
    background: url(../../img/staff/special/media/mv_bg-sp.jpg) no-repeat;
  }
}
.media__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.media__list > li {
  text-align: center;
  width: 33.3%;
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .media__list > li {
    width: 100%;
    margin-top: 3rem;
  }
  .media__list > li:first-child {
    margin-top: 0;
  }
}
.media__list > li > figcaption {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .media__list > li > figcaption {
    font-size: 1.2rem;
  }
}
.media__list > li > figure {
  height: 56.4rem;
}
@media print, screen and (max-width: 768px) {
  .media__list > li > figure {
    height: 35rem;
  }
}
.media__list > li > figure > img {
  height: inherit;
}
.media__list__btn {
  cursor: pointer;
  width: 12.6rem;
  margin: 3rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .media__list__btn {
    width: 7rem;
    margin: 2rem auto 0;
  }
}
.media__focus {
  display: none;
  width: 68.5rem;
}
@media print, screen and (max-width: 768px) {
  .media__focus {
    width: 32rem;
  }
}
.media .featherlight:last-of-type {
  background-color: rgba(255, 255, 255, 0.8);
}
.media .featherlight .featherlight-content {
  max-height: 88%;
  background-color: transparent;
  padding: 0 2rem 0;
  border-bottom: 7rem solid transparent;
}
@media print, screen and (max-width: 768px) {
  .media .featherlight .featherlight-content {
    padding: 0;
  }
}
.media .featherlight .featherlight-close-icon {
  bottom: 6rem;
  width: 16rem;
  left: 0;
  margin: auto;
  height: 3.6rem;
  top: auto;
  background-image: url(../../img/staff/special/media/btn-close.svg);
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .media .featherlight .featherlight-close-icon {
    height: 3rem;
    width: 11rem;
    bottom: 11rem;
  }
}

/* introduction */
.introduction1-mv {
  background: url(../../img/staff/introduction/interview1/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .introduction1-mv {
    background: url(../../img/staff/introduction/interview1/mv_bg-sp.jpg) no-repeat;
  }
}

.introduction2-mv {
  background: url(../../img/staff/introduction/interview2/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .introduction2-mv {
    background: url(../../img/staff/introduction/interview2/mv_bg-sp.jpg) no-repeat;
  }
}

.works-mv {
  background: url(../../img/staff/introduction/works/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .works-mv {
    background: url(../../img/staff/introduction/works/mv_bg-sp.jpg) no-repeat;
  }
}
.works-linkbox {
  margin-top: 1.5rem;
}
.works-linkbox.w920 {
  width: 92rem;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox.w920 {
    width: 100%;
  }
}
.works-linkbox.w340 {
  width: 34rem;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox.w340 {
    width: 100%;
  }
}
.works-linkbox > dt {
  background-color: #00c7ff;
  color: #FFF;
  padding: 1rem 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dt {
    font-size: 1.3rem;
  }
}
.works-linkbox > dt > span {
  letter-spacing: 0;
}
.works-linkbox > dd {
  padding: 4rem;
  background-color: #f0f0f0;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dd {
    padding: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dd > a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dd > a.w100per-sp {
    width: 100%;
  }
}
.works-linkbox > dd > a > figure {
  width: 12rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dd > a > figure {
    width: 5rem;
    margin: 0;
    margin-right: .5rem;
  }
}
.works-linkbox > dd > a > figcaption {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .works-linkbox > dd > a > figcaption {
    font-size: .9rem;
    margin-top: 0;
    letter-spacing: 0.01em;
  }
}

.introduction-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .introduction-links {
    justify-content: space-between;
  }
}
.introduction-links > li {
  margin: 0 4rem;
}
@media print, screen and (max-width: 768px) {
  .introduction-links > li {
    margin: 0;
  }
}
.introduction-links > li > a {
  display: block;
  text-align: center;
}
.introduction-links > li > a > figure {
  height: 11.8rem;
}
@media print, screen and (max-width: 768px) {
  .introduction-links > li > a > figure {
    height: 4rem;
  }
}
.introduction-links > li > a > figure > img {
  height: inherit;
}
.introduction-links > li > a > figcaption {
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  padding: 0.8rem 2rem;
  width: 17rem;
}
@media print, screen and (max-width: 768px) {
  .introduction-links > li > a > figcaption {
    font-size: .9rem;
    width: 8.5rem;
    margin-top: 1rem;
    padding: 0.8rem 0.5rem;
    letter-spacing: 0;
  }
}
.introduction-more {
  padding-bottom: 8.8rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .introduction-more {
    margin-top: 6rem;
    padding-bottom: 0;
  }
}
.introduction-more::after {
  position: absolute;
  width: 90%;
  height: 23rem;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .introduction-more::after {
    display: none;
  }
}
.introduction-more__title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 1.6rem;
}
@media print, screen and (max-width: 768px) {
  .introduction-more__title {
    font-size: 1.5rem;
  }
}
.introduction-more__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 49.2rem;
  height: 1.5rem;
  content: '';
  background-image: url(../../img/staff/introduction/icon_next_title.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .introduction-more__title::after {
    width: 27rem;
    height: .9rem;
    background-size: 100% auto;
  }
}
.introduction-more__list {
  display: flex;
  justify-content: space-between;
  width: 99.6rem;
  margin: 6rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .introduction-more__list {
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem 0 0;
  }
}
.introduction-more__list > li {
  width: 30rem;
}
@media print, screen and (max-width: 768px) {
  .introduction-more__list > li {
    margin-top: 2rem;
    width: calc(50% - 1rem);
  }
}

@media print, screen and (max-width: 768px) {
  .interview__item.c-sidebg.left-black-s-sp::after, .interview__item.c-sidebg.left-black-s-sp::before, .interview__item.c-sidebg.right-grad-l-sp::after, .interview__item.c-sidebg.right-grad-l-sp::before {
    height: 57rem;
  }
}
.interview__item:nth-child(2n) .interview__num {
  text-align: right;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .interview__item:nth-child(2n) .interview__num {
    text-align: left;
  }
}
.interview__item:nth-child(2n) .interview__title {
  justify-content: flex-end;
}
@media print, screen and (max-width: 768px) {
  .interview__item:nth-child(2n) .interview__title {
    justify-content: flex-start;
  }
}
.interview__item:nth-child(2n) .interview__catch {
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .interview__item:nth-child(2n) .interview__catch {
    text-align: left;
  }
}
.interview__item:nth-child(2n) .interview__catch .interview__catch__wrap {
  right: 0;
}
.interview__item:nth-child(2n) .interview__prof {
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .interview__item:nth-child(2n) .interview__prof {
    text-align: left;
  }
}
.interview__item:nth-child(2n) .interview__prof .person {
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .interview__item:nth-child(2n) .interview__prof .person {
    margin-left: 0;
  }
}
.interview__num {
  height: 10rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .interview__num {
    height: 5rem;
  }
}
.interview__num > img {
  height: inherit;
}
.interview__title {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.interview__title > .label {
  width: 4.8rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .interview__title > .label {
    width: 2.4rem;
  }
}
.interview__title > .text {
  font-size: 4rem;
  color: #FFF;
  font-weight: 600;
  display: inline-block;
  background-color: #1b1b1b;
  padding: .8rem 2rem;
  letter-spacing: 0.01em;
}
@media print, screen and (max-width: 768px) {
  .interview__title > .text {
    font-size: 2rem;
    padding: .4rem 1rem;
  }
}
.interview__catch {
  height: 23.7rem;
  margin: 7.3rem 0 0;
}
@media print, screen and (max-width: 768px) {
  .interview__catch {
    height: auto;
    margin: 2rem 0 0;
  }
}
.interview__catch__wrap {
  position: absolute;
  top: 30rem;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .interview__catch__wrap {
    position: static;
  }
}
.interview__catch__wrap > span {
  padding: 0 2rem;
  font-size: 4rem;
  color: #FFF;
  font-weight: 600;
  background-color: #00c7ff;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: .38em;
}
@media print, screen and (max-width: 768px) {
  .interview__catch__wrap > span {
    font-size: 1.6rem;
    padding: 0 1rem;
    margin-bottom: .5rem;
  }
}
.interview__prof {
  margin-top: 4rem;
}
.interview__prof > .group {
  font-size: 2.2rem;
}
@media print, screen and (max-width: 768px) {
  .interview__prof > .group {
    font-size: 1.3rem;
  }
}
.interview__prof > .person {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 34rem;
  border-bottom: 1px solid #00c7ff;
}
@media print, screen and (max-width: 768px) {
  .interview__prof > .person {
    width: 20rem;
    margin-top: 2rem;
  }
}
.interview__prof > .person > .name {
  font-size: 3.2rem;
}
@media print, screen and (max-width: 768px) {
  .interview__prof > .person > .name {
    font-size: 1.8rem;
  }
}
.interview__prof > .person > .year {
  font-size: 2.2rem;
}
@media print, screen and (max-width: 768px) {
  .interview__prof > .person > .year {
    font-size: 1.3rem;
  }
}

/* offices */
.offices-mv {
  background: url(../../img/staff/offices/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .offices-mv {
    background: url(../../img/staff/offices/mv_bg-sp.jpg) no-repeat;
  }
}
.offices__slider {
  position: relative;
}
.offices__slider .swiper-button {
  position: absolute;
  top: 8rem;
  z-index: 2;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .offices__slider .swiper-button {
    top: 4rem;
  }
}
.offices__slider .swiper-button.prev {
  left: 0;
  width: 3.2rem;
}
@media print, screen and (max-width: 768px) {
  .offices__slider .swiper-button.prev {
    width: 1.5rem;
    left: 1rem;
  }
}
.offices__slider .swiper-button.next {
  right: 0;
  width: 3.2rem;
}
@media print, screen and (max-width: 768px) {
  .offices__slider .swiper-button.next {
    width: 1.5rem;
    right: 1rem;
  }
}
.offices-field {
  margin-top: 10rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .offices-field {
    margin-top: 7rem;
  }
}
.offices-field.part02::after {
  border: solid 3px #979797;
}
.offices-field::after {
  content: '';
  border: solid 3px #00c7ff;
  background-color: #FFF;
  width: calc(100% - 5.5rem);
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .offices-field::after {
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.offices-field__wrap {
  padding: 5rem 4rem 5rem 0;
}
@media print, screen and (max-width: 768px) {
  .offices-field__wrap {
    padding: 3rem .5rem 1rem;
  }
}
.offices-field__title {
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 768px) {
  .offices-field__title {
    position: absolute;
    left: 0;
    top: -2rem;
  }
}
.part02 .offices-field__title {
  background-color: #979797;
}
.offices-field__list {
  width: 102rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .offices-field__list {
    width: 100%;
  }
}
.offices-field__list > li {
  font-size: 2.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 2rem 3rem 2rem;
}
@media print, screen and (max-width: 768px) {
  .offices-field__list > li {
    padding: 1rem 0;
    font-size: 1.3rem;
  }
}
@media print, screen and (max-width: 768px) {
  .offices-field__list > li.u-w50per > p {
    width: auto;
  }
}
@media print, screen and (max-width: 768px) {
  .offices-field__list > li > p {
    letter-spacing: 0.01em;
    width: 28.4rem;
  }
}
.offices-field__list > li > .num {
  height: 4rem;
  margin-right: 1.5rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .offices-field__list > li > .num {
    height: 2rem;
    margin-right: 1rem;
  }
}
.offices-field__list > li > .num > img {
  height: inherit;
}
.offices-commont {
  margin-top: 10rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .offices-commont {
    margin-top: 4rem;
  }
}
.offices-commont::after {
  content: '';
  border: solid 3px #00c7ff;
  background-color: #FFF;
  width: calc(100% - 5.5rem);
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .offices-commont::after {
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.offices-commont__wrap {
  padding: 5rem 9rem 5rem 0;
}
@media print, screen and (max-width: 768px) {
  .offices-commont__wrap {
    padding: 2rem 4rem;
  }
}
.offices-commont__wrap > figure {
  width: 44rem;
}
@media print, screen and (max-width: 768px) {
  .offices-commont__wrap > figure {
    width: 100%;
  }
}
.offices-commont__wrap > figcaption {
  width: 70rem;
}
@media print, screen and (max-width: 768px) {
  .offices-commont__wrap > figcaption {
    width: 100%;
  }
}
.offices-commont__title {
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.offices-commont__list {
  width: 102rem;
  letter-spacing: 0.1em;
  position: relative;
}
.offices-commont__list > li {
  font-size: 2.2rem;
  font-weight: 600;
  padding: 2rem 3rem 2rem;
}
.offices-commont__list > li > .num {
  height: 5rem;
  margin-right: 1.5rem;
}
.offices-commont__list > li > .num > img {
  height: inherit;
}

/* environment */
.environment-mv {
  background: url(../../img/staff/environment/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .environment-mv {
    background: url(../../img/staff/environment/mv_bg-sp.jpg) no-repeat;
  }
}

/* recruit */
.information-mv {
  background: url(../../img/staff/recruit/information/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .information-mv {
    background: url(../../img/staff/recruit/information/mv_bg-sp.jpg) no-repeat;
  }
}

.career-mv {
  background: url(../../img/staff/recruit/environment/mv_bg.jpg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .career-mv {
    background: url(../../img/staff/recruit/environment/mv_bg-sp.jpg) no-repeat;
  }
}

.topic-area p {
  margin-top: 1rem;
}
.topic-area dl {
  margin-top: 1rem;
}
.topic-area dl dt {
  font-weight: bold;
}
.topic-area dl dd {
  margin-left: 1em;
}
.topic-message {
  padding: 6rem;
  border: #00c7ff 1px solid;
}
@media print, screen and (max-width: 768px) {
  .topic-message {
    padding: 2rem 2rem;
  }
}

/* ====================================================
component
==================================================== */
.c-inner-1300 {
  width: 130rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1300 {
    width: auto;
  }
}

.c-inner-970 {
  width: 97rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-970 {
    width: auto;
  }
}

@media print, screen and (max-width: 768px) {
  .c-inner-sp {
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.c-btn {
  font-size: 2rem;
  font-weight: 600;
  background-color: #1b1b1b;
  color: #FFF;
  text-align: center;
  padding: 2rem 0 4rem;
  position: relative;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .c-btn {
    padding: 1rem 1.5rem 2rem;
    letter-spacing: 0;
    text-align: left;
  }
}
.c-btn.w350 {
  width: 35rem;
}
.c-btn.w450 {
  width: 45rem;
}
@media print, screen and (max-width: 768px) {
  .c-btn.w220-sp {
    width: 22rem;
  }
  .c-btn.w220-sp::after {
    width: 19rem;
    height: 0.9rem;
  }
}
.c-btn::after {
  content: '';
  display: block;
  width: 85%;
  height: 1.25rem;
  background-image: url(../../img/staff/common/btn_arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1111;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 2.5rem;
  -webkit-transition: right .3s;
  transition: right .3s;
  background-size: auto 100%;
  background-position: right center;
}
@media print, screen and (max-width: 768px) {
  .c-btn::after {
    bottom: 1rem;
  }
}
.business2-01-content .c-btn::after {
  background-image: url(../../img/staff/common/btn_arrow-orange.svg);
}

.c-slanting-btn {
  font-size: 3rem;
  font-weight: 600;
  background-color: #00c7ff;
  color: #FFF;
  text-align: center;
  padding: 1.2rem 2rem 1.2rem 3rem;
  position: relative;
  display: inline-block;
  margin-right: 5.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-slanting-btn {
    padding: 1rem 2rem 1rem 1.5rem;
    letter-spacing: 0;
    text-align: left;
    font-size: 1.5rem;
    height: 4.6rem;
  }
}
.c-slanting-btn::after {
  background-color: #00c7ff;
  height: 7.5rem;
  width: 5.4rem;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  display: block;
  position: absolute;
  right: -5.39rem;
  content: "";
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .c-slanting-btn::after {
    width: 3.4rem;
    right: -3.38rem;
    height: 4.6rem;
  }
}

.c-cover {
  z-index: 2;
  position: relative;
}

.c-cover-reverse {
  z-index: -1;
  position: relative;
}

.c-blackcover {
  position: relative;
}
.c-blackcover::after {
  position: absolute;
  width: 90%;
  height: 38.5rem;
  background: #1b1b1b;
  content: '';
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .c-blackcover::after {
    height: 37.5rem;
    width: 100%;
  }
}
.c-blackcover.h62::after {
  height: 62rem;
}
@media print, screen and (max-width: 768px) {
  .c-blackcover.h32-sp::after {
    height: 32rem;
  }
  .c-blackcover.h37-sp::after {
    height: 37rem;
  }
  .c-blackcover.h100per-sp::after {
    height: 100%;
  }
}
.c-blackcover.posi-left::after {
  right: auto;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .c-blackcover.posi-left-sp::after {
    left: auto;
    right: 0;
  }
}

@-webkit-keyframes btn-arrow {
  0% {
    background-position: right 8.8rem top;
  }
  40% {
    background-position: right top;
  }
  100% {
    background-position: right top;
  }
}
@keyframes btn-arrow {
  0% {
    background-position: right 8.8rem top;
  }
  40% {
    background-position: right top;
  }
  100% {
    background-position: right top;
  }
}
.c-longarrow-wrap {
  opacity: 1 !important;
}
.c-longarrow-wrap:hover .c-longarrow::after {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: btn-arrow;
  animation-name: btn-arrow;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.c-longarrow {
  display: block;
  position: relative;
  height: 1.2rem;
  padding: 1.5rem 0;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .c-longarrow {
    height: .7rem;
    padding: 1rem 0;
  }
}
.c-longarrow > img {
  height: inherit;
  vertical-align: text-top;
}
@media print, screen and (max-width: 768px) {
  .c-longarrow.w80-sp::after {
    width: 8rem;
    height: .8rem;
    bottom: 0.5rem;
  }
}
@media print, screen and (max-width: 768px) {
  .c-longarrow.w135-sp::after {
    width: 13.5rem;
    height: .6rem;
    bottom: 0.5rem;
  }
}
.c-longarrow::after {
  content: '';
  display: block;
  width: 27rem;
  height: 1.2rem;
  background: url(../../img/staff/common/icon_arrow.svg) no-repeat;
  position: absolute;
  z-index: 1111;
  right: 0;
  bottom: 0.8rem;
  -webkit-transition: right .3s;
  transition: right .3s;
}
@media print, screen and (max-width: 768px) {
  .c-longarrow::after {
    background: url(../../img/staff/common/icon_arrow_sp.svg) no-repeat;
    background-size: auto 100%;
    background-position: center right;
  }
}
.c-longarrow:hover::after {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: btn-arrow;
  animation-name: btn-arrow;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.c-bigimg-wrap .c-bigimg {
  cursor: pointer;
  overflow: hidden;
  max-width: 63rem;
  width: 100%;
}
.c-bigimg-wrap .c-bigimg img {
  height: auto;
  transition: transform .6s ease;
}
.c-bigimg-wrap:hover .c-bigimg img {
  transform: scale(1.1);
}

.c-sign {
  padding-left: 2.7rem;
  background: url(../../img/staff/common/icon-triangle.svg) no-repeat;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: left top 1.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-sign {
    background-size: .8rem;
    background-position: left top .6rem;
    padding-left: 1.5rem;
  }
}

.c-step__title {
  font-size: 3rem;
  display: flex;
  font-weight: 600;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .c-step__title {
    font-size: 1.5rem;
  }
}
.c-step__title > .num {
  height: 6rem;
  margin-right: 2rem;
  display: inline-block;
  margin-top: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .c-step__title > .num {
    height: 3rem;
    margin-top: 1rem;
    margin-right: 1.5rem;
  }
}
.c-step__title > .num > img {
  height: inherit;
}

.c-business__title {
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .c-business__title {
    font-size: 1.7rem;
  }
}
.c-business__title > .icon {
  width: 9rem;
  margin-right: 2rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .c-business__title > .icon {
    width: 5rem;
    margin-right: 1rem;
  }
}
.c-business__title > .icon > img {
  height: inherit;
}

.c-iconlinks__title {
  background: #1b1b1b;
  font-size: 4rem;
  font-weight: 600;
  color: #FFF;
  padding: 4rem 4rem 4rem 30rem;
  text-align: right;
  margin-top: -7rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__title {
    padding: 2rem 2rem 2rem 3rem;
    font-size: 2rem;
    margin-top: 2.5rem;
  }
}
.c-iconlinks__title > span {
  border-bottom: 2px solid #00c7ff;
  padding-bottom: .5rem;
  display: inline-block;
}
.c-iconlinks__title.c-iconlinks-orange > span {
  border-color: #f77440;
}
.c-iconlinks__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3rem;
  }
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list.three-clumn > li {
    width: 33.3%;
  }
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list.three-clumn > li > a {
    display: block;
    text-align: center;
  }
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list.three-clumn > li > a > figure {
    margin: 0 auto .5rem;
  }
}
.c-iconlinks__list > li {
  margin: 0 5rem;
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list > li {
    width: 50%;
    margin: 0;
  }
}
.c-iconlinks__list > li > a {
  display: block;
  text-align: center;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: .9rem;
    letter-spacing: 0.01em;
    text-align: left;
  }
}
.c-iconlinks__list > li > a > figure {
  width: 16rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .c-iconlinks__list > li > a > figure {
    width: 6rem;
    margin: 0 1rem 0 0;
  }
}

/* ====================================================
title
==================================================== */
.c-stickytitle {
  background-color: #1b1b1b;
  color: #FFF;
  font-size: 4.4rem;
  display: inline-block;
  min-width: 36.3rem;
  margin-left: 30rem;
  position: relative;
  padding: .5rem 10rem .5rem 0;
}
@media print, screen and (max-width: 768px) {
  .c-stickytitle {
    padding: .5rem 1rem .5rem 3rem;
    min-width: 26rem;
    margin-left: 0;
    font-size: 2.2rem;
  }
}
.c-stickytitle::after {
  position: absolute;
  top: 0;
  width: 36.3rem;
  left: -36.3rem;
  background-color: #1b1b1b;
  height: 100%;
  content: '';
}
@media print, screen and (max-width: 768px) {
  .c-stickytitle::after {
    display: none;
  }
}

.c-sticky-steptitle {
  background-color: #1b1b1b;
  color: #FFF;
  font-size: 4rem;
  display: inline-block;
  min-width: 64rem;
  margin-left: 30rem;
  position: relative;
  padding: 4rem 10rem 4rem 0;
}
@media print, screen and (max-width: 768px) {
  .c-sticky-steptitle {
    margin-left: 0;
    padding: 1.5rem 1rem 1.5rem 2rem;
    font-size: 1.8rem;
    min-width: auto;
    width: 35.5rem;
  }
}
.c-sticky-steptitle__wrap {
  display: flex;
  align-items: flex-start;
}
.c-sticky-steptitle__wrap > .num {
  height: 6rem;
  margin-right: 3rem;
  display: inline-block;
  margin-top: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .c-sticky-steptitle__wrap > .num {
    height: 2.5rem;
    margin-right: 1.5rem;
    margin-top: 0;
  }
}
.c-sticky-steptitle__wrap > .num > img {
  height: inherit;
}
.c-sticky-steptitle__wrap > .line {
  border-bottom: 1px solid #00c7ff;
  display: inline-block;
  padding-bottom: 1rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .c-sticky-steptitle__wrap > .line {
    padding-bottom: .3rem;
  }
}
.c-sticky-steptitle::after {
  position: absolute;
  top: 0;
  width: 36.3rem;
  left: -36.3rem;
  background-color: #1b1b1b;
  height: 100%;
  content: '';
}

.c-signtitle {
  border-bottom: 1px solid #00c7ff;
  font-size: 3rem;
  padding-left: 2.7rem;
  background: url(../../img/staff/common/icon-triangle.svg) no-repeat;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: left top .6em;
  padding-bottom: 1.5rem;
  font-weight: 600;
}
.c-signtitle.no-line {
  border-bottom: none;
}
@media print, screen and (max-width: 768px) {
  .c-signtitle {
    font-size: 1.6rem;
    background-size: .9rem;
    padding-left: 1.5rem;
    padding-bottom: .5rem;
  }
}

.c-signpoint {
  padding-left: 2.7rem;
  font-weight: 600;
  background-image: url(../../img/staff/common/icon-triangle.svg);
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: left top .5em;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-signpoint {
    font-size: 1.4rem;
    background-size: 1rem;
    padding-left: 1.8rem;
  }
}
.c-signpoint.c-signpoint-orange {
  background-image: url(../../img/staff/common/icon-triangle-orange.svg);
}

.c-linetitle {
  border-bottom: 1px solid #00c7ff;
  font-size: 3rem;
  padding-bottom: 1rem;
  font-weight: 600;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .c-linetitle {
    font-size: 1.6rem;
    display: block;
  }
}

.c-cardtitle {
  background: #00c7ff;
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 600;
  padding: .5rem 2.5rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .c-cardtitle {
    font-size: 1.3rem;
    padding: .5rem 1rem;
  }
}

.c-faq-title {
  border-bottom: 1px solid #00c7ff;
  font-size: 3rem;
  padding-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .c-faq-title {
    font-size: 1.5rem;
    padding-bottom: .8rem;
  }
}
.c-faq-title > .q {
  width: 6rem;
  padding-right: 1.2rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .c-faq-title > .q {
    width: 4rem;
    padding-right: 1rem;
  }
}

/* ====================================================
background
==================================================== */
.c-sidebg {
  position: relative;
}
.c-sidebg.left-grad::after {
  position: absolute;
  width: 52rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  z-index: 1;
}
.c-sidebg.right-black::before {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
.c-sidebg.right-grad-l::before {
  position: absolute;
  width: 52rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
.c-sidebg.right-grad-s::before {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
.c-sidebg.left-grad-s::after {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
.c-sidebg.left-black-s::after {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
.c-sidebg.left-black-l::after {
  position: absolute;
  width: 52rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
.c-sidebg.right-black-s::before {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
.c-sidebg.left-grad-orange-s::after {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-image: linear-gradient(180deg, #ffb369, #ff7b40);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
.c-sidebg.right-grad-orange-s::before {
  position: absolute;
  width: 6rem;
  height: 100%;
  background-image: linear-gradient(180deg, #ffb369, #ff7b40);
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .c-sidebg.right-grad-l-sp::before {
    position: absolute;
    width: 9.5rem;
    height: 100%;
    background-image: linear-gradient(180deg, #5adeff, #00c6ff);
    content: '';
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-sidebg.right-grad-s-sp::before {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-image: linear-gradient(180deg, #5adeff, #00c6ff);
    content: '';
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-sidebg.left-black-s-sp::after {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-color: #1b1b1b;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-sidebg.left-grad-s-sp::after {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-image: linear-gradient(180deg, #5adeff, #00c6ff);
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-sidebg.right-black-s-sp::before {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-color: #1b1b1b;
    content: '';
    top: 0;
    right: 0;
    left: auto;
    z-index: 1;
  }
  .c-sidebg.left-grad-orange-s-sp::after {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-image: linear-gradient(180deg, #ffb369, #ff7b40);
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-sidebg.right-grad-orange-s-sp::before {
    position: absolute;
    width: 1.2rem;
    height: 100%;
    background-image: linear-gradient(180deg, #ffb369, #ff7b40);
    content: '';
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-sidebg.side-none::before {
    display: none;
  }
  .c-sidebg.side-none::after {
    display: none;
  }
}

/* ====================================================
table
==================================================== */
th, td {
  background-color: #FFF;
}

.c-table th, .c-table td {
  border: 1px solid #616161;
}
.c-table th.border-wh, .c-table td.border-wh {
  border: 1px solid #FFF;
}
.c-table th.border-gra-b, .c-table td.border-gra-b {
  border-bottom: 1px solid #616161;
}
@media print, screen and (max-width: 768px) {
  .c-table {
    letter-spacing: 0.12em;
  }
}
.c-table .bg-blue {
  background-color: #a6ebff;
}

/* ====================================================
crosstalk
==================================================== */
.c-crosstalk__head {
  padding-top: 11rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__head {
    padding-top: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__head__wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.c-crosstalk__head__wrap::after {
  width: 85%;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__head__wrap::after {
    height: 100%;
  }
}
.c-crosstalk__catch {
  width: 114rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__catch {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.c-crosstalk__staff {
  position: relative;
}
.c-crosstalk__staff__title {
  background: #00c7ff;
  color: #FFF;
  font-size: 3rem;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  padding: 2rem .5rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__title {
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    position: static;
    font-size: 1.5rem;
    padding: .5rem 1rem;
  }
}
.c-crosstalk__staff__list {
  display: flex;
  justify-content: space-between;
  width: 88rem;
  margin: 8rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list {
    flex-wrap: wrap;
    width: 100%;
    margin: 2rem auto 0;
  }
}
.c-crosstalk__staff__list > li {
  width: 25.5rem;
  font-size: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
    padding-bottom: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li figure {
    width: 16rem;
  }
}
.c-crosstalk__staff__list > li > figcaption {
  font-weight: 500;
  margin-top: 2rem;
  padding-bottom: 8rem;
  color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li > figcaption {
    margin-top: 0;
    width: 13.5rem;
    padding-bottom: 0;
  }
}
.c-crosstalk__staff__list > li > figcaption > .person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li > figcaption > .person {
    flex-wrap: wrap;
    margin-bottom: .5rem;
  }
}
.c-crosstalk__staff__list > li > figcaption > .person > .name {
  font-size: 2.3rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li > figcaption > .person > .name {
    display: block;
    font-size: 1.2rem;
    width: 100%;
  }
}
.c-crosstalk__staff__list > li > figcaption .tag {
  background-color: #FFF;
  color: #1b1b1b;
  font-size: 1.5rem;
  display: inline-block;
  padding: .5rem 1rem;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-crosstalk__staff__list > li > figcaption .tag {
    font-size: 1rem;
    padding: .3rem .5rem;
    margin-top: .5rem;
  }
}

/* ====================================================
project
==================================================== */
@-webkit-keyframes headermore {
  0% {
    bottom: 60rem;
  }
  50% {
    bottom: 62rem;
  }
  100% {
    bottom: 60rem;
  }
}
@keyframes headermore {
  0% {
    bottom: 60rem;
  }
  50% {
    bottom: 62rem;
  }
  100% {
    bottom: 60rem;
  }
}
/* -----------------------------------------------
header
----------------------------------------------- */
.p-acc__anchor {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-acc__anchor:hover:hover > a, .p-acc__anchor:focus-within:hover > a {
    opacity: .8;
  }
  .p-acc__anchor:hover .p-acc__submenu, .p-acc__anchor:focus-within .p-acc__submenu {
    opacity: 1;
    display: block;
  }
}
.p-acc__anchor > a {
  margin-left: 0;
}
.p-acc__anchor > a:hover {
  opacity: 1;
}
.p-acc__btn {
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-acc__btn::after {
    position: absolute;
    background-image: url(../../img/staff/common/icon-plus-w.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.9rem;
    height: 1.9rem;
    top: 0;
    right: 1rem;
    content: '';
    bottom: 0;
    margin: auto;
  }
  .p-acc__btn.is_open::after {
    background-image: url(../../img/staff/common/icon-minus-w.svg);
  }
}
.p-acc__submenu {
  background-color: #ccdef7;
  display: none;
  opacity: 0;
  width: 100%;
  visibility: visible;
  position: absolute;
  font-style: italic;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 3;
}
@media print, screen and (max-width: 768px) {
  .p-acc__submenu {
    top: 5.4rem;
    opacity: 1;
  }
}
.p-acc__submenu > li > a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 1.5rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-acc__submenu > li > a {
    font-size: 1.3rem;
    padding: 1.2rem 1rem;
  }
}
.p-acc__submenu > li + li {
  border-top: 1px solid #FFF;
}

.p-header {
  height: 16rem;
}
@media print, screen and (max-width: 768px) {
  .p-header {
    height: 8rem;
  }
}
.p-header.is_open .p-header__inner {
  background-color: #FFF;
  z-index: 11;
  position: relative;
}
.p-header__inner {
  display: flex;
  width: 100%;
  padding: 4.2rem 5.2rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__inner {
    padding: 1.4rem 1rem 1rem;
  }
}
.p-header__logo {
  width: 37.6rem;
  display: block;
  z-index: 11;
}
@media print, screen and (max-width: 768px) {
  .p-header__logo {
    width: 16.7rem;
  }
}
.p-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 11;
}
.p-header__btn {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.8rem 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  margin-left: 1rem;
  font-style: italic;
  width: 23rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-header__btn > .en {
  height: 1.3rem;
  display: inline-block;
  padding-left: 1rem;
}
.p-header__btn > .en > img {
  height: inherit;
}
.p-header__btn .ja {
  width: 100%;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.06em;
}
.p-header__btn.intern {
  width: 24rem;
}
.p-header__cta {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta {
    display: none;
  }
}
.p-header__cta-sp {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta-sp {
    display: block;
    width: 18rem;
  }
  .p-header__cta-sp .p-header__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    color: #FFF;
    text-align: center;
    padding: 1rem .8rem;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .p-header__cta-sp .p-header__btn .en {
    height: 1rem;
    display: inline-block;
    margin-left: 1rem;
    padding-left: 0;
  }
  .p-header__cta-sp .p-header__btn .en > img {
    height: inherit;
    vertical-align: baseline;
  }
  .p-header__cta-sp .p-header__btn .ja {
    width: 100%;
    display: block;
    font-size: 1rem;
    text-align: left;
    letter-spacing: 0.06em;
  }
}
.p-header__nav {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  padding-top: 19.6rem;
  padding-bottom: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav {
    padding-top: 9rem;
    overflow-y: auto;
    padding-bottom: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__item {
    width: 100%;
  }
}
.p-header__nav__title {
  height: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__title {
    height: 1.5rem;
  }
}
.p-header__nav__title img, .p-header__nav__title picture {
  height: inherit;
}
.p-header__nav__title.two-line {
  height: 7.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__title.two-line {
    height: 1.5rem;
  }
}
.p-header__nav__title.two-line img, .p-header__nav__title.two-line picture {
  height: inherit;
}
.p-header__nav__wrap {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.01em;
}
@media print, screen and (max-width: 1200px) {
  .p-header__nav__wrap {
    width: 90%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1b1b1b;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl {
    margin-top: 1rem;
  }
}
.p-header__nav__child > dl > dt {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 2rem;
  background-size: 1.5rem;
  background-position: left top 1.3rem;
  padding-left: 2.5rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dt {
    font-size: 1.3rem;
    background-size: 1rem;
    background-position: left top 0.6rem;
    padding-left: 1.8rem;
    margin-top: .8rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dt::after {
    position: absolute;
    background-image: url(../../img/staff/common/icon-plus.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.9rem;
    height: 1.9rem;
    top: 0;
    right: 0;
    content: '';
  }
  .p-header__nav__child > dl > dt.is_open::after {
    background-image: url(../../img/staff/common/icon-minus.svg);
  }
}
.p-header__nav__child > dl > dd {
  display: block;
  margin-left: 1em;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd {
    margin-left: 0;
    display: none;
    margin-left: 1.2rem;
  }
}
.p-header__nav__child > dl > dd > ul > li {
  margin-top: 1rem;
}
.p-header__nav__child > dl > dd > ul > li > a {
  display: block;
  font-size: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li > a {
    font-size: 1.3rem;
  }
}
.p-header__nav__child > dl > dd > ul > li > ul {
  margin-left: 1em;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li > ul {
    margin-left: 0;
  }
}
.p-header__nav__child > dl > dd > ul > li > ul > li {
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li > ul > li {
    margin-left: 1.2rem;
  }
}
.p-header__nav__child > dl > dd > ul > li > ul > li > a {
  display: block;
  font-size: 1.3rem;
  text-indent: -1.5em;
  padding-left: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li > ul > li > a {
    font-size: 1.2rem;
  }
}
.p-header__nav__child + .p-header__nav__child {
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child + .p-header__nav__child {
    margin-top: 2rem;
  }
}
.p-header__nav__side {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side {
    margin-top: 0;
    width: 11.7rem;
  }
}
.p-header__nav__side > li > a {
  font-size: 1.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side > li > a {
    font-size: 1.1rem;
  }
}
.p-header__nav__side > li + li {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side > li + li {
    margin-top: 1rem;
  }
}
.p-header__nav.is_open {
  display: block;
  overflow-y: auto;
}
.p-header__nav__copy {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 4rem;
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__copy {
    display: none;
  }
}

.p-hamburger {
  background-color: #1b1b1b;
  display: block;
  cursor: pointer;
  width: 8.7rem;
  height: 6.3rem;
  margin-left: 1rem;
  z-index: 99999;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger {
    width: 5rem;
    height: 4rem;
  }
}
.p-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  height: 1px;
  border-radius: 2px;
  width: 4rem;
  background: #FFF;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span {
    width: 2.5rem;
  }
}
.p-hamburger span:nth-of-type(1) {
  top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(1) {
    top: 1rem;
  }
}
.p-hamburger span:nth-of-type(2) {
  top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(2) {
    top: 2rem;
  }
}
.p-hamburger span:nth-of-type(3) {
  top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(3) {
    top: 3rem;
  }
}
.p-hamburger.is_open span:nth-of-type(1) {
  top: 3rem;
  transform: translateY(0) rotate(-135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(1) {
    top: 2rem;
  }
}
.p-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is_open span:nth-of-type(3) {
  top: 3rem;
  transform: translateY(0) rotate(135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(3) {
    top: 2rem;
  }
}

/* -----------------------------------------------
p-top
----------------------------------------------- */
/* -------MV -------*/
.p-top-mv {
  width: 100%;
  height: 162.6rem;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv {
    height: 76rem;
  }
}
.p-top-mv__copy {
  position: absolute;
  z-index: 2;
  top: 56rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv__copy {
    top: 25rem;
    width: 100%;
  }
}
.p-top-mv__copy-q {
  width: 105.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv__copy-q {
    width: 100%;
  }
}
.p-top-mv__copy-a {
  margin-top: 3.8rem;
  width: 80rem;
  overflow: hidden;
  margin-left: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv__copy-a {
    width: 34rem;
    margin-left: 1.5rem;
    margin-top: 1.2rem;
  }
}
.p-top-mv__copy .swiper-slide {
  height: 11.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv__copy .swiper-slide {
    height: 6rem;
  }
}
.p-top-mv__copy .swiper-slide > img {
  height: inherit;
}
.p-top-mv__scroll {
  position: absolute;
  z-index: 2;
  bottom: 60rem;
  right: 4rem;
  width: 1.9rem;
  -webkit-animation-name: headermore;
  animation-name: headermore;
  -webkit-animation-duration: 1800ms;
  animation-duration: 1800ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv__scroll {
    width: 1.3rem;
    bottom: auto;
    right: .5rem;
    bottom: 12rem;
    animation-name: none;
    -webkit-animation-name: none;
  }
}
.p-top-mv .p-top-mv__body {
  margin: 15rem 0 0 auto;
  height: 100%;
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__body {
    position: absolute;
    top: 0;
    left: auto;
    margin: 0 0 0 auto;
  }
}
.p-top-mv .p-top-mv__body .p-top-mv__rail {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.p-top-mv .p-top-mv__body .p-top-mv__rail.rail-left {
  width: 113rem;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-transform-origin: 100% 51%;
  transform-origin: 100% 51%;
}
.p-top-mv .p-top-mv__body .p-top-mv__rail.rail-left .p-top-mv__tile {
  width: 93rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__body .p-top-mv__rail.rail-left .p-top-mv__tile {
    width: 35rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__body .p-top-mv__rail.rail-left {
    width: 35rem;
    -webkit-transform-origin: 100% 41%;
    transform-origin: 100% 41%;
  }
}
.p-top-mv .p-top-mv__body .p-top-mv__rail.rail-right {
  width: 39.5rem;
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-transform-origin: 100% 25%;
  transform-origin: 100% 25%;
}
@media print, screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__body .p-top-mv__rail.rail-right {
    width: 19.5rem;
    -webkit-transform-origin: 100% 28%;
    transform-origin: 100% 28%;
  }
}

.p-top-mv .p-top-mv__body .p-top-mv__tile {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media print, screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__body .p-top-mv__tile {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.p-top-mv .p-top-mv__body .p-top-mv__tile img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: rotateY(0deg) translate3d(0, 0, 0);
  transform: rotateY(0deg) translate3d(0, 0, 0);
}

.p-top__title > .ja {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: .38em;
}
@media print, screen and (max-width: 768px) {
  .p-top__title > .ja {
    font-size: 1.5rem;
  }
}
.p-top__title > .en {
  margin-top: 1.5rem;
  height: 12rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-top__title > .en {
    height: 4.5rem;
    margin-top: 1rem;
  }
}
.p-top__title > .en picture, .p-top__title > .en img {
  height: inherit;
}
.p-top__title > .en.two-line {
  height: 26.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-top__title > .en.two-line {
    height: 9.9rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-top__title > .en.two-line-sp {
    height: 9.9rem;
  }
}
.p-top__subtitle {
  font-size: 4.7rem;
  color: #FFF;
  font-weight: 600;
  border-bottom: 1px solid #FFF;
  display: inline-block;
  align-items: center;
  letter-spacing: .23em;
}
@media print, screen and (max-width: 768px) {
  .p-top__subtitle {
    font-size: 2.3rem;
  }
}
.p-top__subtitle > .en {
  height: 2rem;
  display: inline-block;
  margin-right: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-top__subtitle > .en {
    height: 1rem;
    margin-right: 1.5rem;
  }
}
.p-top__subtitle > .en picture, .p-top__subtitle > .en img {
  height: inherit;
  vertical-align: middle;
}
.p-top-news {
  position: absolute;
  top: 16rem;
  padding: 3rem;
  right: 31rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.8);
  width: 48.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-news {
    width: 100%;
    position: relative;
    margin-top: -10rem;
    right: 0;
    top: 0;
    background: #FFF;
  }
}
.p-top-news__title {
  width: 14.9rem;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__title {
    width: 13rem;
  }
}
.p-top-news > ul > li:first-child {
  margin-top: -3.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-news > ul > li:first-child {
    margin-top: 1.5rem;
  }
}
.p-top-news__archive {
  margin-top: 3rem;
}
.p-top-news__archive > .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__archive > .head {
    align-items: flex-start;
  }
}
.p-top-news__archive .title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__archive .title {
    font-size: 2rem;
  }
}
.p-top-news__archive .image {
  width: 17rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__archive .image {
    width: 15rem;
  }
}
.p-top-news__archive > p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__archive > p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.p-top-news__archive > .btn {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  display: block;
  color: #FFF;
  padding: 1rem  2rem;
  text-align: center;
  background-color: #f77440;
}
@media print, screen and (max-width: 768px) {
  .p-top-news__archive > .btn {
    font-size: 1.1rem;
  }
}
.p-top-message {
  position: relative;
  padding: 9rem 0;
  margin-top: -40rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-message {
    margin-top: 0;
    padding: 3rem 0 0;
  }
}
.p-top-message::after {
  position: absolute;
  width: 65rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-message::after {
    width: 25rem;
    height: 26rem;
  }
}
.p-top-message::before {
  position: absolute;
  width: 10rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-message::before {
    width: 1.3rem;
  }
}
.p-top-message__wrap {
  z-index: 2;
  position: relative;
}
.p-top-message__subtitle {
  width: 22.2rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-message__subtitle {
    width: 26rem;
  }
}
.p-top-message__text {
  width: 86.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-message__text {
    width: 100%;
    margin-top: 4rem;
  }
}
.p-top-message__main {
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .p-top-message__main {
    flex-wrap: wrap;
    margin-top: 2rem;
  }
}
.p-top-about {
  margin-top: 12rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-about {
    margin-top: 6rem;
  }
}
.p-top-about.c-blackcover::after {
  height: 100rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-about.c-blackcover::after {
    height: 36rem;
  }
}
.p-top-about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
  padding-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-about__list {
    flex-wrap: wrap;
    padding-bottom: 2rem;
    margin-top: 0;
  }
}
.p-top-about__list > li {
  width: calc(50% - 2rem);
  margin-bottom: 8rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-about__list > li {
    width: calc(50% - 1rem);
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.p-top-about__list > li > a {
  display: block;
}
.p-top-about__list > li > a > figcaption {
  padding-top: 2.6rem;
  display: block;
  color: #FFF;
  font-size: 2.7rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-top-about__list > li > a > figcaption {
    font-size: 1.2rem;
    padding-top: 1rem;
    line-height: 1.3;
  }
}
.p-top-about__label {
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-about__label {
    font-size: 1.2rem;
    padding: .3rem 1rem;
    margin-bottom: .5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .p-top-about .c-longarrow::after {
    width: 49.6rem;
    background-image: url(../../img/staff/common/icon_arrow02.svg);
  }
}
.p-top-works {
  margin-top: 12rem;
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .p-top-works {
    margin-top: 6rem;
    padding: 2.7rem 0;
  }
}
.p-top-works::after {
  position: absolute;
  width: 96rem;
  height: 162rem;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-works::after {
    width: 31rem;
    height: 125rem;
  }
}
.p-top-works__sec {
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__sec {
    margin-top: 5rem;
  }
}
.p-top-works__sec.c-blackcover:after {
  height: 28rem;
  left: auto;
  right: 0;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__sec.c-blackcover:after {
    width: 34.2rem;
    height: 14rem;
  }
}
.p-top-works__first {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 3rem;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__first {
    display: none;
  }
}
.p-top-works__first > i {
  width: 9.5rem;
}
.p-top-works__first > i > img {
  opacity: .8;
}
.p-top-works__first > p {
  color: #FFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-top: 3rem;
  font-size: 3.2rem;
  font-weight: 600;
}
.p-top-works__door {
  opacity: 0;
  transition: opacity .6s ease;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20rem;
  height: 67rem;
  width: 100vw;
  top: 0;
  cursor: pointer;
  position: absolute;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__door {
    opacity: 1;
    position: relative;
    width: 100%;
    height: 13rem;
    padding-left: 1.5rem;
  }
}
.p-top-works__door > i {
  width: 9.5rem;
}
.p-top-works__door > i > img {
  opacity: .8;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__door > i {
    width: 5rem;
  }
}
.p-top-works__door > p {
  color: #FFF;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
  font-size: 4.7rem;
  font-weight: 600;
  margin-top: 0;
  margin-left: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__door > p {
    font-size: 1.5rem;
    margin-left: 2rem;
  }
}
.p-top-works__door > .readmore {
  width: 21rem;
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__door > .readmore {
    width: 7.5rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.p-top-works__list {
  margin-top: 3.8rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__list {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.p-top-works__list > li {
  width: calc(100% / 6.1);
  color: #FFF;
  height: 67rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-works__list > li {
    width: 100%;
    height: 13rem;
    margin-top: .4rem;
  }
}
.p-top-works__list > li:nth-child(1) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg01.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(2) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg02.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(3) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg03.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(4) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg04.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(5) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg05.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(6) .p-top-works__door {
  background-image: url(../../img/staff/top/works_openbg06.jpg);
  background-size: cover;
}
.p-top-works__list > li:hover .p-top-works__door {
  opacity: 1;
  left: 0;
  z-index: 3;
}
.p-top-works__list > li:nth-child(1) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg01.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(2) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg02.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(3) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg03.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(4) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg04.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(5) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg05.jpg);
  background-size: cover;
}
.p-top-works__list > li:nth-child(6) .p-top-works__first {
  background-image: url(../../img/staff/top/works_bg06.jpg);
  background-size: cover;
}
.p-top-interview__slider {
  position: relative;
  margin-top: 6rem;
  padding-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-interview__slider {
    margin-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-top-interview__slider__item {
  position: relative;
}
.p-top-interview__slider__item.swiper-slide-next .p-top-interview__slider__textarea > .group {
  font-size: 2.2rem;
}
.p-top-interview__slider__item.swiper-slide-next .p-top-interview__slider__textarea > .detail > .name {
  font-size: 3.3rem;
}
.p-top-interview__slider__item.swiper-slide-next .p-top-interview__slider__textarea > .detail > .year {
  font-size: 2.6rem;
  margin-left: auto;
}
.p-top-interview__slider.swiper-slide-next .p-top-interview__slider__textarea {
  margin: 0 auto 3rem;
}
.p-top-office {
  width: 100%;
}
.p-top-office .device_sp {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
}
.p-top-office__map {
  margin-top: 2rem;
}
.p-top-office__list > li {
  margin-top: 2rem;
}
.p-top-office__list > li > a {
  display: block;
}
.p-top-special {
  margin-top: 9.5rem;
  padding-top: 4rem;
  position: relative;
  padding-bottom: 11rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special {
    padding-top: 0;
    margin-top: 6rem;
    padding-bottom: 2.5rem;
  }
}
.p-top-special::after {
  position: absolute;
  width: 65rem;
  height: 100%;
  background-color: #1b1b1b;
  content: '';
  top: 0;
  right: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-special::after {
    width: 18rem;
    height: 121rem;
    top: auto;
    bottom: 0;
  }
}
.p-top-special::before {
  position: absolute;
  width: 10rem;
  height: 100%;
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-top-special::before {
    width: 1.5rem;
  }
}
.p-top-special__wrap {
  z-index: 2;
  position: relative;
}
.p-top-special__list {
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__list {
    margin-top: 2rem;
  }
}
.p-top-special__cardtitle {
  font-size: 3.3rem;
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__cardtitle {
    font-size: 1.6rem;
    margin-top: 4rem;
    margin-left: -3rem;
  }
}
.p-top-special__item {
  position: relative;
  margin-top: 7rem;
  height: 40rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item {
    height: 18.8rem;
    margin-top: 2.5rem;
  }
}
.p-top-special__item:first-child {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item:first-child {
    margin-top: 0;
  }
}
.return .p-top-special__item:nth-child(odd) > figure {
  left: auto;
  right: 0;
}
.return .p-top-special__item:nth-child(odd) > figcaption > .textarea {
  margin-left: 0;
  margin-right: 0;
}
.return .p-top-special__item:nth-child(odd) > figcaption > .num {
  margin-right: auto;
  text-align: left;
}
@media print, screen and (max-width: 768px) {
  .return .p-top-special__item:nth-child(odd) > figcaption > .num {
    padding-left: 2rem;
  }
}
.p-top-special__list:not(.return) .p-top-special__item:nth-child(even) > figure {
  left: auto;
  right: 0;
}
.p-top-special__list:not(.return) .p-top-special__item:nth-child(even) > figcaption > .textarea {
  margin-left: 0;
  margin-right: 0;
}
.p-top-special__list:not(.return) .p-top-special__item:nth-child(even) > figcaption > .num {
  margin-right: auto;
  text-align: left;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__list:not(.return) .p-top-special__item:nth-child(even) > figcaption > .num {
    padding-left: 2rem;
  }
}
.p-top-special__item > figure {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 108rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item > figure {
    width: 26.6rem;
  }
}
.p-top-special__item > figcaption {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item > figcaption {
    padding-top: 0;
  }
}
.p-top-special__item > figcaption > .textarea {
  display: block;
  width: 46rem;
  margin-left: auto;
  font-size: 2.7rem;
  background-color: #FFF;
  padding: 3.4rem;
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item > figcaption > .textarea {
    font-size: 1.3rem;
    width: 23rem;
    padding: 1.5rem;
    margin-top: 5.5rem;
  }
}
.p-top-special__item > figcaption > .num {
  height: 9.1rem;
  margin-left: auto;
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .p-top-special__item > figcaption > .num {
    height: 4rem;
    padding-top: 5rem;
    padding-right: 1.5rem;
  }
}
.p-top-special__item > figcaption > .num > img {
  height: inherit;
}
.p-top-education {
  padding-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-education {
    padding-top: 6rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-top-education .p-top__title .ja {
    letter-spacing: 0.017em;
  }
}
.p-top-education__list {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
  padding-bottom: 9.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-education__list {
    flex-wrap: wrap;
    margin-top: 0;
    padding-bottom: 2rem;
  }
}
.p-top-education__list > li {
  width: calc(33.3% - 4.6rem);
}
@media print, screen and (max-width: 768px) {
  .p-top-education__list > li {
    width: calc(50% - 0.8rem);
    margin-top: 3rem;
  }
}
.p-top-education__list > li > a {
  display: block;
}
.p-top-education__list > li > a > figcaption {
  padding-top: 2.6rem;
  display: block;
  color: #FFF;
  font-size: 2.7rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-top-education__list > li > a > figcaption {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}
.p-top-recruit {
  padding-top: 15rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit {
    padding-top: 6rem;
  }
}
.p-top-recruit__list {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
  padding-bottom: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__list {
    margin-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
}
.p-top-recruit__list > li {
  width: calc(50% - 2rem);
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__list > li {
    width: calc(50% - 0.8rem);
  }
}
.p-top-recruit__list > li > a {
  display: block;
}
.p-top-recruit__list > li > a > figcaption {
  padding-top: 2.6rem;
  display: block;
  color: #FFF;
  font-size: 2.7rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__list > li > a > figcaption {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}
.p-top-recruit__cta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta {
    flex-wrap: wrap;
    padding-bottom: 4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta .p-acc__anchor {
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta .p-acc__submenu {
    top: 10.7rem;
    opacity: 1;
  }
}
.p-top-recruit__cta .p-acc__submenu > li > a {
  font-size: 2rem;
  padding: 2rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta .p-acc__submenu > li > a {
    font-size: 1.3rem;
    padding: 1.2rem 1rem;
  }
}
.p-top-recruit__cta__btn {
  width: 62rem;
  display: block;
  color: #FFF;
  text-align: center;
  padding: 2rem;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta__btn {
    font-size: 2rem;
    padding: 1.5rem;
    margin-top: 2rem;
    width: 100%;
  }
}
.p-top-recruit__cta__btn > .en {
  height: 3rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta__btn > .en {
    height: 1.4rem;
  }
}
.p-top-recruit__cta__btn > .en > img {
  height: inherit;
  vertical-align: baseline;
}
.p-top-recruit__cta__btn .ja {
  width: 100%;
  display: block;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 768px) {
  .p-top-recruit__cta__btn .ja {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------
p-footer
----------------------------------------------- */
.p-footer {
  background-color: #1b1b1b;
  padding-top: 9rem;
  padding-bottom: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
  }
}
.p-footer__logo {
  width: 25rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-footer__logo {
    display: none;
  }
}
.p-footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 1200px) {
  .p-footer__wrap {
    width: 90%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-footer__wrap {
    display: none;
    width: 100%;
  }
}
.p-footer__copy {
  color: #FFF;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 9.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: .8rem;
    margin-top: 0;
  }
}
.p-footer__item.side > ul {
  margin-top: 6rem;
}
.p-footer__item.side > ul > li {
  margin-top: 3rem;
}
.p-footer__item.side > ul > li > a {
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 500;
}
.p-footer__item.side > ul > li > ul > li {
  margin-top: 1rem;
}
.p-footer__item.side > ul > li > ul > li > a {
  font-size: 1.5rem;
  color: #FFF;
  font-weight: 500;
}
.p-footer__item.main > dl > dt {
  background-size: 1.6rem;
  background-position: left top .6rem;
  padding-left: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.15em;
}
.p-footer__item.main > dl > dd {
  margin-left: 1.6rem;
}
.p-footer__item.main > dl > dd > ul > li {
  margin-top: 1rem;
  color: #FFF;
  font-size: 1.4rem;
}
.p-footer__item.main > dl > dd > ul > li > a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.15em;
}
.p-footer__item.main > dl > dd > ul > li > ul > li {
  margin-top: 1rem;
}
.p-footer__item.main > dl > dd > ul > li > ul > li > a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.15em;
  text-indent: -1.9em;
  padding-left: 2.5em;
  display: inline-block;
}
.p-footer__item.main > dl + dl {
  margin-top: 4rem;
}

.p-pagetop {
  width: 6rem;
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background-color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .p-pagetop {
    left: 0;
    right: 0;
    margin: auto;
    width: 4rem;
    bottom: 7rem !important;
    position: absolute;
  }
}
.p-pagetop.UpMove {
  display: block;
}
.p-pagetop.DownMove {
  display: none;
}

@media print, screen and (max-width: 768px) {
  .top .p-pagetop {
    display: none;
  }
}
@media print, screen and (max-width: 768px) {
  .top .p-pagetop.UpMove {
    display: none;
  }
}

/* -----------------------------------------------
page
----------------------------------------------- */
.p-page-mv {
  background-size: cover;
  background-position: center;
  height: 74rem;
  padding-top: 21rem;
  background-repeat: no-repeat;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv {
    height: auto;
    padding-top: 22rem;
    background-size: contain;
    background-position: top center;
  }
}
.p-page-mv__entitle {
  height: 5.2rem;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__entitle {
    height: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.p-page-mv__entitle img, .p-page-mv__entitle picture {
  height: inherit;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__entitle.two-line-sp {
    height: 6rem;
  }
}
.p-page-mv__title span {
  display: inline-block;
  background-color: #1b1b1b;
  color: #FFF;
  font-size: 4.5rem;
  font-weight: 600;
  left: 0.15;
  margin-bottom: 1rem;
  padding: 0 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__title span {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
    padding: .5rem 1.5rem;
  }
}
.p-page-mv__catch {
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__catch {
    margin-top: 1rem;
  }
}
.p-page-mv__catch > span {
  display: inline-block;
  color: #FFF;
  background: #00c7ff;
  font-size: 4rem;
  font-weight: 600;
  padding: 0 2rem;
  margin-top: 1.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__catch > span {
    margin-top: .8rem;
    font-size: 2rem;
    letter-spacing: 0.2em;
    padding: 0 1rem;
  }
}
.p-page-mv__label {
  font-size: 3rem;
  font-weight: 600;
  color: #FFF;
  padding: 0 2rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__label {
    font-size: 1.5rem;
    padding: .5 1rem;
  }
}
.p-page-mv__number {
  height: 7.5rem;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__number {
    height: 4rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.p-page-mv__number img, .p-page-mv__number picture {
  height: inherit;
}
@media print, screen and (max-width: 768px) {
  .p-page-mv__number.two-line-sp {
    height: 6rem;
  }
}

.p-popup {
  display: none;
}
.p-popup.is_open {
  display: block;
  z-index: 99999;
  position: fixed;
}
.p-popup__box {
  background-color: #FFF;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60rem;
  height: 32rem;
  font-size: 2rem;
  letter-spacing: 0;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .p-popup__box {
    font-size: 1.5rem;
    width: 32rem;
  }
}
.p-popup__wrap {
  position: relative;
  padding: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-popup__wrap {
    padding: 3rem 2rem 2rem;
  }
}
.p-popup__wrap > a {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .p-popup__wrap > a {
    font-size: 1.6rem;
    margin-top: 1rem;
    background-position: left top 0.8rem;
    background-size: 1.3rem;
    padding-left: 1.7rem;
  }
}
.p-popup__closebtn {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .p-popup__closebtn {
    width: 4rem;
    height: 4rem;
  }
}
.p-popup__overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.p-display-table {
  display: table;
}
.p-display-table .row {
  display: table-row;
}
.p-display-table .cell {
  display: table-cell;
}

/* -----------------------------------------------
page
----------------------------------------------- */
.p-column__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .p-column__head {
    min-height: 13rem;
    align-items: flex-start;
    padding: 2rem  3rem;
  }
}
.p-column__head > figcaption {
  width: 35%;
}
@media print, screen and (max-width: 768px) {
  .p-column__head > figcaption {
    width: 100%;
  }
}
.p-column__head > figure {
  width: 60%;
}
@media print, screen and (max-width: 768px) {
  .p-column__head > figure {
    display: none;
  }
}
.p-column__title {
  text-align: left;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f77440;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 768px) {
  .p-column__title {
    font-size: 1.8rem;
  }
}
.p-column__eyecatching {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-column__eyecatching {
    display: block;
  }
}
.p-column__day {
  margin-top: 3rem;
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-column__day {
    margin-top: 1.5rem;
    font-size: 1.3rem;
  }
}
.p-column__main {
  letter-spacing: 0.05em;
  margin-top: 5rem;
  line-height: 1.9;
  font-feature-settings: "palt" 1;
}
@media print, screen and (max-width: 768px) {
  .p-column__main {
    margin-top: 0;
  }
}
.p-column__main > p {
  margin-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-column__main > p {
    margin-top: 2rem;
  }
}
.p-column__capture {
  margin: 4rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .p-column__capture {
    margin: 2rem auto 0;
  }
}
.p-column__capture figcaption {
  margin-top: 1rem;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .p-column__capture figcaption {
    font-size: 1rem;
  }
}
.p-column__side {
  margin-top: 5rem;
  padding: 5rem;
  background: #fff2ec;
  text-align: left;
}
@media print, screen and (max-width: 768px) {
  .p-column__side {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
}
.p-column__list-in15 > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.p-column__list-in20 > li {
  text-indent: -2em;
  padding-left: 2em;
}
.p-column__list-in25 > li {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.u-fl {
  display: flex;
  flex-wrap: wrap;
}
.u-fl.space-between {
  justify-content: space-between;
}
.u-fl.align-end {
  align-items: flex-end;
}
.u-fl.align-start {
  align-items: flex-start;
}
.u-fl.align-center {
  align-items: center;
}
.u-fl .od2 {
  order: 2;
}
@media print, screen and (max-width: 768px) {
  .u-fl .od0-sp {
    order: 0;
  }
  .u-fl .od2-sp {
    order: 2;
  }
}

.u-asterisk {
  font-size: 2rem;
  font-weight: 400;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .u-asterisk {
    font-size: 1.2rem;
  }
}

.u-block {
  display: block;
}

.u-text-bold {
  font-weight: 600;
}

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

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

a.u-no-opacity {
  opacity: 1;
}

.u-indent {
  text-indent: -1em;
}
.u-indent > li {
  padding-left: 1em;
}

/* ====================================================
padding
==================================================== */
.u-plr40 {
  padding-right: 4rem;
  padding-left: 4rem;
}

.u-plr20 {
  padding-right: 2rem;
  padding-left: 2rem;
}

.u-pl50 {
  padding-left: 5rem;
}

.u-pb100 {
  padding-bottom: 10rem;
}

.u-ptb0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.u-ptb5 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.u-ptb10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-ptb20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.u-ptb100 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

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

  .u-ptb0-sp {
    padding-top: 0;
    padding-bottom: 0;
  }

  .u-plr10-sp {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .u-pl30-sp {
    padding-left: 3rem;
  }

  .u-ptb10-sp {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .u-pr0-sp {
    padding-right: 0;
  }

  .u-pr10-sp {
    padding-left: 1rem;
  }
}
/* ====================================================
margin
==================================================== */
.u-mt10 {
  margin-top: 1rem;
}

.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-mt70 {
  margin-top: 7rem;
}

.u-mt90 {
  margin-top: 9rem;
}

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

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

.u-mb10 {
  margin-bottom: 1rem;
}

.u-ml20 {
  margin-left: 2rem;
}

.u-ml30 {
  margin-left: 3rem;
}

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

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

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

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

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

  .u-mt25-sp {
    margin-top: 2.5rem;
  }

  .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-mt-25-sp {
    margin-top: -2.5rem;
  }

  .u-ml10-sp {
    margin-left: 1rem;
  }

  .u-ml0-sp {
    margin-left: 0;
  }

  .u-mlr-auto-sp {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ====================================================
width
==================================================== */
.u-w15per {
  width: 15%;
}

.u-w20per {
  width: 20%;
}

.u-w30per {
  width: 30%;
}

.u-w35per {
  width: 35%;
}

.u-w40per {
  width: 40%;
}

.u-w47per {
  width: 47%;
}

.u-w48per {
  width: 48%;
}

.u-w50per {
  width: 50%;
}

.u-w60per {
  width: 60%;
}

.u-w65per {
  width: 65%;
}

.u-w70per {
  width: 70%;
}

.u-w75per {
  width: 75%;
}

.u-w80per {
  width: 80%;
}

.u-w85per {
  width: 85%;
}

.u-w90per {
  width: 90%;
}

.u-w100per {
  width: 100%;
}

.u-w550 {
  width: 55rem;
}

.u-w600 {
  width: 60rem;
}

.u-w700 {
  width: 70rem;
}

.u-w940 {
  width: 94rem;
}

.u-w1000 {
  width: 100rem;
}

.u-w1030 {
  width: 103rem;
}

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

  .u-w30per-sp {
    width: 30%;
  }

  .u-w50per-sp {
    width: 50%;
  }

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

  .u-w80per-sp {
    width: 80%;
  }

  .u-w90per-sp {
    width: 90%;
  }

  .u-w100per-sp {
    width: 100%;
  }

  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
/* ====================================================
font-size
==================================================== */
.u-append {
  font-size: .7em;
}

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

.u-fs22 {
  font-size: 2.2rem;
}

.u-fs25 {
  font-size: 2.5rem;
}

.u-fs26 {
  font-size: 2.6rem;
}

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

.u-fs33 {
  font-size: 3.3rem;
}

.u-fs35 {
  font-size: 3.5rem;
}

@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-fs16-sp {
    font-size: 1.6rem;
  }
}
/* ====================================================
color
==================================================== */
.u-color-wh {
  color: #FFF;
}

.u-color-lightblue {
  color: #00c7ff;
}

.u-color-red {
  color: #db0a00;
}

.u-color-orange {
  color: #f77440;
}

.u-color-orange2 {
  color: #ffa726;
}

.u-color-green {
  color: #8fc441;
}

.u-color-blue {
  color: #66a9e5;
}

.u-color-darkblue {
  color: #0066a5;
}

.u-color-purple {
  color: #9b8bd0;
}

.u-color-gray {
  color: #959595 !important;
}

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

.u-bg-blue {
  background-color: #005cd8;
}

.u-bg-darkblue {
  background-color: #0066a5;
}

.u-bg-lightblue {
  background-color: #00c7ff;
}

.u-bg-gradient {
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
}

.u-bg-gray {
  background-color: #616161;
}

.u-bg-transparent {
  background-color: transparent;
}

.u-bg-orange {
  background-color: #f77440;
}

/* ====================================================
letter-speacing
==================================================== */
.u-letter100 {
  letter-spacing: 0.01em;
}

.u-letter500 {
  letter-spacing: 0.05em;
}

@media print, screen and (max-width: 768px) {
  .u-letter100-sp {
    letter-spacing: 0.01em;
  }
}
.u-link-point-none {
  cursor: auto;
}
.u-link-point-none:hover {
  opacity: 1;
}
