@charset "UTF-8";
/************************************************

	animation

*************************************************/
@keyframes zoom-in {
  0% {
    transform: scale(0.1) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: scale(0.7) rotate(-45deg);
    opacity: 1;
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(0.7) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.1) rotate(45deg);
    opacity: 0;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
  line-height: 1;
}

ul {
  list-style: none;
}

a,
a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

/************************************************

	.ico_arrow

*************************************************/
.c-ico_arrow {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  display: block;
}
.c-ico_arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 16px;
  background: url("/sp/common/images/ico_arrow_black.svg") no-repeat center/7px 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-ico_arrow.c-ico_arrow--white::after {
  background-image: url("/sp/common/images/ico_arrow_white.svg");
}
.c-ico_arrow.c-ico_arrow--blue::after {
  background-image: url("/sp/common/images/ico_arrow_blue.svg");
}

.c-ico_arrow02 {
  position: relative;
  padding-left: 13px;
  display: inline-block;
}
.c-ico_arrow02::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.c-ico_accordion {
  position: relative;
  display: block;
}
.c-ico_accordion::before, .c-ico_accordion::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(0deg);
}
.c-ico_accordion::after {
  transition: transform 0.3s;
  transform: rotate(-90deg);
}
.c-ico_accordion.is-opened::after {
  transform: rotate(0deg);
}

/************************************************

	utillity

*************************************************/
.c-d_ib {
  display: inline-block;
}

.c-mr5 {
  margin-right: 5px !important;
}

.c-mt10 {
  margin-top: 10px !important;
}

.c-mt20 {
  margin-top: 20px !important;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
  line-height: 1.75;
  font-size: 1.4em;
  color: #333;
}

button {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
}

.c-small {
  font-size: 0.8em;
}

