@charset "UTF-8";
/*-------------- ブレークポイント作成 ここから ----------------*/
/*-------------- ブレークポイント作成 ここまで ----------------*/
/*
	font-sizeを一括指定する(vwのfunctionに依存)
	----------------------------------------
	$pc：pcの基本フォントサイズ（ex. 16px）
	$sp：pcの基本フォントサイズ（ex. 12px）
	$max：vwを解除するwindow幅上限（ex. 1920px）
	$min：vwを解除するwindow幅下限（ex. 767px）
*/
/*
	px を vw に変換
	----------------------------------------
	$px：（ex. 16）
	$base：基準とするデザインカンプのサイズ（ex. 1920）
*/
/*
	light-heightを自動計算
	----------------------------------------
	$fontSize：フォントサイズ（ex. 16）
	$height：高さ（ex. 32）
*/
/*=======================================================

 font-family
 android対策のため、明朝体はwebフォント読み込み

========================================================*/
/*=======================================================

 color

========================================================*/
/*=======================================================

 transition

========================================================*/
/*=======================================================

	ベースcss

========================================================*/
.mscs__wrapper {
  -webkit-text-size-adjust: 100%;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper {
    font-size: 1.4rem;
  }
}

.mscs__wrapper *,
.mscs__wrapper *::before,
.mscs__wrapper *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mscs__wrapper a {
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: inherit;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}

.mscs__wrapper a:hover {
  opacity: .6;
  cursor: pointer;
}

.mscs__wrapper a:focus {
  outline: none;
}

.mscs__wrapper a img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.mscs__wrapper img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

.mscs__wrapper h1, .mscs__wrapper h2, .mscs__wrapper h3, .mscs__wrapper h4, .mscs__wrapper h5 {
  line-height: 1.5;
}

.mscs__wrapper p {
  line-height: 2.0;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper p {
    font-size: 1.4rem;
  }
}

/*=======================================================

	utility

========================================================*/
.displayNone {
  display: none;
}

.inner, .inner-wide {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .inner, .inner-wide {
    padding: 0 5%;
  }
}

.inner {
  max-width: 1040px;
}

.crevice {
  background-image: none;
}