.header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 11;
}
.header .header__inner {
  display: -webkit-flex;
  display: flex;
  padding: 10px;
}
.header .header__logo {
  width: 55%;
  max-width: 532px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.header .header__box_r {
  margin-left: auto;
}
.header .header__munus {
  display: -webkit-flex;
  display: flex;
}
.header .header__munus__btn {
  margin-right: 15px;
}
.header .header__munus__btn:last-of-type {
  margin-right: 0;
}
.header .header__btn_login .ico_login {
  display: block;
  width: 20px;
  height: 19px;
  background: url(/sp/common/images/ico_login.svg) no-repeat center top/100%;
  margin: 0 auto;
}
.header .header__btn_login .text {
  font-size: 1rem;
  line-height: 1.3;
  color: #004795;
  margin-top: 0px;
  text-align: center;
}
.header .header__btn_menu button {
  padding: 0;
  border: none;
  background: transparent;
}
.header .header__btn_menu button.is-opened .ico_menu span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.header .header__btn_menu button.is-opened .ico_menu span:nth-of-type(2) {
  opacity: 0;
}
.header .header__btn_menu button.is-opened .ico_menu span:nth-of-type(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}
.header .header__btn_menu .ico_menu {
  width: 33px;
  height: 28px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.header .header__btn_menu .ico_menu span {
  display: block;
  background: #004795;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
}
.header .header__btn_menu .ico_menu span:nth-of-type(1) {
  top: 0;
  transition: transform 0.3s, top 0.3s;
}
.header .header__btn_menu .ico_menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.header .header__btn_menu .ico_menu span:nth-of-type(3) {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s;
}
.header .header__btn_menu .text {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  color: #004795;
  margin-top: 4px;
  text-align: center;
}

.gnav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  border-top: 1px solid #9F9F9F;
  overflow: auto;
  display: none;
}
.gnav .c-ico_arrow {
  display: inline-block;
  padding-right: 0;
  padding-left: 15px;
}
.gnav .c-ico_arrow::after {
  right: auto;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 13px;
  background-size: 6px 13px;
}
.gnav ul li a {
  border-bottom: 1px solid #9F9F9F;
  display: block;
  padding: 15px 20px;
}
.gnav > ul > li a {
  background: #EDEDED;
}
.gnav > ul > li.login a {
  background: #004795;
  color: #fff;
}
.gnav > ul > li ul {
  display: none;
}
.gnav > ul > li ul li a {
  padding-left: 35px;
  background: #C7C7C7;
}

.top {
  background: url(/sp/images/bg_business.gif) no-repeat center 50vh/100% 100%;
}
.top.is-mv_play .header {
  opacity: 1;
  transition: opacity 1s;
}
.top.is-mv_play .mv .mv__cover {
  transition: background 1s, opacity 1s;
  background: #000;
  opacity: 0.2;
}
.top.is-mv_play .mv .mv__text .mv__text__box.is-show {
  color: #fff;
  transition: color 1s;
}
.top .header {
  opacity: 0;
}
.top .mv {
  position: relative;
}
.top .mv .mv__slide {
  width: 100%;
  height: calc(100vh - 69px);
}
.top .mv .mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top .mv .mv__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
}
.top .mv .mv__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .mv .mv__text .mv__text__box {
  color: #333;
  text-align: center;
  filter: blur(100px);
  opacity: 0;
  transform: translateY(-5vh);
}
.top .mv .mv__text .mv__text__box.is-show {
  opacity: 1;
  filter: blur(0);
  transition: opacity 1s, filter 1s;
}
.top .mv .mv__text .mv__text__main {
  font-size: min(3.7em, 9.87vw);
  font-weight: bold;
  line-height: 1.6;
  text-indent: 0.7em;
}
.top .mv .mv__text .mv__text__sub {
  font-size: min(2.6em, 6.93vw);
  margin-top: 0.1em;
}
.top .mv .mv__text .mv__text__sub.mv__text__sub--img {
  margin-top: 0.5em;
  width: min(265px, 51.3vw);
  margin-left: auto;
  margin-right: auto;
}
.top .mv .mv__scroll {
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1;
  display: inline-block;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.top .mv .mv__scroll::after {
  content: "";
  display: block;
  width: 66px;
  height: 26px;
  background: url(/sp/images/ico_arrow_scroll.svg) no-repeat center bottom/66px 26px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 5px);
}
.top .mv .mv__news {
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.5;
}
.top .mv .mv__news .mv__news__box {
  display: -webkit-flex;
  display: flex;
  border: 2px solid #26489a;
  background: rgba(255, 255, 255, 0.5);
}
.top .mv .mv__news .mv__news__label {
  padding: 6px 10px 8px 20px;
  color: #26489a;
  text-align: center;
  position: relative;
}
.top .mv .mv__news .mv__news__label .mv__news__label__separate {
  margin-left: 10px;
  display: inline-block;
  transform: translateY(-0.05em);
}
.top .mv .mv__news .mv__news__text {
  padding: 6px 10px 8px 0;
  color: #111111;
}
.top .mv .mv__news .mv__news__text .c-ico_arrow {
  padding-left: 0;
  padding-right: 20px;
}
.top .mv .fv_info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 9999;
  height: 60%;
}
.top .mv .fv_info .fv_info_close {
  color: #fff;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  display: inline-block;
  padding-inline: 0;
  padding-block: 0;
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}
.top .mv .fv_info .fv_info_box {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  overflow-y: scroll;
  height: 100%;
}
.top .mv .fv_info .fv_info_ttl {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.top .mv .fv_info .fv_info_ttl02 {
  margin-bottom: 2px;
}
.top .mv .fv_info .fv_info_lead p + p {
  margin-top: 1em;
}
.top .mv .fv_info .fv_info_link {
  margin-top: 25px;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  padding: 10px;
}
.top .mv .fv_info .fv_info_link a {
  text-decoration: underline;
  color: #21479A;
}
.top .mv .fv_info .fv_info_contact {
  margin-top: 25px;
}
.top .sec_business .business_lead {
  background: #004795;
  padding: 20px;
}
.top .sec_business .business_lead .business_lead__text {
  font-size: 1.5rem;
  color: #fff;
}
.top .sec_business .business_lead .business_lead__btn {
  padding: 0 20px;
  text-align: center;
  margin-top: 20px;
}
.top .sec_business .business_lead .business_lead__btn a {
  color: #fff;
  background: #2663a5;
  display: block;
  padding: 22px 20px;
  max-width: 250px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  border: 1px solid #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
}
.top .sec_business .fields {
  padding: 40px 0 80px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.top .sec_business .fields .fields__box {
  width: 85%;
  padding: 40px 10px 10px;
  color: #fff;
  text-align: center;
  position: relative;
  height: 0;
  padding-top: 49.6%;
  opacity: 0;
}
.top .sec_business .fields .fields__box.is-inview {
  transition: opacity 1s, transform 1s;
  opacity: 1;
}
.top .sec_business .fields .fields__box.is-inview:nth-of-type(odd), .top .sec_business .fields .fields__box.is-inview:nth-of-type(even) {
  transform: translate(0, 0);
}
.top .sec_business .fields .fields__box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #808080;
  opacity: 0.25;
}
.top .sec_business .fields .fields__box:nth-of-type(even) {
  margin-left: max(5px, 3%);
  transform: translate(10px, 10px);
}
.top .sec_business .fields .fields__box:nth-of-type(even)::before {
  top: 10px;
  left: 10px;
}
.top .sec_business .fields .fields__box:nth-of-type(even) .fields__inner::after {
  border-width: min(100px, 15vw) min(100px, 15vw) 0 0;
  left: 0;
}
.top .sec_business .fields .fields__box:nth-of-type(odd) {
  margin-right: max(5px, 3%);
  margin-left: auto;
  transform: translate(-10px, 10px);
}
.top .sec_business .fields .fields__box:nth-of-type(odd)::before {
  top: 10px;
  right: 10px;
}
.top .sec_business .fields .fields__box:nth-of-type(odd) .fields__inner::after {
  border-width: 0 min(100px, 15vw) min(100px, 15vw) 0;
  right: 0;
}
.top .sec_business .fields .fields__box.fields__box--field01::before {
  background: #808080;
}
.top .sec_business .fields .fields__box.fields__box--field01 .fields__inner {
  background: url(/sp/images/bg_field01.jpg) no-repeat center top/cover;
}
.top .sec_business .fields .fields__box.fields__box--field01 .fields__inner::after {
  border-color: #4C4C4C transparent transparent transparent;
}
.top .sec_business .fields .fields__box.fields__box--field02::before {
  background: #8E7AAD;
}
.top .sec_business .fields .fields__box.fields__box--field02 .fields__inner {
  background: url(/sp/images/bg_field02.jpg) no-repeat center top/cover;
}
.top .sec_business .fields .fields__box.fields__box--field02 .fields__inner::after {
  border-color: transparent #705195 transparent transparent;
}
.top .sec_business .fields .fields__box.fields__box--field03::before {
  background: #D3A249;
}
.top .sec_business .fields .fields__box.fields__box--field03 .fields__inner {
  background: url(/sp/images/bg_field03.jpg) no-repeat center top/cover;
}
.top .sec_business .fields .fields__box.fields__box--field03 .fields__inner::after {
  border-color: #CA8E21 transparent transparent transparent;
}
.top .sec_business .fields .fields__box.fields__box--field04::before {
  background: #B76567;
}
.top .sec_business .fields .fields__box.fields__box--field04 .fields__inner {
  background: url(/sp/images/bg_field04.jpg) no-repeat center top/cover;
}
.top .sec_business .fields .fields__box.fields__box--field04 .fields__inner::after {
  border-color: transparent #B76567 transparent transparent;
}
.top .sec_business .fields .fields__box + .fields__box {
  margin-top: 40px;
}
.top .sec_business .fields .fields__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.top .sec_business .fields .fields__inner::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 0;
}
.top .sec_business .fields .fields__cont {
  width: 100%;
}
.top .sec_business .fields .fields__title {
  font-size: 2rem;
  font-weight: bold;
}
.top .sec_business .fields .fields__en {
  font-size: 1.4rem;
}
.top .sec_business .fields .fields__links {
  margin: 40px auto 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 350px;
}
.top .sec_business .fields .fields__links .fields__link {
  width: 49%;
}
.top .sec_business .fields .fields__links .fields__link a {
  display: block;
  border: 1px solid;
  font-size: 1.4rem;
  line-height: 1;
  padding: 15px 10px;
}
.top .sec_staff {
  padding: 0 30px 30px;
  position: relative;
}
.top .sec_staff::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #004795;
}
.top .sec_staff .staff {
  text-align: center;
  color: #fff;
  background: url(/sp/images/abou_staff.jpg) no-repeat center top/cover;
  padding-top: 52.9%;
  height: 0;
  position: relative;
  z-index: 1;
}
.top .sec_staff .staff .staff__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .sec_staff .staff .staff__title {
  font-size: 2.2rem;
  font-weight: bold;
}
.top .sec_staff .staff .staff__en {
  font-size: 1.4rem;
}