/*=======================================================

 フェードインアニメーション
 is-showクラス付与でフェードインする。
 ※※jsでクラス付与する。

 sample 
 <a class="anime_fadeIn">リンク</a>

========================================================*/
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (min-width: 768px) {
  .js-fadeIn {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
}

.js-fadeIn.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*=======================================================

スライドアニメーション
is-showクラス付与で擬似要素のブロックがスライド→表示。
※※jsでクラス付与する。

========================================================*/
.anime-slide {
  position: relative;
  overflow: hidden;
}

.anime-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

@-webkit-keyframes slide-before {
  100% {
    width: 0;
  }
}

@keyframes slide-before {
  100% {
    width: 0;
  }
}

.anime-slide.is-show::before {
  -webkit-animation: slide-before 0.4s ease-out 0.2s 1 forwards;
          animation: slide-before 0.4s ease-out 0.2s 1 forwards;
}

/*=======================================================

テキストスライドアニメーション
is-showクラス付与で擬似要素のブロックがスライド→表示。
※※jsでクラス付与する。

========================================================*/
.anime-slideText {
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
}

.anime-slideText span {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
}

.anime-slideText.is-show,
.anime-slideText.is-show span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*=======================================================

	コンタクトエリア

========================================================*/
.mscs__wrapper .contact {
  background-image: url(/-/media/image/common/contact_bg-PC.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  text-align: center;
  padding: 55px 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact {
    background-image: url(/-/media/image/common/contact_bg-SP.png);
    padding: 35px 5%;
  }
}

.mscs__wrapper .contact__EnTitle {
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .contact__EnTitle {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__EnTitle {
    font-size: 2.6rem;
  }
}

.mscs__wrapper .contact__JaTitle {
  display: inline-block;
  line-height: 1;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .contact__JaTitle {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__JaTitle {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__JaTitle {
    margin-top: 0px;
  }
}

.mscs__wrapper .contact__textMincho {
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.5 !important;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .contact__textMincho {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__textMincho {
    font-size: 2.2rem;
  }
}

.mscs__wrapper .contact__textGothic {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .contact__textGothic {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__textGothic {
    font-size: 1.8rem;
  }
}

.mscs__wrapper .contact__link {
  width: 100%;
  max-width: 546px;
  background-color: #FFF;
  border-width: 2px;
  border-style: solid;
  border-color: #003176;
  color: #003176;
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1;
  margin: 18px auto 0;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .contact__link {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__link {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__link {
    margin-top: 28px;
  }
}

.mscs__wrapper .contact__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 28px 10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__link a {
    padding: 22px 10px;
  }
}

.mscs__wrapper .contact__link .contact__arrow {
  display: inline-block;
  width: 43px;
  height: 10px;
  border-bottom: 1px solid #003176;
  position: relative;
  top: 4px;
  right: -6px;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .contact__link .contact__arrow {
    width: 34px;
    top: 0;
  }
}

.mscs__wrapper .contact__link .contact__arrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  border-right: 2px solid #003176;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  position: absolute;
  right: 0;
  bottom: 0;
}

.mscs__wrapper .contact__link:hover {
  background-color: #003176;
  border-color: #FFF;
  color: #FFF;
}

.mscs__wrapper .contact__link:hover a {
  opacity: 1;
  text-decoration: none !important;
}

.mscs__wrapper .contact__link:hover .contact__arrow {
  border-bottom: 1px solid #FFF;
}

.mscs__wrapper .contact__link:hover .contact__arrow::after {
  border-right: 2px solid #FFF;
}

/*=======================================================

	coverImg

========================================================*/
.mscs__wrapper .coverImg {
  position: relative;
}

.mscs__wrapper .coverImg__img {
  width: 100%;
}

.mscs__wrapper .coverImg .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .coverImg .inner {
    padding: 0;
  }
}

.mscs__wrapper .coverImg .inner .coverImg__title {
  display: inline-block;
  color: #003176;
  font-weight: bold;
  text-align: left;
  padding: 25px 25px 25px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .coverImg .inner .coverImg__title {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .coverImg .inner .coverImg__title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .coverImg .inner .coverImg__title {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
    line-height: 1.2;
    padding: 10px 10px 10px 5%;
  }
}

.mscs__wrapper .coverImg .inner .coverImg__title .coverImg__smText {
  display: block;
  color: inherit;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .coverImg .inner .coverImg__title .coverImg__smText {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .coverImg .inner .coverImg__title .coverImg__smText {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .coverImg .inner .coverImg__bg {
  width: 100vw;
  height: 120px;
  background-color: #FFF;
  opacity: 0.8;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
  margin-left: -100%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .coverImg .inner .coverImg__bg {
    display: none;
  }
}

/*=======================================================

	footer

========================================================*/
section.footer_contact .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  section.footer_contact .container {
    padding: 0 5%;
  }
}

section.footer_contact .container .btn_base {
  width: 100%;
  background: #FFF;
  border: 1px solid #003176;
  border-radius: 0;
  color: #003176;
  padding: 20px 10px;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (max-width: 767px) {
  section.footer_contact .container .btn_base {
    width: 90%;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1;
    margin: auto;
  }
}

section.footer_contact .container .btn_base:hover {
  background-color: #003176;
  color: #FFF;
}

/*=======================================================

	グレーボックス

========================================================*/
.mscs__wrapper .graybox {
  width: 100%;
  background-color: #f2f2f2;
  padding: 40px 40px 30px 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox {
    padding: 20px 18px 14px;
  }
}

.mscs__wrapper .graybox__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex {
    display: block;
  }
}

.mscs__wrapper .graybox__flex .graybox__flexLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background-color: #003176;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .graybox__flex .graybox__flexLabel {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex .graybox__flexLabel {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex .graybox__flexLabel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mscs__wrapper .graybox__flex ul {
  list-style-type: disc;
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex ul {
    margin-top: 10px;
    margin-left: 0;
  }
}

.mscs__wrapper .graybox__flex li {
  color: #003176;
  margin-left: 1.5em;
  line-height: 1.3;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .graybox__flex li {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex li {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__flex li {
    line-height: 1.5;
  }
}

.mscs__wrapper .graybox__flex li::marker {
  color: #003176;
}

.mscs__wrapper .graybox__flex li .text-highlighter::before {
  border-left: 0.4em solid #f2f2f2;
}

.mscs__wrapper .graybox__flex li .text-highlighter::after {
  border-right: 0.4em solid #f2f2f2;
}

.mscs__wrapper .graybox__text {
  color: #003176;
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .graybox__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .graybox__text {
    margin-top: 10px;
  }
}

/*=======================================================

	見出し

========================================================*/
.mscs__wrapper .heading-check, .mscs__wrapper .heading-customer, .mscs__wrapper .heading-light {
  font-weight: bold;
}

.mscs__wrapper .heading-check::before, .mscs__wrapper .heading-customer::before, .mscs__wrapper .heading-light::before {
  content: "";
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mscs__wrapper .heading-square {
  font-weight: bold;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-square {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-square {
    font-size: 1.8rem;
  }
}

.mscs__wrapper .heading-square::before {
  content: "■";
  color: #003176;
  margin-right: 5px;
}

.mscs__wrapper .heading-check {
  color: #003176;
  line-height: 1.5;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-check {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-check {
    font-size: 2rem;
  }
}

.mscs__wrapper .heading-check::before {
  background-image: url(/-/media/image/common/icon_check.svg);
  width: 30px;
  height: 30px;
  margin-right: 8px;
  vertical-align: sub;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-check::before {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-customer {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-customer {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .heading-customer::before {
  background-image: url(/-/media/image/common/icon_customer.svg);
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: text-bottom;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-customer::before {
    width: 22px;
    height: 22px;
    margin-right: 8px;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-light {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-light {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .heading-light::before {
  background-image: url(/-/media/image/common/icon_light.svg);
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: sub;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-light::before {
    width: 22px;
    height: 22px;
    margin-right: 8px;
  }
}

.mscs__wrapper .heading-smallBlue {
  color: #003176;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-smallBlue {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-smallBlue {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .heading-line {
  border-left: 3px solid #003176;
  font-weight: bold;
  line-height: 1;
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .heading-line {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .heading-line {
    font-size: 2.1rem;
  }
}

/*=======================================================

	リストスタイル

========================================================*/
.mscs__wrapper .list-dots li {
  line-height: 2;
  padding-left: 1.3em;
  position: relative;
}

.mscs__wrapper .list-dots li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/*=======================================================
	mv
========================================================*/
.mscs__wrapper .mv {
  position: relative;
}

.mscs__wrapper .mv__img {
  width: 100%;
}

.mscs__wrapper .mv__title {
  color: #003176;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 34px 4% 32px 4%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .mv__title {
    font-size: 4.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .mv__title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .mv__title {
    padding: 20px 5% 15px 5%;
  }
}

.mscs__wrapper .mv__title span {
  display: block;
  border-bottom: 2px solid #003176;
  color: inherit;
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  width: 910px;
  margin-bottom: 4px;
  padding-bottom: 10px;
  text-align: left;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .mv__title span {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .mv__title span {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .mv__title span {
    width: auto;
    border-width: 1px;
    padding-bottom: 6px;
    margin-bottom: 5px;
  }
}

.mscs__wrapper .mv__blendBg {
  width: 1000px;
  height: 170px;
  background-color: #ADDAFF;
  mix-blend-mode: screen;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .mv__blendBg {
    width: 340px;
    height: 131px;
    max-width: 100%;
  }
}

@media all and (-ms-high-contrast: none) {
  .mscs__wrapper .mv__blendBg {
    background-color: #e3f2f8;
    opacity: 0.67;
  }
}

/*=======================================================
	nav
	.nav__itemに.active付与で下線が付きます
========================================================*/
.mscs__wrapper .nav {
  width: 100%;
  background-color: #003176;
  color: #FFF;
  padding: 23px 10px 20px;
  position: static;
}

.mscs__wrapper .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mscs__wrapper .nav__item {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.mscs__wrapper .nav__item + .nav__item {
  margin-left: 54px;
}

.mscs__wrapper .nav__item + .nav__item::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #FFF;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  position: absolute;
  top: 0.5vw;
  left: -30px;
}

.mscs__wrapper .nav__item a {
  padding: 8px 0;
}

.mscs__wrapper .nav__item a:hover {
  text-decoration: none;
}

.mscs__wrapper .nav__item.active a {
  border-bottom: 1px solid #FFF;
}

.mscs__wrapper .nav.fixed {
  position: fixed;
  left: 0;
  z-index: 10;
}

/*=======================================================
	nav-service
	.nav-service__itemに.active付与で下線が付きます（pcのみ）
========================================================*/
.mscs__wrapper .nav-service {
  width: 100%;
  background-color: #151515;
  color: #FFF;
  padding: 25px 10px 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service {
    padding: 0;
  }
}

.mscs__wrapper .nav-service::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid #151515;
  border-right: 15px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 15px solid transparent;
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service::after {
    content: none;
  }
}

.mscs__wrapper .nav-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__list {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mscs__wrapper .nav-service__item {
  font-weight: bold;
  line-height: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .nav-service__item {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__item {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__item {
    width: 100%;
  }
}

.mscs__wrapper .nav-service__item + .nav-service__item {
  margin-left: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__item + .nav-service__item {
    margin-left: 0px;
  }
}

.mscs__wrapper .nav-service__item a {
  padding-bottom: 8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__item a {
    width: 100%;
    border-top: 1px solid #FFF;
    padding: 17px 10px;
  }
}

.mscs__wrapper .nav-service__item a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__item span::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #151515;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    position: relative;
    top: 0px;
    right: -5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .nav-service__item.active a {
    border-bottom: 1px solid #FFF;
  }
}

.mscs__wrapper .nav-service__toggle-trigger {
  display: block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 17px 10px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .nav-service__toggle-trigger {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .nav-service__toggle-trigger {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .nav-service__toggle-trigger {
    display: none;
  }
}

.mscs__wrapper .nav-service__toggle-trigger span::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid #FFF;
  border-right: 7px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 7px solid transparent;
  position: relative;
  top: 12px;
  right: -8px;
}

/*=======================================================

	テーブル

========================================================*/
.mscs__wrapper .table-01, .mscs__wrapper .table-02 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-01, .mscs__wrapper .table-02 {
    border-bottom: 1px solid #adadad;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .table-01 tr:last-of-type th, .mscs__wrapper .table-02 tr:last-of-type th {
    border-bottom: 1px solid #151515;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .table-01 tr:last-of-type td, .mscs__wrapper .table-02 tr:last-of-type td {
    border-bottom: 1px solid #adadad;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .table-01 th, .mscs__wrapper .table-02 th, .mscs__wrapper .table-01 td, .mscs__wrapper .table-02 td {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-01 th, .mscs__wrapper .table-02 th, .mscs__wrapper .table-01 td, .mscs__wrapper .table-02 td {
    font-size: 1.4rem;
  }
}

.mscs__wrapper .table-01 th, .mscs__wrapper .table-02 th {
  background-color: #f2f2f2;
  border-top: 1px solid #151515;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-01 th, .mscs__wrapper .table-02 th {
    display: block;
    width: 100%;
    line-height: 1.3;
    padding: 15px 10px;
  }
}

.mscs__wrapper .table-01 td, .mscs__wrapper .table-02 td {
  border-top: 1px solid #adadad;
  line-height: 2;
  padding: 22px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-01 td, .mscs__wrapper .table-02 td {
    display: block;
    width: 100%;
    border-top: none;
    margin: -3px 0;
    padding: 15px 10px;
  }
}

.mscs__wrapper .table-01 th {
  width: 195px;
  padding: 25px 0 25px 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-01 th {
    width: 100%;
    padding: 15px 10px;
  }
}

.mscs__wrapper .table-01 td p + p {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .table-02 tr *:first-of-type {
    width: 195px;
    border-right: 1px solid #adadad;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-02 tr td:nth-of-type(1) {
    background-color: #f2f2f2;
    border-top: 1px solid #151515;
    padding: 15px 10px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-02 tr td:nth-of-type(2) {
    padding: 15px 10px;
  }
}

.mscs__wrapper .table-02 th {
  border-top: 1px solid #adadad;
  padding: 25px 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .table-02 th {
    display: none;
  }
}

/*=======================================================

	テキスト系の細かい装飾

========================================================*/
.mscs__wrapper .link-pdf {
  display: inline-block;
  line-height: 1.5;
  text-decoration: underline;
}

.mscs__wrapper .link-pdf::after {
  content: url(/-/media/image/common/icon_pdf.svg);
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.mscs__wrapper .link-pdf:hover {
  text-decoration: none;
}

.mscs__wrapper .link-blank, .mscs__wrapper .link-blank--gray {
  display: inline-block;
  color: #003176;
}

.mscs__wrapper .link-blank span::after, .mscs__wrapper .link-blank--gray span::after {
  content: url(/-/media/image/common/icon_window.svg);
  margin-left: 5px;
}

.mscs__wrapper .link-blank--gray {
  color: #151515;
}

.mscs__wrapper .link-blank--gray span::after {
  content: url(/-/media/image/common/icon_window-gray.svg);
}

.mscs__wrapper .link-underline {
  text-decoration: underline;
}

.mscs__wrapper .link-underline:hover {
  text-decoration: none;
}

.mscs__wrapper .text-blue {
  color: #003176;
}

.mscs__wrapper .text-black {
  color: #151515;
}

.mscs__wrapper .text-highlighter {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #dce8f0));
  background: linear-gradient(transparent 60%, #dce8f0 40%);
  margin: 0 -0.3em;
  padding: 0 0.3em 3px;
  position: relative;
  z-index: -1;
}

@media all and (-ms-high-contrast: none) {
  .mscs__wrapper .text-highlighter {
    padding: 0 0.3em 0px;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .text-highlighter {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #dce8f0));
    background: linear-gradient(transparent 50%, #dce8f0 50%);
    padding: 0 0.3em 0;
  }
}

.mscs__wrapper .text-highlighter::before {
  content: "";
  display: inline-block;
  border-top: 0 solid transparent;
  border-right: 0.4em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 0.4em solid #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mscs__wrapper .text-highlighter::after {
  content: "";
  display: inline-block;
  border-top: 1em solid transparent;
  border-right: 0.4em solid #FFF;
  border-bottom: 0em solid transparent;
  border-left: 0.4em solid transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*=======================================================

	タイトル

========================================================*/
.mscs__wrapper .title-gothic {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-gothic {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-gothic {
    font-size: 2.8rem;
  }
}

.mscs__wrapper .title-gothic span {
  display: block;
  color: #003176;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-gothic span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-gothic span {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .title-mincho {
  color: #003176;
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-mincho {
    font-size: 4.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-mincho {
    font-size: 3rem;
  }
}

.mscs__wrapper .title-mincho::before, .mscs__wrapper .title-mincho::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1px;
  background-color: #003176;
  margin: 0 15px;
  vertical-align: super;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-mincho::before, .mscs__wrapper .title-mincho::after {
    content: none;
  }
}

.mscs__wrapper .title-line {
  text-align: center;
  position: relative;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-line {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-line {
    font-size: 2rem;
  }
}

.mscs__wrapper .title-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #003176;
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-line::before {
    top: 15px;
  }
}

.mscs__wrapper .title-line span {
  display: inline-block;
  background-color: #FFF;
  color: #003176;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.mscs__wrapper .title-line--smallText::before {
  top: 52px;
}

.mscs__wrapper .title-line--smallText small {
  display: block;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-line--smallText small {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-line--smallText small {
    font-size: 1.6rem;
  }
}

.mscs__wrapper .title-number {
  color: #003176;
  font-weight: bold;
  padding-left: 68px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-number {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number {
    padding-left: 52px;
  }
}

.mscs__wrapper .title-number span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 78px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number span {
    height: 55px;
  }
}

.mscs__wrapper .title-number::before {
  content: "CASE";
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-number::before {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number::before {
    font-size: 1.4rem;
  }
}

.mscs__wrapper .title-number::after {
  content: "";
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  position: absolute;
  top: 25px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-number::after {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number::after {
    font-size: 3.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-number::after {
    top: 13px;
  }
}

.mscs__wrapper .title-number-01::after {
  content: "01";
}

.mscs__wrapper .title-number-02::after {
  content: "02";
}

.mscs__wrapper .title-number-03::after {
  content: "03";
}

.mscs__wrapper .title-number-04::after {
  content: "04";
}

.mscs__wrapper .title-number-05::after {
  content: "05";
}

.mscs__wrapper .title-number-06::after {
  content: "06";
}

.mscs__wrapper .title-bold {
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .title-bold {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .title-bold {
    font-size: 2.8rem;
  }
}

/*=======================================================

	サービス共通

========================================================*/
.service-intro {
  padding-top: 90px;
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .service-intro {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.service-intro .section-title p {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .service-intro .section-title p {
    margin-top: 20px;
  }
}

.service-intro .section-contents {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .service-intro .section-contents {
    margin-top: 20px;
  }
}

.service-intro .heading-square + p {
  margin-top: 10px;
}

.service-intro p + .heading-square {
  margin-top: 25px;
}

.service-intro p + figure {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .service-intro p + figure {
    margin-top: 30px;
  }
}

.service-intro figure + .heading-square {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .service-intro figure + .heading-square {
    margin-top: 30px;
  }
}

.service-intro .link-pdf {
  margin-top: 20px;
}

.service-intro .service-intro__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .service-intro .service-intro__flex {
    display: block;
  }
}

/*=======================================================

	sample

========================================================*/
.sample section {
  margin-top: 200px;
}

.sample__title {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}

.sample__subTitle {
  background-color: #f5f5f5;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}

.sample__other p {
  font-size: 2rem;
}

.sample__title h3, .sample__title h4 {
  margin-bottom: 50px;
}

.sample__heading h3, .sample__heading h4 {
  margin-bottom: 50px;
}

/*=======================================================

	TOPページのスタイル

========================================================*/
.mscs__wrapper .top-problem {
  position: relative;
}

.mscs__wrapper .top-problem .top-problem__title {
  background-color: #f2f2f2;
  padding: 88px 0 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__title {
    padding: 60px 0 30px;
  }
}

.mscs__wrapper .top-problem .section-contents {
  background-image: url(/-/media/image/mscs_top/top_problem_bg_01-PC.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 1400px auto;
  padding-bottom: 365px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .section-contents {
    background-size: 100% auto;
    padding-bottom: 27vw;
  }
}

@media screen and (max-width: 900px) {
  .mscs__wrapper .top-problem .section-contents {
    padding-bottom: 250px;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .section-contents {
    background-image: none;
    padding-bottom: 0;
  }
}

.mscs__wrapper .top-problem .top-problem__listWrap {
  max-width: 1185px;
  margin: 0 auto 0;
  padding: 30px 20px 43px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__listWrap {
    padding: 20px 8%;
  }
}

.mscs__wrapper .top-problem .top-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .top-problem__list {
    max-width: 770px;
    margin: auto;
  }
}

.mscs__wrapper .top-problem .top-problem__list li {
  font-weight: bold;
  margin-top: 17px;
  text-indent: -2em;
  padding-left: 40px;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-problem .top-problem__list li {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__list li {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .top-problem__list li {
    width: 100%;
    background-color: transparent;
    padding-left: 30px;
  }
}

.mscs__wrapper .top-problem .top-problem__list li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/-/media/image/common/icon_ng.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: sub;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__list li::before {
    width: 23px;
    height: 23px;
  }
}

.mscs__wrapper .top-problem .top-problem__list li:nth-of-type(odd) {
  width: 407px;
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .top-problem__list li:nth-of-type(odd) {
    width: 100%;
  }
}

.mscs__wrapper .top-problem .top-problem__bgImg {
  background-image: url(/-/media/image/mscs_top/top_problem_bg_02.png);
  background-repeat: repeat-x;
  background-size: 333px auto;
  background-position: bottom center;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 545px;
  left: 0;
  z-index: 0;
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .top-problem__bgImg {
    background-image: none;
    top: 850px;
    z-index: 3;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__bgImg {
    display: block;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
  }
}

.mscs__wrapper .top-problem .top-problem__arrowWrap {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 545px;
  left: 0;
  z-index: 7;
}

@media screen and (max-width: 1144px) {
  .mscs__wrapper .top-problem .top-problem__arrowWrap {
    background-image: none;
    top: 850px;
    z-index: 3;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__arrowWrap {
    display: block;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
  }
}

.mscs__wrapper .top-problem .top-problem__arrow {
  width: 6vw;
  max-width: 84px;
  min-width: 50px;
  position: absolute;
  top: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-problem .top-problem__arrow {
    top: 20px;
  }
}

.mscs__wrapper .top-solution {
  padding-top: 50px;
  padding-bottom: 104px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution {
    padding-top: 0;
    padding-bottom: 70px;
  }
}

.mscs__wrapper .top-solution .top-solution__text {
  margin: 28px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution .top-solution__text {
    margin: 25px 0 30px;
  }
}

.mscs__wrapper .top-solution .top-solution__text .heading-check {
  color: #151515;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-solution .top-solution__text .heading-check {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution .top-solution__text .heading-check {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution .top-solution__text .heading-check {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution .top-solution__text .heading-check::before {
    margin-right: 2px;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-solution .top-solution__text .heading-check + .heading-check {
    margin-top: 10px;
  }
}

.mscs__wrapper .top-proposal {
  background-color: #f2f2f2;
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper .top-proposal .section-contents {
  margin-top: 46px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper .top-proposal .top-proposal__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__flex {
    margin-top: -25px;
  }
}

.mscs__wrapper .top-proposal .top-proposal__flex > * {
  width: calc((100% - 50px) / 2);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__flex > * {
    width: 100%;
  }
}

.mscs__wrapper .top-proposal .top-proposal__card {
  background-color: #FFF;
  margin-top: 50px;
  padding: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__card {
    margin-top: 25px;
    padding: 20px;
  }
}

.mscs__wrapper .top-proposal .top-proposal__card .list-dots {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__card .list-dots {
    margin-top: 5px;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-proposal .top-proposal__card .title-number {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__card .title-number {
    font-size: 1.7rem;
  }
}

.mscs__wrapper .top-proposal .top-proposal__card .heading-customer {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__card .heading-customer {
    margin-top: 18px;
  }
}

.mscs__wrapper .top-proposal .top-proposal__card .heading-light {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-proposal .top-proposal__card .heading-light {
    margin-top: 18px;
  }
}

.mscs__wrapper .top-strength {
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength {
    padding: 60px 0 70px;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .inner {
    padding: 0;
  }
}

.mscs__wrapper .top-strength .section-contents {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper .top-strength .top-strength__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #003176;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__box {
    display: block;
  }
}

.mscs__wrapper .top-strength .top-strength__box + .top-strength__box {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__box + .top-strength__box {
    margin-top: 25px;
  }
}

.mscs__wrapper .top-strength .top-strength__box:nth-of-type(2n) .top-strength__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.mscs__wrapper .top-strength .top-strength__box:nth-of-type(2n) .top-strength__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mscs__wrapper .top-strength .top-strength__img {
  width: 470px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__img {
    width: 100%;
  }
}

.mscs__wrapper .top-strength .top-strength__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 34px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 34px 26px;
  }
}

.mscs__wrapper .top-strength .top-strength__text h3 {
  color: #003176;
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-strength .top-strength__text h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__text h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__text h3 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-strength .top-strength__text .list-dots {
    margin-top: 8px;
  }
}

.mscs__wrapper .top-information {
  background-color: #FFF;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper .top-information h2 {
  font-family: "Libre Baskerville", serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-information h2 {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information h2 {
    font-size: 2.6rem;
  }
}

.mscs__wrapper .top-information h2 span {
  display: block;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-information h2 span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information h2 span {
    font-size: 1.4rem;
  }
}

.mscs__wrapper .top-information .section-contents {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper .top-information .top-information__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .top-information__flex {
    margin-top: -15px;
  }
}

.mscs__wrapper .top-information .top-information__flex > * {
  width: calc((100% - 60px) / 3);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .top-information__flex > * {
    width: calc((100% - 15px) / 2);
  }
}

.mscs__wrapper .top-information .top-information__card {
  display: block;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .top-information__card {
    margin-top: 15px;
  }
}

.mscs__wrapper .top-information .top-information__img {
  position: relative;
}

.mscs__wrapper .top-information .top-information__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.mscs__wrapper .top-information .top-information__text {
  display: block;
  color: #FFF;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-information .top-information__text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .top-information__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper .top-information .top-information__text {
    white-space: nowrap;
  }
}

.mscs__wrapper .top-information .top-information__text::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  opacity: 0;
  bottom: -10px;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

.mscs__wrapper .top-information .top-information__card:hover {
  opacity: 1;
}

.mscs__wrapper .top-information .top-information__card:hover .top-information__img::after {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  opacity: 0.10;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper .top-information .top-information__card:hover .top-information__text::after {
    bottom: 0;
    opacity: 1;
  }
}

/*=======================================================

	サービス - クイック物流診断

========================================================*/
.mscs__wrapper.diagnosis {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc {
  background-color: #f2f2f2;
  padding: 90px 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc {
    padding: 65px 0;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc .section-title p {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc .section-title p {
    margin-top: 15px;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc .section-contents {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc .section-contents {
    margin-top: 25px;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc__flex {
    display: block;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc__flex figure {
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc__flex figure {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.mscs__wrapper.diagnosis .diagnosis-desc__flex figure + .heading-check {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .diagnosis-desc__flex figure + .heading-check {
    margin-top: 40px;
  }
}

.mscs__wrapper.diagnosis .service-whiteBox {
  background-color: #FFF;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .service-whiteBox {
    padding: 20px;
  }
}

.mscs__wrapper.diagnosis .service-whiteBox + .service-whiteBox {
  margin-top: 20px;
}

.mscs__wrapper.diagnosis .service-whiteBox > figure {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.diagnosis .service-whiteBox > figure {
    margin-top: 20px;
  }
}

.mscs__wrapper.diagnosis .list-dots {
  margin-top: 10px;
}

.mscs__wrapper.diagnosis .list-dots + .heading-check {
  margin-top: 30px;
}

/*=======================================================

	サービス - 物流デジタル化

========================================================*/
.mscs__wrapper.digitalization {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.digitalization {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.digitalization .digitalization-desc {
  padding: 0 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.digitalization .digitalization-desc {
    padding: 0 0 70px;
  }
}

.mscs__wrapper.digitalization .digitalization-desc .section-title p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.digitalization .digitalization-desc .section-title p {
    margin-top: 15px;
  }
}

.mscs__wrapper.digitalization .digitalization-desc .section-contents {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.digitalization .digitalization-desc .section-contents {
    margin-top: 25px;
  }
}

/*=======================================================

	サービス - 物流SCM改革

========================================================*/
.mscs__wrapper.scm {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.scm .service-intro {
  padding-bottom: 57px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .service-intro {
    padding-bottom: 35px;
  }
}

.mscs__wrapper.scm .service-intro .section-title small {
  display: block;
  font-size: 1.4rem;
  margin-top: 15px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .service-intro .section-title small {
    text-align: left;
    line-height: 2;
  }
}

.mscs__wrapper.scm .service-intro .section-title small b {
  font-weight: bold;
}

.mscs__wrapper.scm .service-intro .section-contents {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .service-intro .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper.scm .scm-desc {
  padding: 0 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .scm-desc {
    padding: 0 0 70px;
  }
}

.mscs__wrapper.scm .scm-desc .section-title p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .scm-desc .section-title p {
    margin-top: 15px;
  }
}

.mscs__wrapper.scm .scm-desc .section-contents {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.scm .scm-desc .section-contents {
    margin-top: 25px;
  }
}

.mscs__wrapper.scm .scm-desc .section-contents p {
  margin-top: 30px;
}

/*=======================================================

	サービス - Supply Chain – BPO

========================================================*/
.mscs__wrapper.bpo {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.bpo .service-intro {
  padding-bottom: 57px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro {
    padding-bottom: 35px;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents .title-line + p {
  margin-top: 20px;
}

.mscs__wrapper.bpo .service-intro .section-contents p + figure {
  margin-top: 30px;
}

.mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex {
  border-top: 1px solid #003176;
  margin-top: 40px;
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex {
    margin-top: 20px;
    padding-top: 65px;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(1) {
  width: calc(55% - 40px);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(1) {
    width: 100%;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) {
  width: 44%;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
    margin-top: 25px;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) figure + p {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) figure + p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) figure + p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) figure + p {
    margin-top: 10px;
  }
}

.mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex + .heading-square {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .service-intro .section-contents .service-intro__flex + .heading-square {
    margin-top: 30px;
  }
}

.mscs__wrapper.bpo .bpo-desc {
  background-color: #f2f2f2;
  padding: 90px 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box {
  background-color: #FFF;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box {
    padding: 18px 20px 20px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box:first-of-type {
  margin-top: 25px;
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box:nth-of-type(n+2) {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box .heading-customer {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box .heading-customer {
    margin-top: 15px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box .heading-light {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box .heading-light {
    margin-top: 10px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box .graybox + figure {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box .graybox + figure {
    margin-top: 10px;
  }
}

.mscs__wrapper.bpo .bpo-desc .bpo-desc__box .bpo-desc__arrow {
  display: block;
  width: 33px;
  height: auto;
  margin: 20px auto -30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.bpo .bpo-desc .bpo-desc__box .bpo-desc__arrow {
    width: 16px;
    margin: 5px auto -15px;
  }
}

/*=======================================================

	サービス - 物流拠点の最適化

========================================================*/
.mscs__wrapper.hub {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.hub .service-intro {
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .service-intro {
    padding-bottom: 50px;
  }
}

.mscs__wrapper.hub .service-intro .section-contents .service-intro__flex {
  margin-top: 30px;
}

.mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(1) {
  width: calc(100% - 480px);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(1) {
    width: 100%;
  }
}

.mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) {
  width: 440px;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) .title-line {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .service-intro .section-contents .service-intro__flex > div:nth-of-type(2) .title-line {
    font-size: 1.8rem;
  }
}

.mscs__wrapper.hub .service-intro .service-intro__flex + .heading-square {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .service-intro .service-intro__flex + .heading-square {
    margin-top: 60px;
  }
}

.mscs__wrapper.hub .hub-info {
  position: relative;
}

.mscs__wrapper.hub .hub-info__itemWrap {
  width: 100%;
  padding: 0 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-info__itemWrap {
    width: auto;
  }
}

.mscs__wrapper.hub .hub-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #003176;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.hub .hub-info__item {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-info__item {
    font-size: 2.1rem;
  }
}

.mscs__wrapper.hub .hub-info__item span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.hub .hub-info__item span {
    font-size: 9.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-info__item span {
    font-size: 7.2rem;
  }
}

.mscs__wrapper.hub .hub-info__item + .hub-info__item {
  margin-top: 20px;
}

.mscs__wrapper.hub .hub-desc {
  background-color: #f2f2f2;
  padding-top: 90px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.mscs__wrapper.hub .hub-desc .title-line span {
  background-color: #f2f2f2;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.hub .hub-desc .heading-check {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc .heading-check {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.hub .hub-desc .text-blue {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc .text-blue {
    font-size: 1.8rem;
  }
}

.mscs__wrapper.hub .hub-desc .section-contents {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc .section-contents {
    margin-top: 15px;
  }
}

.mscs__wrapper.hub .hub-desc .section-contents .heading-check + .heading-check {
  margin-top: 10px;
}

.mscs__wrapper.hub .hub-desc .section-contents .heading-check + .text-blue {
  line-height: 1.5;
  margin-top: 10px;
}

.mscs__wrapper.hub .hub-desc .section-contents .text-blue + .list-dots {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc .section-contents .text-blue + .list-dots {
    margin-top: 5px;
  }
}

.mscs__wrapper.hub .hub-desc .section-contents .list-dots + .heading-check {
  margin-top: 25px;
}

.mscs__wrapper.hub .hub-desc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc__flex {
    display: block;
  }
}

.mscs__wrapper.hub .hub-desc__flex > * {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.hub .hub-desc__flex > * {
    margin-right: 0;
    margin-top: 20px;
  }
}

.mscs__wrapper.hub .hub-desc__flex span {
  font-weight: bold;
}

.mscs__wrapper.hub .hub-desc__flex figure {
  margin-top: 10px;
}

/*=======================================================

	サービス - 共同物流

========================================================*/
.mscs__wrapper.joint {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.joint .service-intro {
  padding-bottom: 0;
}

.mscs__wrapper.joint .service-intro .section-contents figure + .heading-square {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .service-intro .section-contents figure + .heading-square {
    margin-top: 60px;
  }
}

.mscs__wrapper.joint .joint-desc {
  padding-top: 10px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

.mscs__wrapper.joint .joint-desc .section-title .title-line + p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc .section-title .title-line + p {
    margin-top: 10px;
  }
}

.mscs__wrapper.joint .joint-desc .section-contents {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc .section-contents {
    margin-top: 15px;
  }
}

.mscs__wrapper.joint .joint-desc__example {
  border-top: 1px solid #003176;
  margin-top: 40px;
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__example {
    margin-top: 20px;
    padding-top: 40px;
  }
}

.mscs__wrapper.joint .joint-desc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__flex {
    display: block;
  }
}

.mscs__wrapper.joint .joint-desc__flex > * {
  width: calc((100% - 30px) / 2);
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__flex > * {
    width: 100%;
    margin-top: 25px;
  }
}

.mscs__wrapper.joint .joint-desc__box {
  border: 1px solid #003176;
}

.mscs__wrapper.joint .joint-desc__box-text {
  padding: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__box-text {
    padding: 20px;
  }
}

.mscs__wrapper.joint .joint-desc__box-text .title-number {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.joint .joint-desc__box-text .title-number {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__box-text .title-number {
    font-size: 1.7rem;
  }
}

.mscs__wrapper.joint .joint-desc__box-text .heading-customer {
  margin-top: 20px;
}

.mscs__wrapper.joint .joint-desc__box-text .heading-light {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.joint .joint-desc__box-text .heading-light {
    margin-top: 18px;
  }
}

.mscs__wrapper.joint .joint-desc__box-text .list-dots {
  margin-top: 5px;
}

/*=======================================================

	サービス - 物流業務アウトソース

========================================================*/
.mscs__wrapper.outsource {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .service-intro .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box {
  padding: 90px 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-bold + p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-bold + p {
    margin-top: 20px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box p + ul {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box p + ul {
    margin-top: 20px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box li + li {
  margin-top: 25px;
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line {
  color: #003176;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line {
    margin-top: 60px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line + p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line + p {
    margin-top: 15px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line + figure {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box .title-line + figure {
    margin-top: 15px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box p + figure {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box p + figure {
    margin-top: 15px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(1) {
  background-color: #f2f2f2;
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(1) figure {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(1) figure {
    margin-top: 30px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(3) {
  background-color: #f2f2f2;
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(3) .title-line {
  margin-top: 25px;
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(3) .title-line span {
  background-color: #f2f2f2;
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex {
    margin-top: 8px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex figure {
  width: 458px;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex figure {
    width: 100%;
    margin-right: 0;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex .heading-square {
  line-height: 1.5;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .outsource-desc__flex .heading-square {
    margin-top: 15px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .list-dots {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .list-dots {
    margin-top: 10px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .list-dots li {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__box:nth-of-type(4) .title-line--smallText::before {
    top: 40px;
  }
}

.mscs__wrapper.outsource .outsource-desc .outsource-desc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.outsource .outsource-desc .outsource-desc__flex {
    display: block;
  }
}

/*=======================================================

	 企業情報ページのスタイル

========================================================*/
.mscs__wrapper.about {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.about .about-nav {
  width: 100%;
  background-color: #f2f2f2;
  color: #003176;
  padding: 20px 10px 16px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav {
    padding: 0;
  }
}

.mscs__wrapper.about .about-nav .about-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 0;
  }
}

.mscs__wrapper.about .about-nav .about-nav__item {
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-nav .about-nav__item {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item {
    border-bottom: 1px solid #FFF;
    margin-top: 0;
  }
}

.mscs__wrapper.about .about-nav .about-nav__item + .about-nav__item {
  margin-left: 42px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item + .about-nav__item {
    border-left: 1px solid #FFF;
    margin-left: 0;
  }
}

.mscs__wrapper.about .about-nav .about-nav__item + .about-nav__item::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #003176;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  position: absolute;
  top: 0.5vw;
  left: -19px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item + .about-nav__item::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(1), .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(2) {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(3), .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(4), .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(5) {
    width: 33.33%;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(6), .mscs__wrapper.about .about-nav .about-nav__item:nth-of-type(7) {
    width: 100%;
  }
}

.mscs__wrapper.about .about-nav .about-nav__item a {
  padding: 8px 9px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-nav .about-nav__item a {
    width: 100%;
    padding: 17px 5px;
    text-align: center;
  }
}

.mscs__wrapper.about .about-nav .about-nav__item span::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #003176;
  border-bottom: 1px solid #003176;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: -5px;
}

.mscs__wrapper.about .about-message {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message {
    padding: 40px 0 65px;
  }
}

.mscs__wrapper.about .about-message .about-message__title {
  color: #003176;
  font-weight: bold;
  line-height: 1.2;
  margin-left: -12px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-message .about-message__title {
    font-size: 5.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__title {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__title {
    margin-left: 0;
  }
}

.mscs__wrapper.about .about-message .about-message__title span {
  display: block;
  color: inherit;
  opacity: 0.15;
  font-family: "Libre Baskerville", serif;
  font-weight: normal;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-message .about-message__title span {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__title span {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__title span {
    margin-bottom: 5px;
    padding-left: 10px;
  }
}

.mscs__wrapper.about .about-message .about-message__lead {
  font-weight: bold;
  margin-top: 15px;
  text-indent: -1.1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-message .about-message__lead {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__lead {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__lead {
    line-height: 1.8;
    margin-top: 10px;
  }
}

.mscs__wrapper.about .about-message .about-message__lead::before {
  content: "ー";
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__lead::before {
    margin-right: 3px;
  }
}

.mscs__wrapper.about .about-message .about-message__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__flex {
    display: block;
  }
}

.mscs__wrapper.about .about-message .about-message__pics {
  width: 37%;
  max-width: 370px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__pics {
    width: 100%;
    max-width: auto;
  }
}

.mscs__wrapper.about .about-message .about-message__pics p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__pics p {
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-message .about-message__pics p span:first-of-type {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__pics p span:first-of-type {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__pics p span:nth-of-type(2) {
    font-size: 1.6rem;
  }
}

.mscs__wrapper.about .about-message .about-message__text {
  width: calc(62% - 35px);
  margin-left: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-message .about-message__text {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

.mscs__wrapper.about .about-message .about-message__text p + p {
  margin-top: 20px;
}

.mscs__wrapper.about .about-message .section-contents {
  margin-top: 20px;
}

.mscs__wrapper.about .about-mission {
  background-color: #f2f2f2;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper.about .about-mission .about-mission__title {
  font-weight: bold;
  margin-bottom: -0.8em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-mission .about-mission__title {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__title {
    font-size: 2.8rem;
  }
}

.mscs__wrapper.about .about-mission .about-mission__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 100px 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__flex {
    display: block;
    padding: 45px 10px 30px;
  }
}

.mscs__wrapper.about .about-mission .about-mission__box {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__box:nth-of-type(2) {
    margin-top: 40px;
  }
}

.mscs__wrapper.about .about-mission .about-mission__box p:first-of-type {
  color: #003176;
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-mission .about-mission__box p:first-of-type {
    font-size: 5.3rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__box p:first-of-type {
    font-size: 4rem;
  }
}

.mscs__wrapper.about .about-mission .about-mission__box p:nth-of-type(2) {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-mission .about-mission__box p:nth-of-type(2) {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__box p:nth-of-type(2) {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__box p:nth-of-type(2) {
    margin-top: 10px;
  }
}

.mscs__wrapper.about .about-mission .about-mission__line {
  display: inline-block;
  width: 1px;
  height: 170px;
  background-color: #003176;
  -webkit-transform: skew(-30deg);
          transform: skew(-30deg);
  margin: 0 10% 0 10%;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-mission .about-mission__line {
    display: none;
  }
}

.mscs__wrapper.about .about-mission .section-contents {
  background-color: #FFF;
}

.mscs__wrapper.about .about-company {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-company {
    padding-top: 65px;
  }
}

.mscs__wrapper.about .about-company .table-01 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-company .table-01 {
    margin-top: 25px;
  }
}

.mscs__wrapper.about .about-officer {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-officer {
    padding-top: 65px;
  }
}

.mscs__wrapper.about .about-officer .table-01 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-officer .table-01 {
    margin-top: 25px;
  }
}

.mscs__wrapper.about .about-history {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-history {
    padding-top: 65px;
  }
}

.mscs__wrapper.about .about-history .table-01 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-history .table-01 {
    margin-top: 25px;
  }
}

.mscs__wrapper.about .about-group {
  padding: 90px 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper.about .about-group .section-contents {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper.about .about-group .about-group__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .about-group__list {
    display: block;
  }
}

.mscs__wrapper.about .about-group .about-group__item {
  width: calc((100% - 20px) / 2);
  border-bottom: 1px solid #adadad;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .about-group__item {
    width: 100%;
  }
}

.mscs__wrapper.about .about-group .about-group__item:nth-of-type(1) {
  border-top: 1px solid #adadad;
}

.mscs__wrapper.about .about-group .about-group__item:nth-of-type(2) {
  border-top: 1px solid #adadad;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .about-group__item:nth-of-type(2) {
    border-top: none;
  }
}

.mscs__wrapper.about .about-group .about-group__item a {
  display: block;
  background-color: transparent;
  text-align: left;
  padding: 20px;
  -webkit-transition-property: opacity, background-color;
  transition-property: opacity, background-color;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-group .about-group__item a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .about-group__item a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-group .about-group__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 76px;
    padding: 10px;
  }
}

.mscs__wrapper.about .about-group .about-group__item a:hover {
  background-color: #f2f2f2;
  opacity: 1;
}

.mscs__wrapper.about .about-info {
  background-color: #f2f2f2;
  padding-top: 60px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.about .about-info .section-contents {
  margin-top: 50px;
}

.mscs__wrapper.about .about-info .about-info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__flex {
    display: block;
  }
}

.mscs__wrapper.about .about-info .about-info__flex > * {
  width: calc((100% - 50px) / 2);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__flex > * {
    width: 100%;
  }
}

.mscs__wrapper.about .about-info .about-info__item {
  display: block;
  background-color: #FFF;
  margin-top: 25px;
  text-align: center;
  padding: 40px 10px 32px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__item {
    padding: 30px 10px 28px;
  }
}

.mscs__wrapper.about .about-info .about-info__item:hover {
  text-decoration: none;
}

.mscs__wrapper.about .about-info .about-info__item figure {
  width: 215px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__item figure {
    width: 164px;
  }
}

.mscs__wrapper.about .about-info .about-info__item p {
  color: #003176;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 22px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.about .about-info .about-info__item p {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__item p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.about .about-info .about-info__item p {
    margin-top: 15px;
  }
}

/*=======================================================

	関連情報ページのスタイル

========================================================*/
.mscs__wrapper.info {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info {
    padding-bottom: 70px;
  }
}

.mscs__wrapper.info .title-bold {
  text-align: left;
}

.mscs__wrapper.info .info-nav {
  width: 100%;
  background-color: #f2f2f2;
  color: #003176;
  padding: 20px 10px 16px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav {
    padding: 0;
  }
}

.mscs__wrapper.info .info-nav .info-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__list {
    display: block;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item {
  font-weight: bold;
  line-height: 1;
  position: relative;
  font-size: 1.28571vw;
}

@media screen and (min-width: 1400px) {
  .mscs__wrapper.info .info-nav .info-nav__item {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1000px) {
  .mscs__wrapper.info .info-nav .info-nav__item {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item {
    width: 100%;
    border-bottom: 1px solid #FFF;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item + .info-nav__item {
  margin-left: 54px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item + .info-nav__item {
    border-left: 1px solid #FFF;
    margin-left: 0;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item + .info-nav__item::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #003176;
  position: absolute;
  top: 34%;
  left: -20px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item + .info-nav__item::before {
    content: none;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item a {
  line-height: 1.4;
  padding: 8px 23px 8px 9px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item a {
    width: 100%;
    padding: 16px 7% 14px 5%;
    text-align: left;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #003176;
  border-bottom: 1px solid #003176;
  margin-left: 10px;
  position: absolute;
  top: 45%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item a::after {
    content: none;
  }
}

.mscs__wrapper.info .info-nav .info-nav__item span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-nav .info-nav__item span::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #003176;
    border-bottom: 1px solid #003176;
    margin-left: 10px;
    position: relative;
    top: -2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.mscs__wrapper.info .info-policy {
  padding: 95px 0 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy {
    padding: 65px 0 0;
  }
}

.mscs__wrapper.info .info-policy .section-title p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy .section-title p {
    margin-top: 20px;
  }
}

.mscs__wrapper.info .info-policy .section-contents {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy .section-contents {
    margin-top: 40px;
  }
}

.mscs__wrapper.info .info-policy .info-policy__list {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}

.mscs__wrapper.info .info-policy li {
  color: #003176;
  font-weight: bold;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-policy li {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy li {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy li {
    margin-top: 28px;
  }
}

.mscs__wrapper.info .info-policy li p {
  color: #151515;
  font-weight: normal;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-policy li p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-policy li p {
    font-size: 1.4rem;
  }
}

.mscs__wrapper.info .info-protection {
  padding: 85px 0 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection {
    padding: 55px 0 0;
  }
}

.mscs__wrapper.info .info-protection .section-title span {
  display: block;
  line-height: 2;
  margin-top: 35px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .section-title span {
    margin-top: 20px;
  }
}

.mscs__wrapper.info .info-protection .section-title p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .section-title p {
    margin-top: 20px;
  }
}

.mscs__wrapper.info .info-protection .info-protection__list {
  font-weight: bold;
  margin-top: 25px;
}

.mscs__wrapper.info .info-protection .info-protection__list li {
  line-height: 2;
  padding-left: 2em;
  position: relative;
}

.mscs__wrapper.info .info-protection .info-protection__list li > span {
  position: absolute;
  top: 0;
  left: 0;
}

.mscs__wrapper.info .info-protection .info-protection__list li + li {
  margin-top: 22px;
}

.mscs__wrapper.info .info-protection .info-protection__list + span {
  display: block;
  margin-top: 25px;
  text-align: right;
}

.mscs__wrapper.info .info-protection .info-protection__graybox {
  background-color: #f2f2f2;
  margin-top: 30px;
  padding: 30px 10px;
  text-align: center;
}

.mscs__wrapper.info .info-protection .info-protection__graybox p {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox p {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox p {
    line-height: 1.4;
  }
}

.mscs__wrapper.info .info-protection .info-protection__graybox a {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-protection .info-protection__graybox a {
    margin-top: 10px;
  }
}

.mscs__wrapper.info .info-declaration {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-declaration {
    padding: 60px 0 0;
  }
}

.mscs__wrapper.info .info-declaration .section-title p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-declaration .section-title p {
    margin-top: 20px;
  }
}

.mscs__wrapper.info .info-declaration .info-declaration__link {
  display: block;
  width: 100%;
  max-width: 370px;
  border: 1px solid #003176;
  color: #003176;
  margin-top: 40px;
  padding: 18px 10px 13px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-declaration .info-declaration__link {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-declaration .info-declaration__link {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-declaration .info-declaration__link {
    margin-top: 25px;
    padding: 13px 10px 10px;
  }
}

.mscs__wrapper.info .info-declaration .info-declaration__link::after {
  content: url(/-/media/image/common/icon_file.svg);
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.mscs__wrapper.info .info-quality {
  padding: 90px 0 100px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality {
    padding: 60px 0 70px;
  }
}

.mscs__wrapper.info .info-quality .section-contents {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .section-contents {
    margin-top: 30px;
  }
}

.mscs__wrapper.info .info-quality .text-blue {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-quality .text-blue {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .text-blue {
    font-size: 1.8rem;
  }
}

.mscs__wrapper.info .info-quality .table-02 {
  margin-top: 20px;
}

.mscs__wrapper.info .info-quality .table-02 + span {
  display: block;
  margin-top: 15px;
  text-align: right;
}

.mscs__wrapper.info .info-quality .info-quality__policy {
  font-weight: bold;
}

.mscs__wrapper.info .info-quality .info-quality__policy p {
  line-height: 1.5;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-quality .info-quality__policy p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__policy p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__policy p {
    line-height: 2;
    margin-top: 10px;
  }
}

.mscs__wrapper.info .info-quality .info-quality__policy span {
  display: block;
  line-height: 2;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mscs__wrapper.info .info-quality .info-quality__policy span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__policy span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__policy span {
    margin-top: 10px;
  }
}

.mscs__wrapper.info .info-quality .info-quality__iso {
  margin-top: 55px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__iso {
    margin-top: 30px;
  }
}

.mscs__wrapper.info .info-quality .info-quality__iso figure + figure {
  margin-left: 50px;
}

.mscs__wrapper.info .info-quality .info-quality__iso figure img {
  width: auto;
}

.mscs__wrapper.info .info-quality .info-quality__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mscs__wrapper.info .info-quality .info-quality__flex {
    margin-top: 20px;
  }
}

.mscs__wrapper.info .info-quality .info-quality__flex + p {
  margin-top: 20px;
}

/*=======================================================

	事業所一覧ページのスタイル

========================================================*/
.mscs__wrapper.office .contact {
  margin: 100px 0 100px;
}

.officeHeader {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
}

.officeHeader .container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: auto;
}

.officeHeader .container h2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #151515;
  max-width: 1040px;
  margin: 105px auto 0;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .officeHeader .container h2 {
    margin: 70px auto 0;
    padding: 0 5%;
  }
}

.officeHeader .container .anchor {
  width: 100%;
  background-color: #f2f2f2;
  border: none;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor {
    padding: 20px 5%;
  }
}

.officeHeader .container .anchor > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1000px;
  margin: auto;
}

.officeHeader .container .anchor > div:nth-of-type(2) {
  margin-top: 20px;
}

.officeHeader .container .anchor dt {
  margin-right: 30px;
}

@media screen and (min-width: 768px) {
  .officeHeader .container .anchor dt {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor dt {
    font-size: 1.8rem;
  }
}

.officeHeader .container .anchor dt::before {
  content: "■";
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  color: #003176;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .officeHeader .container .anchor dt::before {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor dt::before {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor dd {
    padding-left: 0;
    margin-top: 8px;
  }
}

.officeHeader .container .anchor dd + dd {
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor dd + dd {
    padding-left: 2rem;
  }
}

.officeHeader .container .anchor dd + dd::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #003176;
  -webkit-transform: skew(-45deg) translateX(-2em);
          transform: skew(-45deg) translateX(-2em);
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor dd + dd::before {
    height: 15px;
    -webkit-transform: skew(-45deg) translateX(-1.5em);
            transform: skew(-45deg) translateX(-1.5em);
  }
}

.officeHeader .container .anchor a {
  display: inline-block;
  color: #003176;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .officeHeader .container .anchor a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor a {
    font-size: 1.4rem;
  }
}

.officeHeader .container .anchor a::before {
  content: none;
}

.officeHeader .container .anchor a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-top: none;
  border-right: 1px solid #003176;
  border-bottom: 1px solid #003176;
  border-left: none;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: -3px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .officeHeader .container .anchor a::after {
    width: 8px;
    height: 8px;
    margin-left: 5px;
  }
}

.office {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  padding-top: 0;
}

.office .container {
  width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .office .container {
    width: 100%;
    padding: 0 5%;
  }
}

.office .container h2 {
  color: #003176;
  font-weight: bold;
  margin-top: 100px;
}

@media screen and (min-width: 768px) {
  .office .container h2 {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .office .container h2 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .office .container h2 {
    margin-top: 70px;
  }
}

.office .container h3 {
  color: #151515;
  line-height: 1;
  margin-top: 50px;
  padding-left: 12px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .office .container h3 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .office .container h3 {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .office .container h3 {
    line-height: 1.7;
    margin-top: 30px;
  }
}

.office .container h3::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 28px;
  background-color: #003176;
  position: absolute;
  left: 0;
  top: 1px;
}

@media screen and (max-width: 767px) {
  .office .container h3::before {
    width: 2px;
    height: 21px;
    top: 7px;
  }
}

.office .container h3 + h3 {
  border-left: none;
  margin-top: 0;
  padding-top: 10px;
  padding-left: 12px;
}

@media screen and (max-width: 767px) {
  .office .container h3 + h3 {
    padding-top: 0;
  }
}

.office .container h3 + h3::before {
  content: none;
}

.office .container dl {
  display: block;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .office .container dl {
    margin-top: 10px;
  }
}

.office .container dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .office .container dl > div {
    display: block;
  }
}

.office .container dl > div:first-of-type dt {
  border-top: 1px solid #151515;
}

.office .container dl > div:first-of-type dd {
  border-top: 1px solid #adadad;
}

@media screen and (max-width: 767px) {
  .office .container dl > div:first-of-type dd {
    border-top: none;
  }
}

.office .container dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #151515;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #151515;
  font-weight: normal;
  padding: 25px 20px;
}

@media screen and (max-width: 767px) {
  .office .container dt {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: 1px solid #151515;
    border-bottom: none;
    padding: 15px 10px;
  }
}

.office .container dd {
  width: calc(100% - 195px);
  border-bottom: 1px solid #adadad;
  line-height: 2;
  padding: 25px 20px;
}

@media screen and (max-width: 767px) {
  .office .container dd {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: none;
    padding: 12px 10px;
  }
}

.office .container dd .tel::before {
  content: "TEL:";
  display: inline-block;
  background: none;
  position: static;
  width: auto;
  height: auto;
  top: 0;
}

.office .container dd .fax::before {
  content: "FAX:";
  display: inline-block;
  background: none;
  position: static;
  width: auto;
  height: auto;
  top: 0;
}

.office .container dd .map {
  display: inline-block;
  color: #003176;
}

.office .container dd .map::after {
  content: url(/-/media/image/common/icon_window.svg);
  margin-left: 5px;
}

/*=======================================================

	ニュースページのスタイル

========================================================*/
.news h2 {
  padding-top: 90px;
  color: #151515;
  font-family: "Libre Baskerville", serif;
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .news h2 {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .news h2 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .news h2 {
    padding: 70px 0 0;
  }
}

.news .yearLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 35px 0 40px;
}

@media screen and (max-width: 767px) {
  .news .yearLink {
    margin: 15px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news .yearLink li {
  font-size: 1.8rem;
  width: 5em;
}

.news .yearLink li + li {
  margin-left: 1.5em;
}

@media screen and (max-width: 767px) {
  .news .yearLink li {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.news .yearLink a {
  display: block;
  position: relative;
  padding-left: 1.3em;
  color: #333;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news .yearLink a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.news .yearLink a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #003176;
  border-radius: 0.5em;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.news .yearLink a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left: 7px solid #fff;
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
  .news .yearLink a::after {
    border: 3px solid transparent;
    border-left: 5px solid #fff;
    left: 6px;
  }
}

.news .yearLink a.current {
  font-weight: bold;
  pointer-events: none;
}

.news .newsList {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .news .newsList {
    margin-top: 30px;
  }
}

.news .newsList li {
  padding: 25px 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .news .newsList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 18px 0;
  }
}

.news .newsList li:first-of-type {
  border-top: 1px solid #f2f2f2;
}

.news .newsList li:last-of-type {
  border-bottom: 1px solid #f2f2f2;
}

.news .newsList li + li {
  border-top: 1px solid #f2f2f2;
}

.news .newsList li a {
  color: #151515;
}

@media screen and (min-width: 768px) {
  .news .newsList li a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .news .newsList li a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .news .newsList li a {
    width: 100%;
    line-height: 2;
    margin-top: 10px;
  }
}

.news .newsList li .category.notice {
  background-color: #003176 !important;
  line-height: 1;
  padding: 5px 0;
}

@media all and (-ms-high-contrast: none) {
  .news .newsList li .category.notice {
    padding: 8px 0 2px;
  }
}

@media screen and (max-width: 767px) {
  .news .newsList li time {
    width: 80px;
  }
}

.newsPage {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .newsPage {
    padding-bottom: 70px;
  }
}

.newsPage .coverImg {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .newsPage .coverImg {
    margin-bottom: 40px;
  }
}

.newsPage .pageTitSimple {
  color: #151515;
  font-family: "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .newsPage .pageTitSimple {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .newsPage .pageTitSimple {
    font-size: 2.6rem;
  }
}

.newsPage .newsPage__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .newsPage .newsPage__btn {
    padding: 0 5%;
  }
}

.newsPage .newsPage__btn a {
  width: 335px;
  border: 1px solid #003176;
  color: #003176;
  line-height: 1;
  margin: 61px auto 0;
  padding: 26px 10px;
  text-align: center;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (min-width: 768px) {
  .newsPage .newsPage__btn a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .newsPage .newsPage__btn a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .newsPage .newsPage__btn a {
    width: 100%;
    margin: 35px auto 0;
    padding: 20px 10px;
  }
}

.newsPage .newsPage__btn a span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #003176;
  border-bottom: 1px solid #003176;
  margin-left: 10px;
  margin-bottom: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

.newsPage .newsPage__btn a:hover {
  background-color: #003176;
  color: #FFF;
  text-decoration: none;
  opacity: 1;
}

.newsPage .newsPage__btn a:hover span::after {
  border-right-color: #FFF;
  border-bottom-color: #FFF;
}

.newsPage .mg_tM {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .newsPage .mg_tM {
    padding: 0 5%;
  }
}

.newsPage .mg_tM a {
  border: 1px solid #003176;
  border-radius: 0;
  color: #003176;
  line-height: 1.3;
  padding: 26px 10px;
  text-align: center;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

@media screen and (min-width: 768px) {
  .newsPage .mg_tM a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .newsPage .mg_tM a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .newsPage .mg_tM a {
    width: 100%;
    margin: 35px auto 0;
    padding: 20px 10px;
  }
}

.newsPage .mg_tM a:hover {
  background-color: #003176;
  border: 1px solid #003176;
  color: #FFF;
  text-decoration: none;
  opacity: 1;
}

.newsPage .contact {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .newsPage .contact {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
    header .groupnav .container{
        display:none;

    }
}

/*# sourceMappingURL=mscs_custom.css.map */