.footer {
  margin-top: 60px;
  background: #fff;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}
.footer .footer__inner {
  padding: 0 20px;
  text-align: center;
}
.footer .footer__logo {
  max-width: 266px;
  margin: 0 auto;
}
.footer .footer__address {
  margin-top: 15px;
  font-size: 1.4rem;
  font-style: normal;
}
.footer .footer__copyright {
  margin-top: 15px;
  border-top: 1px solid #bbb;
  padding: 15px 20px;
  font-size: 1rem;
  text-align: center;
}

.oursolution .mv {
  padding: 13% 20px;
  background: url(/sp/oursolution/images/oursolution_mv.jpg) no-repeat center/cover;
}
.oursolution .mv .mv__title {
  font-size: 3.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.oursolution .section_lead {
  padding: 30px 20px 0;
}
.oursolution .section_lead .section_lead__text {
  font-size: 2rem;
  line-height: 1.6;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.oursolution .section_lead .section_lead__figure01 {
  margin-top: 30px;
  text-align: center;
}
.oursolution .section_lead .section_lead__figure01 img {
  max-width: 628px;
}
.oursolution .section_lead .section_lead__text02 {
  margin-top: 30px;
  font-size: 1.5rem;
}
.oursolution .section_service {
  margin-top: 30px;
  padding: 0 20px;
}
.oursolution .service .service__box {
  border: 1px solid #004795;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 15px 30px;
  position: relative;
  display: block;
}
.oursolution .service .service__box.service__box--more::after {
  display: none;
}
.oursolution .service .service__box + .service__box {
  margin-top: 20px;
}
.oursolution .service .service__box::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #004795 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.oursolution .service .service__icon {
  max-width: 80px;
  margin: 0 auto;
}
.oursolution .service .service__title {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 10px;
  font-weight: bold;
  color: #004795;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.oursolution .service .service__title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #f6b42c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.oursolution .service .service__lead {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 15px;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
.oursolution .service .service__text {
  margin-top: 5px;
}
.oursolution .section_service_detail {
  margin-top: 40px;
  padding: 0 20px;
}
.oursolution .service_detail .service_detail__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.oursolution .service_detail .service_detail__title02 {
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  color: #004795;
}
.oursolution .service_detail .service_detail__title03 {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #004795;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.oursolution .service_detail .service_detail__title04 {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  border-left: 5px solid #004795;
  padding: 2px 0 4px 5px;
}
.oursolution .service_detail .service_detail__list li {
  margin-top: 3px;
  position: relative;
  padding-left: 11px;
}
.oursolution .service_detail .service_detail__list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #004795;
  border-radius: 50%;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.oursolution .service_detail .service_detail__list + .service_detail__title02 {
  margin-top: 40px;
}
.oursolution .service_detail .service_detail__list + .service_detail__title03 {
  margin-top: 20px;
}
.oursolution .service_detail .service_detail__list + .service_detail__title04 {
  margin-top: 20px;
}
.oursolution .service_detail .service_detail__lead {
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 15px;
}

.company .company__ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.company .company__section {
  margin-top: 40px;
  padding: 40px 20px 0;
  position: relative;
}
.company .company__section::before {
  content: "";
  display: block;
  background: url(/sp/company/images/parts_sl_08.png) repeat-x center/14px 2px;
  width: 66%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.company .section_lead {
  padding: 30px 20px 0;
}
.company .section_lead .section_lead__text {
  font-size: 2rem;
  line-height: 1.6;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.company .section_lead .section_lead__text02 {
  margin-top: 30px;
  font-size: 1.5rem;
}
.company .section_lead .section_lead__figure01 {
  margin-top: 30px;
  text-align: center;
}
.company .section_lead .section_lead__figure01 img {
  max-width: 272px;
}
.company .about .about__details {
  margin-top: 30px;
}
.company .about .about__details .about__details__tr {
  padding: 10px;
  border-top: 1px solid #333;
}
.company .about .about__details .about__details__tr:last-of-type {
  border-bottom: 1px solid #333;
}
.company .about .about__details .about__details__label {
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: bold;
}
.company .about .about__details .about__details__discription {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 3px;
}
.company .about .about__details .about__details__discription.about__details__discription--representative {
  font-size: 1.3rem;
  line-height: 1.5;
}
.company .about .about__details .about__details__discription.about__details__discription--representative .name {
  font-size: 1.5rem;
}
.company .about .about_info {
  text-align: left;
  margin-top: 30px;
  border: 1px solid #21479A;
  padding: 20px;
  box-sizing: border-box;
}
.company .about .about_info .about_info__ttl {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.company .about .about_info .about_info__ttl02 {
  margin-bottom: 5px;
}
.company .about .about_info .about_info__lead p + p {
  margin-top: 1em;
}
.company .about .about_info .about_info__link {
  margin-top: 25px;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  padding: 10px;
}
.company .about .about_info .about_info__link a {
  color: #21479A;
  text-decoration: underline;
}
.company .about .about_info .about_info__contact {
  margin-top: 25px;
}
.company .policy .policy__tilte {
  margin-top: 20px;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
.company .policy .policy__subtilte {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 3px;
  font-weight: bold;
}
.company .policy .policy__text {
  font-size: 1.5rem;
  margin-top: 5px;
}
.company .suppliers .suppliers__text {
  margin-top: 25px;
}
.company .suppliers .suppliers__text_r {
  text-align: right;
}
.company .facility .facility__title {
  margin-top: 20px;
  font-size: 1.7rem;
  font-weight: bold;
}
.company .facility .facility__photo {
  margin-top: 5px;
}
.company .facility .facility__text {
  margin-top: 5px;
  font: 1.5rem;
}
.company .facility .facility__photo__2col {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.company .facility .facility__photo__2col figure {
  width: 49%;
}
.company .facility .facility__detail {
  margin-top: 5px;
  line-height: 1.5;
}

.field {
  position: relative;
}
.field .field_nav {
  position: -webkit-sticky;
  position: sticky;
  top: 69px;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.field .field_nav ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 10px;
  justify-content: space-between;
}
.field .field_nav ul li {
  width: calc((100% - 10px) / 2);
}
.field .field_nav ul li:nth-child(n+3) {
  margin-top: 5px;
}
.field .field_nav ul li a {
  font-feature-settings: "palt";
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
}
.field .field_nav .field_nav__link {
  border: 1px solid;
}
.field .field_nav .field_nav__link.field_nav__link--advertising {
  background: #9f9f9f;
  border-color: #9f9f9f;
}
.advertising.field .field_nav .field_nav__link.field_nav__link--advertising {
  border-color: #000;
}

.field .field_nav .field_nav__link.field_nav__link--consultant {
  background: #a894c1;
  border-color: #a894c1;
}
.consultant.field .field_nav .field_nav__link.field_nav__link--consultant {
  border-color: #000;
}

.field .field_nav .field_nav__link.field_nav__link--solutions {
  background: #e1bb73;
  border-color: #e1bb73;
}
.solutions.field .field_nav .field_nav__link.field_nav__link--solutions {
  border-color: #000;
}

.field .field_nav .field_nav__link.field_nav__link--support {
  background: #d19598;
  border-color: #d19598;
}
.support.field .field_nav .field_nav__link.field_nav__link--support {
  border-color: #000;
}

.field .field__title {
  margin-top: 50px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 30px;
}
.field .field__title_en {
  margin-top: 1px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  padding: 0 30px;
}
.field .field__text {
  margin-top: 40px;
  padding: 0 30px;
  color: #fff;
  font-size: 1.5rem;
}
.field .field__links {
  padding: 0 30px;
  margin-top: 25px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.field .field__links .field__link {
  width: calc((100% - 10px) / 2);
}
.field .field__links .field__link a {
  display: block;
  border: 1px solid;
  color: #fff;
  text-align: center;
  position: relative;
}
.field .field__links .field__link .c-ico_arrow {
  padding: 5px 20px 8px;
}
.field .field__links .field__link .c-ico_arrow::after {
  right: 10px;
}
.field .field__links .field__link_en {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
}
.field .field__links .field__link_ja {
  font-size: 1.3rem;
  color: #fff;
}
.field .container {
  position: relative;
  z-index: 1;
}
.field .bg_slider {
  margin-top: 140px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.field .bg_slider .bg_slider__slide {
  width: 100%;
  height: 100vh;
}
.field .bg_slider .bg_slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.field.advertising .advertising__figure {
  margin-top: 30px;
  padding: 0 30px;
}
.field.consultant .consultant__figure {
  margin-top: 30px;
  padding: 0 30px;
}
.field.solutions .solutions__figure {
  margin-top: 30px;
  padding: 0 30px;
}
.field.support .support__figure {
  margin-top: 30px;
  padding: 0 20px;
}

.case {
  /************************************************

      詳細

  *************************************************/
}
.case .case_nav {
  top: 69px;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.case .case_nav.is-fix {
  position: -webkit-sticky;
  position: sticky;
}
.case .case_nav ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 10px;
  justify-content: space-between;
}
.case .case_nav ul li {
  width: calc((100% - 10px) / 2);
}
.case .case_nav ul li:nth-child(n+3) {
  margin-top: 5px;
}
.case .case_nav ul li button {
  width: 100%;
  font-feature-settings: "palt";
  color: #fff;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
  cursor: pointer;
}
.case .case_nav .case_nav__link {
  border: 1px solid;
}
.case .case_nav .case_nav__link.is-active {
  opacity: 0.7;
}
.case .case_nav .case_nav__link.case_nav__link--all {
  background: #fff;
  border-color: #000;
  color: #000;
}
.case .case_nav .case_nav__link.case_nav__link--all button {
  color: #000;
}
.case .case_nav .case_nav__link.case_nav__link--advertising {
  background: #9f9f9f;
  border-color: #9f9f9f;
}
.case .case_nav .case_nav__link.case_nav__link--consultant {
  background: #a894c1;
  border-color: #a894c1;
}
.case .case_nav .case_nav__link.case_nav__link--solutions {
  background: #e1bb73;
  border-color: #e1bb73;
}
.case .case_nav .case_nav__link.case_nav__link--support {
  background: #d19598;
  border-color: #d19598;
}
.case .case__title {
  height: 0;
  overflow: hidden;
}
.case .case_list {
  margin-top: 20px;
  padding: 10px;
}
.case .case_list .case_list__list {
  position: relative;
  padding-bottom: 50px;
  min-height: 100vh;
  transition: height 0.3s;
  overflow: hidden;
  height: 408vw;
}
.case .case_list .case_list__list li:nth-child(1) {
  top: 0vw;
}
.case .case_list .case_list__list li:nth-child(2) {
  top: 0vw;
}
.case .case_list .case_list__list li:nth-child(3) {
  top: 25.5vw;
}
.case .case_list .case_list__list li:nth-child(4) {
  top: 51vw;
}
.case .case_list .case_list__list li:nth-child(5) {
  top: 51vw;
}
.case .case_list .case_list__list li:nth-child(6) {
  top: 76.5vw;
}
.case .case_list .case_list__list li:nth-child(7) {
  top: 102vw;
}
.case .case_list .case_list__list li:nth-child(8) {
  top: 102vw;
}
.case .case_list .case_list__list li:nth-child(9) {
  top: 127.5vw;
}
.case .case_list .case_list__list li:nth-child(10) {
  top: 153vw;
}
.case .case_list .case_list__list li:nth-child(11) {
  top: 153vw;
}
.case .case_list .case_list__list li:nth-child(12) {
  top: 178.5vw;
}
.case .case_list .case_list__list li:nth-child(13) {
  top: 204vw;
}
.case .case_list .case_list__list li:nth-child(14) {
  top: 204vw;
}
.case .case_list .case_list__list li:nth-child(15) {
  top: 229.5vw;
}
.case .case_list .case_list__list li:nth-child(16) {
  top: 255vw;
}
.case .case_list .case_list__list li:nth-child(17) {
  top: 255vw;
}
.case .case_list .case_list__list li:nth-child(18) {
  top: 280.5vw;
}
.case .case_list .case_list__list li:nth-child(19) {
  top: 306vw;
}
.case .case_list .case_list__list li:nth-child(20) {
  top: 306vw;
}
.case .case_list .case_list__list li:nth-child(21) {
  top: 331.5vw;
}
.case .case_list .case_list__list li:nth-child(22) {
  top: 357vw;
}
.case .case_list .case_list__list li:nth-child(23) {
  top: 357vw;
}
.case .case_list .case_list__list li:nth-child(24) {
  top: 382.5vw;
}
.case .case_list .case_list__list li {
  width: 49%;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: rotate(-45deg) scale(0);
  transition: top 1s, left 1s;
  pointer-events: none;
}
.case .case_list .case_list__list li:nth-child(3n-1) {
  left: 51%;
}
.case .case_list .case_list__list li:nth-child(3n) {
  left: 25.5%;
}
.case .case_list .case_list__list li.is-active {
  animation: 1s zoom-in forwards;
  pointer-events: auto;
}
.case .case_list .case_list__list li.is-none {
  animation: 0.6s zoom-out forwards;
  pointer-events: none;
}
.case footer {
  margin-top: 0;
}
.case.detail .case_header {
  padding: 15px;
  background: #9f9f9f;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.case.detail .case_header .case_header__field {
  font-size: 2rem;
  line-height: 1.3;
}
.case.detail .case_header .case_header__field_en {
  font-size: 1.2rem;
  margin-top: 2px;
}
.case.detail .case_detail {
  padding: 20px 10px 0;
}
.case.detail .case_detail .case_detail__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.3;
  font-feature-settings: "palt";
}
.case.detail .case_detail .case_detail__title .small {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 2px;
}
.case.detail .case_detail .case_detail__mv {
  margin-top: 20px;
}
.case.detail .case_detail .case_detail__movie_box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}
.case.detail .case_detail .case_detail__movie_box iframe,
.case.detail .case_detail .case_detail__movie_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case.detail .case_detail .case_detail__lead {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.case.detail .case_detail .case_detail__text {
  margin-top: 10px;
}
.case.detail .case_detail_label {
  font-weight: bold;
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid;
}
.case.detail .case_detail_2col {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.case.detail .case_detail_2col figure {
  margin-top: 10px;
  margin-left: 10px;
  width: 40px;
  flex-shrink: 0;
}
.case.detail .case_solution {
  margin-top: 15px;
  padding: 0 10px;
}
.case.detail .case_solution .case_solution__title {
  background: #9f9f9f;
  padding: 7px 10px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
}
.case.detail .case_solution .case_solution__lead {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 10px;
}
.case.detail .case_solution .case_solution__text {
  margin-top: 15px;
  font-size: 1.5rem;
}
.case.detail .case_result {
  margin-top: 20px;
  padding: 0 10px;
}
.case.detail .case_result .case_result__title {
  background: #9f9f9f;
  padding: 7px 10px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
}
.case.detail .case_result .case_result__lead {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 10px;
}
.case.detail .case_result .case_result__text {
  margin-top: 15px;
  font-size: 1.5rem;
}
.case.detail .case_detail_nav {
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  justify-content: space-between;
}
.case.detail .case_detail_nav li {
  width: calc((100% - 10px) / 2);
}
.case.detail .case_detail_nav li:nth-child(n+3) {
  margin-top: 5px;
}
.case.detail .case_detail_nav li a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-feature-settings: "palt";
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
  cursor: pointer;
}
.case.detail .case_detail_nav .case_detail_nav__link {
  border: 1px solid;
  opacity: 0.2;
  pointer-events: none;
}
.case.detail .case_detail_nav .case_detail_nav__link.is-active {
  opacity: 1;
}
.case.detail .case_detail_nav .case_detail_nav__link.is-active a {
  pointer-events: auto;
}
.case.detail .case_detail_nav .case_detail_nav__link.case_detail_nav__link--advertising {
  background: #9f9f9f;
  border-color: #9f9f9f;
}
.case.detail .case_detail_nav .case_detail_nav__link.case_detail_nav__link--consultant {
  background: #a894c1;
  border-color: #a894c1;
}
.case.detail .case_detail_nav .case_detail_nav__link.case_detail_nav__link--solutions {
  background: #e1bb73;
  border-color: #e1bb73;
}
.case.detail .case_detail_nav .case_detail_nav__link.case_detail_nav__link--support {
  background: #d19598;
  border-color: #d19598;
}
.case.detail .case_detail_stuff {
  padding: 0 10px 40px;
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.case.detail .case_detail_stuff li {
  width: 32%;
  margin-top: 10px;
  margin-right: 2%;
}
.case.detail .case_detail_stuff li:nth-child(3n) {
  margin-right: 0;
}
.case.detail.field02 .case_header {
  background: #a894c1;
}
.case.detail.field02 .case_solution .case_solution__title {
  background: #a894c1;
}
.case.detail.field02 .case_result .case_result__title {
  background: #a894c1;
}
.case.detail.field02 .consultant_fig01 {
  margin: 30px auto 0;
  max-width: 203px;
}
.case.detail.field03 .case_header {
  background: #e1bb73;
}
.case.detail.field03 .case_solution .case_solution__title {
  background: #e1bb73;
}
.case.detail.field03 .case_result .case_result__title {
  background: #e1bb73;
}
.case.detail.field04 .case_header {
  background: #d19598;
}
.case.detail.field04 .case_solution .case_solution__title {
  background: #d19598;
}
.case.detail.field04 .case_result .case_result__title {
  background: #d19598;
}
.case.detail .thumbnail .slick-slide {
  padding: 5px;
}

.staff {
  /************************************************

      detail

  *************************************************/
}
.staff .staff_nav {
  top: 69px;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.staff .staff_nav.is-fix {
  position: -webkit-sticky;
  position: sticky;
}
.staff .staff_nav > ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 10px;
  justify-content: space-between;
}
.staff .staff_nav > ul > li {
  width: calc((100% - 10px) / 2);
}
.staff .staff_nav > ul > li:nth-child(n+3) {
  margin-top: 5px;
}
.staff .staff_nav > ul > li > button {
  width: 100%;
  font-feature-settings: "palt";
  background: #bdcfe5;
  color: #000;
  border: 1px solid #bdcfe5;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
  cursor: pointer;
}
.staff .staff_nav .staff_nav__link {
  position: relative;
}
.staff .staff_nav .staff_nav__link.is-active {
  opacity: 0.7;
}
.staff .staff_nav .staff_nav__link.staff_nav__link--all > button {
  background: #fff;
  border-color: #000;
}
.staff .staff_nav .staff_nav__link.staff_nav__link--field > button {
  background: #fff;
  border-color: #000;
  position: relative;
  padding-left: 21px;
  padding-right: 21px;
}
.staff .staff_nav .staff_nav__link.staff_nav__link--field > button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}
.staff .staff_nav .staff_nav__link.staff_nav__link--field > button.is-open::after {
  transform: translateY(-50%) rotate(-180deg);
}
.staff .staff_nav .staff_nav__field_outer {
  display: none;
  width: calc(200% + 10px);
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding-bottom: 10px;
}
.staff .staff_nav .staff_nav__field {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staff .staff_nav .staff_nav__field > li {
  width: calc((100% - 10px) / 2);
}
.staff .staff_nav .staff_nav__field > li:nth-child(n+3) {
  margin-top: 5px;
}
.staff .staff_nav .staff_nav__field > li > button {
  width: 100%;
  font-feature-settings: "palt";
  background: #bdcfe5;
  color: #000;
  border: 1px solid #bdcfe5;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
  cursor: pointer;
}
.staff .staff_nav .staff_nav__field .staff_nav__link > button {
  color: #fff;
}
.staff .staff_nav .staff_nav__field .staff_nav__link.staff_nav__link--advertising button {
  background: #9f9f9f;
  border-color: #9f9f9f;
}
.staff .staff_nav .staff_nav__field .staff_nav__link.staff_nav__link--consultant button {
  background: #a894c1;
  border-color: #a894c1;
}
.staff .staff_nav .staff_nav__field .staff_nav__link.staff_nav__link--solutions button {
  background: #e1bb73;
  border-color: #e1bb73;
}
.staff .staff_nav .staff_nav__field .staff_nav__link.staff_nav__link--support button {
  background: #d19598;
  border-color: #d19598;
}
.staff .staff__title {
  height: 0;
  overflow: hidden;
}
.staff .staff_list {
  margin-top: 20px;
  padding: 10px;
}
.staff .staff_list .staff_list__list {
  position: relative;
  padding-bottom: 50px;
  min-height: 100vh;
  transition: height 0.3s;
  overflow: hidden;
  height: 280.5vw;
}
.staff .staff_list .staff_list__list li:nth-child(1) {
  top: 0vw;
}
.staff .staff_list .staff_list__list li:nth-child(2) {
  top: 0vw;
}
.staff .staff_list .staff_list__list li:nth-child(3) {
  top: 25.5vw;
}
.staff .staff_list .staff_list__list li:nth-child(4) {
  top: 51vw;
}
.staff .staff_list .staff_list__list li:nth-child(5) {
  top: 51vw;
}
.staff .staff_list .staff_list__list li:nth-child(6) {
  top: 76.5vw;
}
.staff .staff_list .staff_list__list li:nth-child(7) {
  top: 102vw;
}
.staff .staff_list .staff_list__list li:nth-child(8) {
  top: 102vw;
}
.staff .staff_list .staff_list__list li:nth-child(9) {
  top: 127.5vw;
}
.staff .staff_list .staff_list__list li:nth-child(10) {
  top: 153vw;
}
.staff .staff_list .staff_list__list li:nth-child(11) {
  top: 153vw;
}
.staff .staff_list .staff_list__list li:nth-child(12) {
  top: 178.5vw;
}
.staff .staff_list .staff_list__list li:nth-child(13) {
  top: 204vw;
}
.staff .staff_list .staff_list__list li:nth-child(14) {
  top: 204vw;
}
.staff .staff_list .staff_list__list li:nth-child(15) {
  top: 229.5vw;
}
.staff .staff_list .staff_list__list li {
  width: 49%;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: rotate(-45deg) scale(0);
  transition: top 1s, left 1s;
  pointer-events: none;
}
.staff .staff_list .staff_list__list li:nth-child(3n-1) {
  left: 51%;
}
.staff .staff_list .staff_list__list li:nth-child(3n) {
  left: 25.5%;
}
.staff .staff_list .staff_list__list li.is-active {
  animation: 1s zoom-in forwards;
  pointer-events: auto;
}
.staff .staff_list .staff_list__list li.is-none {
  animation: 0.6s zoom-out forwards;
  pointer-events: none;
}
.staff footer {
  margin-top: 0;
}
.staff.detail .container {
  background: url("/sp/staff/detail/images/br_staff_detail_t.png") repeat-x top center/165px, url("/sp/staff/detail/images/br_staff_detail_b.png") repeat-x bottom center/165px;
  padding-bottom: 50px;
  position: relative;
}
.staff.detail .container::before {
  content: "";
  display: block;
  background: url("/sp/staff/detail/images/br_staff_detail_l.png") repeat-y top left/20px;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.staff.detail .container::after {
  content: "";
  display: block;
  background: url("/sp/staff/detail/images/br_staff_detail_r.png") repeat-y top right/20px;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.staff.detail .staff_detail {
  padding-top: 50px;
}
.staff.detail .staff_detail .staff_detail__copy {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 25px;
}
.staff.detail .staff_detail .staff_detail__photo {
  margin-top: 20px;
}
.staff.detail .staff_detail .staff_detail__box {
  margin-top: 20px;
  padding: 0 25px;
}
.staff.detail .staff_detail .staff_detail__sub {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}
.staff.detail .staff_detail .staff_detail__name {
  margin-top: 5px;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: bold;
}
.staff.detail .staff_detail .staff_detail__name_en {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.staff.detail .staff_detail .staff_detail__text {
  font-size: 1.5rem;
  margin-top: 15px;
}
.staff .staff_detail_nav {
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0 25px;
  justify-content: space-between;
}
.staff .staff_detail_nav li {
  width: calc((100% - 10px) / 2);
}
.staff .staff_detail_nav li:nth-child(n+3) {
  margin-top: 5px;
}
.staff .staff_detail_nav li a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-feature-settings: "palt";
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 5px;
  cursor: pointer;
}
.staff .staff_detail_nav .staff_detail_nav__link {
  border: 1px solid;
  opacity: 0.2;
  pointer-events: none;
}
.staff .staff_detail_nav .staff_detail_nav__link.is-active {
  opacity: 1;
}
.staff .staff_detail_nav .staff_detail_nav__link.is-active a {
  pointer-events: auto;
}
.staff .staff_detail_nav .staff_detail_nav__link.staff_detail_nav__link--advertising {
  background: #9f9f9f;
  border-color: #9f9f9f;
}
.staff .staff_detail_nav .staff_detail_nav__link.staff_detail_nav__link--consultant {
  background: #a894c1;
  border-color: #a894c1;
}
.staff .staff_detail_nav .staff_detail_nav__link.staff_detail_nav__link--solutions {
  background: #e1bb73;
  border-color: #e1bb73;
}
.staff .staff_detail_nav .staff_detail_nav__link.staff_detail_nav__link--support {
  background: #d19598;
  border-color: #d19598;
}
.staff .staff_detail_stuff {
  padding: 0 25px;
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.staff .staff_detail_stuff li {
  width: 32%;
  margin-top: 10px;
  margin-right: 2%;
  transform: rotate(-45deg) scale(0.7);
}
.staff .staff_detail_stuff li:nth-child(3n) {
  margin-right: 0;
}

.login .login__title {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.login .login_sub_btn {
  display: inline-block;
  font-size: 0.6em;
  padding: 5px 35px 5px 14px;
  margin-left: 15px;
  background: #3eb0d3;
  position: relative;
  border-radius: 5px;
  vertical-align: baseline;
  flex-shrink: 0;
}
.login .schools {
  margin-top: 30px;
  padding: 0 20px;
  color: #000;
}
.login .schools .schools__box {
  padding: 10px;
  background: #efece3;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.login .schools .schools__box + .schools__box {
  margin-top: 10px;
}
.login .schools .schools__title {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  background: #004795;
  text-align: center;
  padding: 10px;
}
.login .schools .schools__title + .schools__year {
  margin-top: 5px;
}
.login .schools .schools__title a {
  position: relative;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .schools .schools__title a .ico_link01--sp {
  position: absolute;
  top: 45%;
  right: 17px;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
}
.login .schools .schools__title a .ico_link01--sp::before, .login .schools .schools__title a .ico_link01--sp::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: #fff;
}
.login .schools .schools__title a .ico_link01--sp::before {
  top: 0;
  left: 0;
  border-width: 2px;
}
.login .schools .schools__title a .ico_link01--sp::after {
  top: 4px;
  left: 4px;
  border-width: 0 2px 2px 0;
}
.login .schools .schools__year {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.login .schools .schools__course_list {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.login .schools .schools__course_list li {
  margin-top: 5px;
  margin-right: 20px;
  font-size: 1.5rem;
}
.login .schools .schools__course_list li:last-child {
  margin-right: 0;
}
/*# sourceMappingURL=style.css.map */
