@charset "UTF-8";
/*==========================================================================================
  ** _foundation
  * 基礎となる設定、およびスタイル。
==========================================================================================*/
/*------------------------------
  ** Reset
  * 一部、混乱を招きそうなものはコメントアウトしておく。
------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

/*------------------------------
  ** ベース
------------------------------*/
html {
  overflow-y: scroll;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, sans-serif;
  font-size: 1rem;
  line-height: 1;
  background-color: #4E575C;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h5,
h6 {
  margin: 0;
}

input::-webkit-input-placeholder {
  color: #B2B2B2;
}

input::-moz-placeholder {
  color: #B2B2B2;
}

input:-ms-input-placeholder {
  color: #B2B2B2;
}

input::-ms-input-placeholder {
  color: #B2B2B2;
}

input::placeholder {
  color: #B2B2B2;
}

/*==========================================================================================
  ** component
  * 汎用的に利用可能なスタイル。
==========================================================================================*/
/*------------------------------
  ** adobe reader部分
------------------------------*/
.co-adobeReader {
  background: #ebebeb;
  padding: 30px 40px;
}

.co-adobeReader__icon img {
  -webkit-transition: .3s;
  transition: .3s;
}

.co-adobeReader__icon img:hover {
  opacity: .7;
}

.co-adobeReader__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .co-adobeReader {
    padding: 16px 20px;
  }
  .co-adobeReader__text {
    font-size: 0.875rem;
  }
}

/*------------------------------
  ** 矢印（下）
------------------------------*/
.co-arrowBottom {
  position: relative;
  bottom: -2px;
  display: inline-block;
  width: calc(1px + 7px);
  height: 20px;
  margin-right: 5px;
  overflow: hidden;
}

.co-arrowBottom::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #FFF;
}

.co-arrowBottom::after {
  position: absolute;
  left: -7px;
  bottom: 0;
  content: '';
  display: block;
  width: calc(1px + 7px * 2);
  height: 1px;
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.co-arrowBottom--long {
  height: 50px;
}

/*------------------------------
  ** 矢印（右）
------------------------------*/
.co-arrowRight {
  position: relative;
  top: -4px;
  display: inline-block;
  width: 30px;
  height: calc(1px + 7px);
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .co-arrowRight {
    width: 24px;
  }
}

.co-arrowRight::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

.co-arrowRight::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  content: '';
  display: block;
  width: 1px;
  height: calc(1px + 7px * 2);
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.co-arrowRight--min {
  top: -2px;
  width: 15px;
  height: calc(1px + 4px);
}

.co-arrowRight--min::after {
  bottom: -4px;
  height: calc(1px + 4px * 2);
}

.co-arrowRight--red::before, .co-arrowRight--red::after {
  background-color: #E60012;
}

/*------------------------------
  ** 矢印（上）
------------------------------*/
.co-arrowTop {
  position: relative;
  top: -2px;
  display: inline-block;
  width: calc(1px + 7px);
  height: 20px;
  margin-right: 5px;
  overflow: hidden;
}

.co-arrowTop::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #FFF;
}

.co-arrowTop::after {
  position: absolute;
  left: -7px;
  top: 0;
  content: '';
  display: block;
  width: calc(1px + 7px * 2);
  height: 1px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*------------------------------
  ** バナー中央
------------------------------*/
.co-bannerCenter {
  margin-top: 56px;
  text-align: center;
}

.co-bannerCenter a {
  display: inline-block;
}

.co-bannerCenter img {
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
  height: auto;
}

h3 + .co-bannerCenter,
h4 + .co-bannerCenter,
h5 + .co-bannerCenter {
  margin-top: 0;
}

/*------------------------------
  ** 段落A
------------------------------*/
.co-boxA {
  margin-bottom: 92px;
}

.co-boxA:first-child {
  margin-top: 0;
}

/*------------------------------
  ** 段落B
  * 通常は【見出しB】で始まるコンテンツをラップします。
------------------------------*/
.co-boxB {
  margin-top: 49px;
}

.co-boxB:first-child {
  margin-top: 0;
}

/*------------------------------
  ** 段落C
  * 通常は【見出しC】で始まるコンテンツをラップします。
------------------------------*/
.co-boxC {
  margin-top: 30px;
}

/*------------------------------
  ** 段落D
  * 通常は【見出しD】で始まるコンテンツをラップします。
------------------------------*/
.co-boxD {
  margin-top: 12px;
}

/*------------------------------
  ** 段落E
  * 通常は【見出しE】で始まるコンテンツをラップします。
------------------------------*/
.co-boxE {
  margin-top: 11px;
}

/*------------------------------
  ** ボタンA
  * 角丸のボタンです。
------------------------------*/
.co-buttonA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 440px;
  min-height: 42px;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .co-buttonA {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-buttonA:hover {
    opacity: 0.7;
  }
}

.co-buttonA__icon {
  min-width: 22px;
  max-width: 22px;
}

.co-buttonA__icon--blank {
  min-width: 16px;
  max-width: 16px;
  margin-left: 8px;
}

.co-buttonA__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.4;
}

.co-buttonA--red {
  color: #FFF;
  background-color: #E60012;
}

.co-buttonA--white {
  color: #4E575C;
  background-color: #FFF;
}

.co-buttonA--page::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 6px;
  margin-right: 8px;
  background-image: url("/assets/img/common/icon-mountBottom--white.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.co-buttonA--next {
  padding-right: 36px;
  background-image: url("/assets/img/common/icon-mountainR--white.svg");
  background-position: right 16px center;
  background-repeat: no-repeat;
}

.co-buttonA--wide {
  max-width: none;
}

/*------------------------------
  ** ボタンB
  * 角張ったボタンです。
------------------------------*/
.co-buttonB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 440px;
  height: 100%;
  min-height: 50px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.co-buttonB__icon {
  width: 22px;
  margin-right: 10px;
}

.co-buttonB__icon--alone {
  margin-right: 0;
}

.co-buttonB--red {
  color: #FFF;
  background-color: #E60012;
}

.co-buttonB--darkBlue {
  color: #FFF;
  background-color: #4E575C;
}

.co-buttonB--multilingual {
  max-width: 100%;
}

/*-- IE11 --*/
_:-ms-lang(x)::-ms-backdrop, .co-buttonB {
  height: 50px;
}

/*------------------------------
  ** ボタンラッパーA
  * ボタンを1つ内包し、中央寄せします。
------------------------------*/
.co-buttonWrapperA {
  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;
  margin-top: 32px;
}

.co-buttonWrapperA--wide {
  margin-top: 48px;
}

/*------------------------------
  ** ボタンラッパーB
  * ボタンを複数内包して羅列します。
------------------------------*/
.co-buttonWrapperB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.co-buttonWrapperB__item {
  min-width: 240px;
  margin-right: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
  .co-buttonWrapperB__item {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

/*------------------------------
  ** PC2カラム
------------------------------*/
.co-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .co-col2 {
    display: block;
  }
}

.co-col2__item {
  width: calc(50% - 20px * (2 - 1) / 2);
  margin-right: 20px;
}

.co-col2__item:nth-child(2n), .co-col2__item:last-child {
  margin-right: 0;
}

.co-col2__item:nth-child(n+3) {
  margin-top: 29px;
}

@media screen and (max-width: 640px) {
  .co-col2__item {
    width: 100%;
    margin: 20px auto 0 auto !important;
  }
}

@media screen and (max-width: 1040px) {
  .co-col2--breakL {
    display: block;
  }
}

@media screen and (max-width: 1040px) {
  .co-col2--breakL .co-col2__item {
    width: 100%;
    margin: 20px auto 0 auto !important;
  }
}

/*------------------------------
  ** PC3カラム
------------------------------*/
@media screen and (min-width: 961px) {
  .co-col3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col3__item {
    width: calc(33.3334% - 20px * (3 - 1) / 3);
    margin-right: 20px;
  }
  .co-col3__item:nth-child(3n), .co-col3__item:last-child {
    margin-right: 0;
  }
  .co-col3__item:nth-child(n+4) {
    margin-top: 29px;
  }
}

@media screen and (min-width: 641px) and (max-width: 960px) {
  .co-col3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col3__item {
    width: calc(50% - 20px * (2 - 1) / 2);
    margin-right: 20px;
  }
  .co-col3__item:nth-child(2n), .co-col3__item:last-child {
    margin-right: 0;
  }
  .co-col3__item:nth-child(n+3) {
    margin-top: 29px;
  }
}

@media screen and (max-width: 640px) {
  .co-col3:not(.co-col3--sp2) {
    display: block;
  }
  .co-col3:not(.co-col3--sp2)__item {
    width: 100%;
    margin: 20px auto 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .co-col3--sp2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col3--sp2 .co-col3__item {
    width: calc(50% - 5px * (2 - 1) / 2);
    margin-right: 5px;
  }
  .co-col3--sp2 .co-col3__item:nth-child(2n), .co-col3--sp2 .co-col3__item:last-child {
    margin-right: 0;
  }
  .co-col3--sp2 .co-col3__item:nth-child(n+3) {
    margin-top: 5px;
  }
}

/*------------------------------
  ** PC4カラム
------------------------------*/
@media screen and (min-width: 961px) {
  .co-col4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col4__item {
    width: calc(25% - 20px * (4 - 1) / 4);
    margin-right: 20px;
  }
  .co-col4__item:nth-child(4n), .co-col4__item:last-child {
    margin-right: 0;
  }
  .co-col4__item:nth-child(n+5) {
    margin-top: 29px;
  }
}

@media screen and (min-width: 641px) and (max-width: 960px) {
  .co-col4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col4__item {
    width: calc(50% - 20px * (2 - 1) / 2);
    margin-right: 20px;
  }
  .co-col4__item:nth-child(2n), .co-col4__item:last-child {
    margin-right: 0;
  }
  .co-col4__item:nth-child(n+3) {
    margin-top: 29px;
  }
}

@media screen and (max-width: 640px) {
  .co-col4 {
    display: block;
  }
  .co-col4__item {
    width: 100%;
    margin: 20px auto 0 auto;
  }
}

.co-col4--centering {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------
  ** PC5カラム
------------------------------*/
@media screen and (min-width: 961px) {
  .co-col5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col5__item {
    width: calc(20% - 20px * (5 - 1) / 5);
    margin-right: 20px;
  }
  .co-col5__item:nth-child(5n), .co-col5__item:last-child {
    margin-right: 0;
  }
  .co-col5__item:nth-child(n+6) {
    margin-top: 29px;
  }
}

@media screen and (max-width: 960px) {
  .co-col5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-col5__item {
    width: calc(50% - 25px * (2 - 1) / 2);
    margin-right: 25px;
  }
  .co-col5__item:nth-child(2n), .co-col5__item:last-child {
    margin-right: 0;
  }
  .co-col5__item:nth-child(n+3) {
    margin-top: 28px;
  }
}

/*------------------------------
  ** 日付
------------------------------*/
.co-dateText {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
}

/*------------------------------
  ** フロー
------------------------------*/
.co-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #B2B2B2;
  overflow: hidden;
}

.co-flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.co-flow__item::before, .co-flow__item::after {
  position: absolute;
  top: -1px;
  z-index: 1;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 21px solid transparent;
}

.co-flow__item::before {
  right: -41px;
  border-left-color: #B2B2B2;
}

.co-flow__item::after {
  right: -40px;
  border-left-color: #FFF;
}

.co-flow__item--current {
  color: #FFF;
  background-color: #4E575C;
}

.co-flow__item--current::before, .co-flow__item--current::after {
  border-left-color: #4E575C;
}

@media screen and (max-width: 640px) {
  .co-flow__item::before, .co-flow__item::after {
    border-width: 21px 10px;
  }
  .co-flow__item::before {
    right: -21px;
  }
  .co-flow__item::after {
    right: -20px;
  }
}

.co-flow__label {
  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;
  height: 40px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 640px) {
  .co-flow__label {
    font-size: 0.8125rem;
  }
}

/*------------------------------
  ** 見出しA
  * 曲線背景画像あり。
------------------------------*/
.co-headingA {
  width: 100%;
  height: 160px;
  background-image: url("/assets/img/common/bg-wave.jpg"), -webkit-gradient(linear, left top, right top, from(#F9DBD3), to(#C9DEFC));
  background-image: url("/assets/img/common/bg-wave.jpg"), linear-gradient(to right, #F9DBD3, #C9DEFC);
  background-blend-mode: multiply;
  background-position: left 0 top -16.25vw, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.co-headingA__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #262626;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 960px) {
  .co-headingA {
    height: 100px;
  }
  .co-headingA__label {
    font-size: 1.75rem;
  }
}

/*------------------------------
  ** 見出しB
  * 赤下線ありの見出しです。
------------------------------*/
.co-headingB {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  padding-bottom: 11px;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #E60012;
}

@media screen and (max-width: 960px) {
  .co-headingB {
    padding-bottom: 14px;
    font-size: 1.375rem;
  }
}

.co-headingB__subText {
  margin-left: 20px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-headingB__subText {
    font-size: 0.875rem;
  }
}

.co-headingB__link {
  display: inline-block;
  margin-right: 8px;
  color: #262626;
  text-decoration: none;
}

.co-headingB__link:hover {
  text-decoration: underline;
}

.co-headingB--must {
  display: block;
}

.co-headingB--must::after {
  content: '*';
  color: #E60012;
}

/*------------------------------
  ** 見出しC
  * 赤バーアイコンあり。
------------------------------*/
.co-headingC {
  position: relative;
  margin-bottom: 18px;
  padding-left: 24px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #262626;
  text-decoration: none;
}

.co-headingC::before {
  position: absolute;
  left: 0;
  top: 0.75em;
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #E60012;
}

.co-headingC[href]:hover {
  text-decoration: underline;
}

/*------------------------------
  ** 見出しD
  * 赤文字。
------------------------------*/
.co-headingD {
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #E60012;
}

/*------------------------------
  ** 見出しE
  * 黒文字（小）。
------------------------------*/
.co-headingE {
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}

/*------------------------------
  ** 別窓アイコン
------------------------------*/
.co-iconBlank {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 16px;
  margin: 0 8px;
  vertical-align: middle;
}

.co-iconBlank--min {
  top: 0;
  width: 12px;
  margin: 0 6px;
}

/*------------------------------
  ** PDFアイコン
------------------------------*/
.co-iconPDF {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 13px;
  margin: 0 8px;
  vertical-align: middle;
}

/*------------------------------
  ** 画像
------------------------------*/
.co-image {
  display: block;
  margin-bottom: 10px;
}

.co-text + .co-image {
  margin-top: 15px;
}

/*------------------------------
  ** グラフ画像
------------------------------*/
.co-imageGraph {
  max-width: 500px;
}

/*------------------------------
  ** インプットレイアウトA
  * ラジオボタンなどを横並びにする場合に利用できます。
------------------------------*/
.co-inputLayoutA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -15px;
}

.co-inputLayoutA__item {
  margin-bottom: 15px;
  padding-right: 32px;
}

/*------------------------------
  ** ラジオボタン
------------------------------*/
.co-inputRadio {
  position: relative;
}

.co-inputRadio__input {
  position: absolute;
  opacity: 0;
}

.co-inputRadio__input:checked + .co-inputRadio__label::before {
  background-color: #E60012;
  -webkit-box-shadow: inset 0 0 0 3px #FFF;
          box-shadow: inset 0 0 0 3px #FFF;
}

.co-inputRadio__input:focus + .co-inputRadio__label::before {
  outline: none;
}

.co-inputRadio__input:disabled + .co-inputRadio__label::before {
  background: #EEE;
}

.co-inputRadio__label {
  position: relative;
  cursor: pointer;
}

.co-inputRadio__label::before {
  position: relative;
  top: 2px;
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1px solid #B2B2B2;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.co-inputRadio__label:empty::before {
  margin-right: 0;
}

/*------------------------------
  ** セレクトボックス
------------------------------*/
.co-inputSelect {
  position: relative;
}

.co-inputSelect::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  background-color: #E60012;
  background-image: url("/assets/img/common/icon-mountainB--white.svg");
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.co-inputSelect__select {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 8px 14px;
  border: 1px solid #B2B2B2;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

.co-inputSelect__select::-ms-expand {
  display: none;
}

/*------------------------------
  ** インプットテキスト
------------------------------*/
.co-inputText {
  width: 100%;
  height: 50px;
  padding: 8px 14px;
  border: 1px solid #B2B2B2;
  border-radius: 2px;
}

/*------------------------------
  ** インプット部品：テキストエリア
------------------------------*/
.co-inputTextarea {
  width: 100%;
  height: 120px;
  padding: 8px 14px;
  border: 1px solid #B2B2B2;
  border-radius: 2px;
}

/*------------------------------
  ** インプット部品のラッパー
------------------------------*/
.co-inputWrapper {
  margin-bottom: 20px;
}

.co-inputWrapper__label {
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.co-inputWrapper__input {
  margin-bottom: 10px;
}

.co-inputWrapper__must {
  color: #E60012;
}

.co-inputWrapper__error {
  font-size: 0.9375rem;
  color: #E60012;
}

/*------------------------------
  ** リストA
  * まるマークつきのリスト。
------------------------------*/
.co-listA {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-listA {
    font-size: 0.875rem;
  }
}

.co-listA__item {
  position: relative;
  margin-top: 2px;
  padding-left: 1.2em;
  font-size: inherit;
  line-height: 2;
}

.co-listA__item:last-child {
  margin-bottom: 0;
}

.co-listA__item::before {
  position: absolute;
  left: calc(0.5em - 10px / 2);
  top: calc(0.5em * 2 - 10px / 2);
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #E60012;
  border-radius: 50%;
}

.co-listA--col2 {
  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;
}

.co-listA--col2 .co-listA__item {
  width: calc(50% - 10px);
}

/*------------------------------
  ** リストB
  * 数字つきのリスト
------------------------------*/
.co-listB {
  display: table;
  counter-reset: number 0;
}

.co-listB__item {
  display: table-row;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-listB__item {
    font-size: 0.875rem;
  }
}

.co-listB__item::before {
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
  counter-increment: number 1;
  content: counter(number) ". ";
}

.co-listB--attention .co-listB__item::before {
  content: "※" counter(number);
  min-width: 2em;
}

/*------------------------------
  ** リストC
  * ※マークのリストです。
  * itemのpadding-leftは、beforeの「width + padding-right」で算出。
  * itemのtext-indentは、beforeの「width * -1」で算出。
------------------------------*/
.co-listC {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-listC {
    font-size: 0.875rem;
  }
}

.co-listC__item {
  padding-left: calc(1em + 0.5em);
  text-indent: calc(1em * -1);
}

.co-listC__item::before {
  content: '※';
  display: inline-block;
  width: 1em;
  padding-right: 0.5em;
  text-align: right;
}

/*------------------------------
  ** リストD
  * 「山形（赤）」つきのリストです。
------------------------------*/
.co-listD__item {
  position: relative;
  padding-left: calc(6px + 10px);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #262626;
}

@media screen and (max-width: 960px) {
  .co-listD__item {
    font-size: 0.875rem;
  }
}

.co-listD__item::before {
  position: absolute;
  left: 0;
  top: 11px;
  content: '';
  width: 6px;
  height: 9px;
  background-image: url("/assets/img/common/icon-mountainR--red.svg");
  background-repeat: no-repeat;
}

/*------------------------------
  ** リストE
  * 「バー」つきのリストです。
------------------------------*/
.co-listE {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-listE {
    font-size: 0.875rem;
  }
}

.co-listE__item {
  position: relative;
  margin-top: 2px;
  padding-left: 16px;
  font-size: inherit;
  line-height: 2;
}

.co-listE__item:last-child {
  margin-bottom: 0;
}

.co-listE__item::before {
  position: absolute;
  left: 0;
  top: calc(0.5em * 2 - 1px);
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background-color: #262626;
}

/*------------------------------
  ** ロゴ付きテキスト
------------------------------*/
.co-logoWithText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 56px;
}

.co-logoWithText__image {
  width: 200px;
  margin-right: 32px;
}

@media screen and (max-width: 960px) {
  .co-logoWithText__image {
    width: 150px;
    margin-right: 20px;
  }
}

.co-logoWithText__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.co-logoWithText + .co-logoWithText {
  margin-top: 35px;
}

@media screen and (max-width: 960px) {
  .co-logoWithText + .co-logoWithText {
    margin-top: 20px;
  }
}

h3 + .co-logoWithText,
h4 + .co-logoWithText,
h5 + .co-logoWithText {
  margin-top: 0;
}

/*------------------------------
  ** メディアレイアウトA
------------------------------*/
.co-mediaLayoutA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .co-mediaLayoutA {
    display: block;
  }
}

.co-mediaLayoutA__image {
  width: 360px;
  margin-right: 32px;
}

@media screen and (max-width: 960px) {
  .co-mediaLayoutA__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.co-mediaLayoutA__image_nagoya {
  width: 360px;
  margin-top: 50px;
  margin-right: 32px;
}

.co-mediaLayoutA__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.co-mediaLayoutA + .co-mediaLayoutA {
  margin-top: 32px;
}

/*------------------------------
  ** メディアリンクA
------------------------------*/
.co-mediaLinkA {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

@media screen and (min-width: 641px) {
  .co-mediaLinkA {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-mediaLinkA:hover .co-mediaLinkA__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
  .co-mediaLinkA--multilingual:hover .co-mediaLinkA__image {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.co-mediaLinkA__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.co-mediaLinkA__image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.co-mediaLinkA__caption {
  position: relative;
  padding: 24px 0;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#F9DBD3), to(#C9DEFC));
  background: linear-gradient(to right, #F9DBD3, #C9DEFC);
}

@media screen and (max-width: 960px) {
  .co-mediaLinkA__caption {
    padding: 24px 48px;
  }
}

.co-mediaLinkA__title {
  font-size: 1.4375rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .co-mediaLinkA__title {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 640px) {
  .co-mediaLinkA__title {
    font-size: 1rem;
  }
}

.co-mediaLinkA__titleEn {
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 0.75rem;
  color: #E60012;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 640px) {
  .co-mediaLinkA__titleEn {
    font-size: 0.625rem;
  }
}

.co-mediaLinkA__icon {
  position: absolute;
  right: 32px;
  top: calc(50% - 8px);
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media screen and (max-width: 960px) {
  .co-mediaLinkA__icon {
    right: 16px;
  }
}

@media screen and (min-width: 641px) {
  .co-mediaLinkA:hover .co-mediaLinkA__icon {
    right: 24px;
  }
}

/*------------------------------
  ** メディアリンクB
------------------------------*/
.co-mediaLinkB {
  position: relative;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

@media screen and (min-width: 641px) {
  .co-mediaLinkB {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-mediaLinkB:hover .co-mediaLinkB__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.co-mediaLinkB__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.co-mediaLinkB__image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.co-mediaLinkB__button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  background-color: #E60012;
}

/*------------------------------
  ** メディアリンクC
  * グレー背景のあり。
------------------------------*/
.co-mediaLinkC {
  display: block;
  height: 100%;
  padding: 20px;
  color: #262626;
  text-decoration: none;
  background-color: #EBEBEB;
}

@media screen and (min-width: 641px) {
  .co-mediaLinkC {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-mediaLinkC:hover .co-mediaLinkC__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.co-mediaLinkC__title {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.co-mediaLinkC__imageWrapper {
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
}

.co-mediaLinkC__image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  pointer-events: auto;
}

.co-mediaLinkC__desc {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
}

/*------------------------------
  ** 備考
------------------------------*/
.co-memo {
  padding: 32px 40px;
  border-top: 32px solid #FDD9D9;
  background-color: #EBEBEB;
}

/*------------------------------
  ** モーダル
------------------------------*/
.co-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.co-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.co-modal__inner {
  position: relative;
  z-index: 10002;
  width: calc(100% - 30px * 2);
  max-width: 1024px;
  height: auto;
  max-height: calc(100% - 30px * 2);
  padding: 30px 30px 30px 30px;
  background-color: #FFF;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
}

.co-modal__content {
  max-height: calc(100vh - 30px * 2 - 30px * 2);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.co-modal__content::-webkit-scrollbar {
  display: none;
}

.co-modal__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
}

.co-modal__closeButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #E60012;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .co-modal__closeButton {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-modal__closeButton:hover {
    opacity: 0.7;
  }
}

.co-modal__closeIcon {
  position: relative;
  width: 12px;
  height: 12px;
}

.co-modal__closeIcon::before {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.co-modal__closeIcon::after {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.co-modal__overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10001;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

/*------------------------------
  ** ニュースリスト
------------------------------*/
.co-newsList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .co-newsList__item {
    display: block;
    margin-bottom: 20px;
  }
}

.co-newsList__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 32px;
}

@media screen and (max-width: 960px) {
  .co-newsList__info {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.co-newsList__date {
  display: inline-block;
  width: 130px;
  font-size: 1rem;
}

@media screen and (max-width: 960px) {
  .co-newsList__date {
    width: 120px;
    font-size: 0.875rem;
  }
}

.co-newsList__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100px;
  height: 24px;
  padding: 2px 8px 2px 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.075em;
  line-height: 1;
  border: 1px solid #E70012;
}

@media screen and (max-width: 960px) {
  .co-newsList__category {
    height: auto;
    margin-top: 10px;
    padding: 4px 8px;
    font-size: 0.6875rem;
  }
}

.co-newsList__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  top: -4px;
}

.co-newsList__link {
  font-size: 1rem;
  color: #262626;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-newsList__link {
    font-size: 0.9375rem;
  }
}

.co-newsList__link:hover {
  text-decoration: none;
}

/*------------------------------
  ** 数字つきテキスト
------------------------------*/
.co-numberingText__item {
  margin-bottom: 11px;
}

.co-numberingText__item:last-child {
  margin-bottom: 0;
}

.co-numberingText__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.co-numberingText__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 20px;
  height: 20px;
  font-size: 0.75rem;
  color: #FFF;
  border-radius: 4px;
  background-color: #E60012;
}

.co-numberingText__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  top: -5px;
  margin-left: 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-numberingText__text {
    font-size: 0.875rem;
  }
}

/*------------------------------
  ** パンフレット用カラム
------------------------------*/
.co-pamphletColumn {
  margin-top: 56px;
}

@media screen and (min-width: 961px) {
  .co-pamphletColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-pamphletColumn__item {
    display: block;
    width: calc(20% - 16px * (5 - 1) / 5);
    margin-right: 16px;
  }
  .co-pamphletColumn__item:nth-child(5n), .co-pamphletColumn__item:last-child {
    margin-right: 0;
  }
  .co-pamphletColumn__item:nth-child(n+6) {
    margin-top: 29px;
  }
  .co-pamphletColumn__item:link {
    color: #333;
    text-decoration: underline;
  }
  .co-pamphletColumn__item:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 960px) {
  .co-pamphletColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-pamphletColumn__item {
    width: calc(25% - 16px * (4 - 1) / 4);
    margin-right: 16px;
  }
  .co-pamphletColumn__item:nth-child(4n), .co-pamphletColumn__item:last-child {
    margin-right: 0;
  }
  .co-pamphletColumn__item:nth-child(n+5) {
    margin-top: 28px;
  }
  .co-pamphletColumn__item:link {
    color: #333;
  }
}

@media screen and (max-width: 640px) {
  .co-pamphletColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-pamphletColumn__item {
    width: calc(50% - 16px * (2 - 1) / 2);
    margin-right: 16px;
  }
  .co-pamphletColumn__item:nth-child(2n), .co-pamphletColumn__item:last-child {
    margin-right: 0;
  }
  .co-pamphletColumn__item:nth-child(n+3) {
    margin-top: 28px;
  }
}

h3 + .co-pamphletColumn,
h4 + .co-pamphletColumn,
h5 + .co-pamphletColumn {
  margin-top: 0;
}

/*------------------------------
  ** QRコード用カラム
------------------------------*/
.co-qrCodeColumn {
  margin-top: 56px;
}

@media screen and (min-width: 961px) {
  .co-qrCodeColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-qrCodeColumn__item {
    display: block;
    width: calc(20% - 16px * (5 - 1) / 5);
    margin-right: 16px;
  }
  .co-qrCodeColumn__item:nth-child(5n), .co-qrCodeColumn__item:last-child {
    margin-right: 0;
  }
  .co-qrCodeColumn__item:nth-child(n+6) {
    margin-top: 29px;
  }
  .co-qrCodeColumn__item:link {
    color: #333;
    text-decoration: underline;
  }
  .co-qrCodeColumn__item:hover {
    text-decoration: none;
  }
  h3 + .co-qrCodeColumn {
    margin-top: 20px;
  }
}

@media screen and (max-width: 960px) {
  .co-qrCodeColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-qrCodeColumn__item {
    width: calc(25% - 16px * (4 - 1) / 4);
    margin-right: 16px;
  }
  .co-qrCodeColumn__item:nth-child(4n), .co-qrCodeColumn__item:last-child {
    margin-right: 0;
  }
  .co-qrCodeColumn__item:nth-child(n+5) {
    margin-top: 28px;
  }
}

@media screen and (max-width: 640px) {
  .co-qrCodeColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .co-qrCodeColumn__item {
    width: calc(50% - 16px * (2 - 1) / 2);
    margin-right: 16px;
  }
  .co-qrCodeColumn__item:nth-child(2n), .co-qrCodeColumn__item:last-child {
    margin-right: 0;
  }
  .co-qrCodeColumn__item:nth-child(n+3) {
    margin-top: 28px;
  }
}

h3 + .co-qrCodeColumn,
h4 + .co-qrCodeColumn,
h5 + .co-qrCodeColumn {
  margin-top: 0;
}

/*------------------------------
  ** 検索フォーム
------------------------------*/
.co-searchForm__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.co-searchForm__keyword {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 50px;
  margin-right: 20px;
}

@media screen and (max-width: 640px) {
  .co-searchForm__keyword {
    margin-right: 0;
  }
}

.co-searchForm__input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 1px solid #B2B2B2;
}

@media screen and (max-width: 640px) {
  .co-searchForm__input {
    border-right: none;
  }
}

.co-searchForm__button {
  width: 200px;
}

@media screen and (max-width: 640px) {
  .co-searchForm__button {
    width: 60px;
  }
}

/*------------------------------
  ** プルダウン＋ボタン
------------------------------*/
.co-selectForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.co-selectForm__select {
  width: 280px;
}

.co-selectForm__button {
  width: 208px;
  margin-left: 32px;
}

@media screen and (max-width: 640px) {
  .co-selectForm {
    display: block;
  }
  .co-selectForm__select {
    width: 100%;
  }
  .co-selectForm__button {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}

/*------------------------------
  ** タブ
------------------------------*/
.co-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.co-tab__listItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.co-tab__listItem:first-child .co-tab__button[aria-selected="true"]::after {
  content: none;
}

.co-tab__listItem:last-child .co-tab__button[aria-selected="false"]::after {
  content: none;
}

@media screen and (max-width: 640px) {
  .co-tab__listItem {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: calc(50% - 5px * (2 - 1) / 2);
    margin-right: 5px;
  }
  .co-tab__listItem:nth-child(2n), .co-tab__listItem:last-child {
    margin-right: 0;
  }
  .co-tab__listItem:nth-child(n+3) {
    margin-top: 5px;
  }
}

.co-tab__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding: 8px;
  color: #FFF;
  line-height: 2;
  border: none;
  background-color: #E60012;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .co-tab__button[aria-selected="false"] {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .co-tab__button[aria-selected="false"]:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .co-tab__button {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 640px) {
  .co-tab__button {
    min-height: 100px;
    background-image: url("/assets/img/common/icon-mountainB--white.svg");
    background-position: bottom 20px center;
    background-repeat: no-repeat;
    background-size: 9px auto;
  }
}

.co-tab__button::before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #E60012;
}

.co-tab__button::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #FFF;
}

@media screen and (max-width: 640px) {
  .co-tab__button::after {
    content: none;
  }
}

.co-tab__button[aria-selected="true"] {
  color: #262626;
  background-color: #FFF;
  pointer-events: none;
}

.co-tab__button[aria-selected="true"]::after {
  right: auto;
  left: -1px;
  background-color: #E60012;
}

.co-tab__body {
  padding: 50px 0;
}

.co-tab__content {
  display: none;
}

.co-tab__content[aria-hidden="false"] {
  display: block;
}

.co-tab--border {
  border: 1px solid #BCBCBC;
}

@media screen and (max-width: 960px) {
  .co-tab--border {
    border: none;
  }
}

.co-tab--border .co-tab__body {
  padding: 50px;
}

@media screen and (max-width: 960px) {
  .co-tab--border .co-tab__body {
    padding: 60px 0 0 0;
  }
}

/*------------------------------
  ** テーブルA
  * 画面サイズが小さい時は、thとtdが縦積み。
------------------------------*/
.co-tableA table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.co-tableA th,
.co-tableA td {
  padding: 16px 20px 12px 20px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-tableA th,
  .co-tableA td {
    font-size: 0.875rem;
  }
}

.co-tableA th {
  font-weight: 500;
  color: #FFF;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background-color: #4E575C;
}

.co-tableA th:last-of-type {
  border-right: none;
}

.co-tableA td {
  border-right: 1px solid #B2B2B2;
  border-bottom: 1px solid #B2B2B2;
  background-color: #FFF;
}

.co-tableA tr:first-child th {
  border-top: 1px solid #4E575C;
}

.co-tableA tr:first-child td {
  border-top: 1px solid #B2B2B2;
}

.co-tableA tr:last-child th {
  border-bottom-color: #4E575C;
}

.co-tableA--center {
  text-align: center;
}

.co-tableA.js-scrollable table {
  width: 1024px;
}

.co-tableA__gray {
  background-color: #D6D6D6 !important;
}

.co-tableA img {
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .co-tableA:not(.js-scrollable) {
    display: block;
  }
  .co-tableA:not(.js-scrollable) col,
  .co-tableA:not(.js-scrollable) tbody,
  .co-tableA:not(.js-scrollable) tr,
  .co-tableA:not(.js-scrollable) th,
  .co-tableA:not(.js-scrollable) td {
    display: block;
    width: 100%;
  }
  .co-tableA:not(.js-scrollable) th,
  .co-tableA:not(.js-scrollable) td {
    padding: 10px 12px;
  }
  .co-tableA:not(.js-scrollable) th {
    text-align: left;
    border: none;
  }
  .co-tableA:not(.js-scrollable) td {
    border-top: none !important;
    border-right: 1px solid #B2B2B2;
    border-left: 1px solid #B2B2B2;
    border-bottom: none;
  }
  .co-tableA:not(.js-scrollable) tr:last-child td {
    border-bottom: 1px solid #B2B2B2;
  }
}

/*------------------------------
  ** テーブルB
  * 画面サイズが小さい時は、横スクロールになります。
------------------------------*/
.co-tableB table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

@media screen and (max-width: 640px) {
  .co-tableB table {
    min-width: 640px;
  }
}

.co-tableB th,
.co-tableB td {
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-tableB th,
  .co-tableB td {
    font-size: 0.875rem;
  }
}

.co-tableB th {
  color: #FFF;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #4E575C;
  border-right-color: #FFF;
  background-color: #4E575C;
}

.co-tableB th:last-child {
  border-right-color: #4E575C;
}

.co-tableB td {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #B2B2B2;
  background-color: #FFF;
}

.co-tableB--centering {
  text-align: center;
}

/*------------------------------
  ** テーブルC
  * マトリクス形式のテーブルです。
  * 画面サイズが小さい時は、横スクロールになります。
------------------------------*/
.co-tableC {
  position: relative;
}

.co-tableC table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 1024px;
}

.co-tableC th,
.co-tableC td {
  padding: 12px 22px;
  font-size: 1rem;
  line-height: 2.125;
  text-align: center;
  vertical-align: middle;
}

.co-tableC thead th {
  color: #FFF;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #4E575C;
  border-right-color: #FFF;
  border-bottom-color: #FFF;
  background-color: #4E575C;
}

.co-tableC thead th:last-child {
  border-right-color: #4E575C;
}

.co-tableC tbody tr:last-child th {
  border-bottom-color: #4E575C;
}

.co-tableC tbody th {
  color: #FFF;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #FFF;
  background-color: #4E575C;
}

.co-tableC tbody td {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #B2B2B2;
  background-color: #FFF;
}

.co-tableC tbody td:first-of-type {
  border-left: none;
}

/*------------------------------
  ** テーブルD
  * 主にIRのハイライトで使用するテーブルです。
------------------------------*/
.co-tableD {
  position: relative;
}

.co-tableD table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 1040px) {
  .co-tableD.js-scrollable table {
    width: 502px;
  }
}

.co-tableD th,
.co-tableD td {
  padding: 12px 16px;
  font-size: 0.9375rem;
  line-height: 2.125;
  text-align: center;
  vertical-align: middle;
}

.co-tableD thead th {
  color: #FFF;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #4E575C;
  border-right-color: #FFF;
  border-bottom-color: #FFF;
  background-color: #4E575C;
}

.co-tableD thead th:last-child {
  border-right-color: #4E575C;
}

.co-tableD tbody tr:last-child th {
  border-bottom-color: #4E575C;
}

.co-tableD tbody th {
  color: #FFF;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #FFF;
  background-color: #4E575C;
}

.co-tableD tbody td {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #B2B2B2;
  background-color: #FFF;
}

.co-tableD tbody td:first-of-type {
  border-left: none;
}

/*------------------------------
  ** テキスト
------------------------------*/
.co-text {
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-text {
    font-size: 0.875rem;
  }
}

.co-text--indent {
  text-indent: 1em;
}

.co-text + .co-text {
  margin-top: 13px;
}

/*------------------------------
  ** テキストリンクA
  * 通常のリンクです。
------------------------------*/
.co-textLinkA {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #262626;
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .co-textLinkA {
    font-size: 0.875rem;
  }
}

.co-textLinkA:hover {
  text-decoration: none;
}

/*------------------------------
  ** テキストリンクB
  * アイコン付きのリンクです。
------------------------------*/
.co-textLinkB {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #262626;
  text-decoration: underline;
  border: none;
  background: none;
}

@media screen and (max-width: 960px) {
  .co-textLinkB {
    font-size: 0.875rem;
  }
}

.co-textLinkB::before {
  position: absolute;
  left: 0;
  content: '';
  background-repeat: no-repeat;
}

.co-textLinkB:hover {
  text-decoration: none;
}

.co-textLinkB--redMountainR {
  padding-left: calc(6px + 10px);
}

.co-textLinkB--redMountainR::before {
  top: calc(0.5em - 9px / 2);
  width: 6px;
  height: 9px;
  background-image: url("/assets/img/common/icon-mountainR--red.svg");
}

.co-textLinkB--redMountainR[type] {
  line-height: 1;
  cursor: pointer;
}

.co-textLinkB--redMountainR[type]::before {
  top: calc(0.5em - 9px / 2 + 0.5px);
}

.co-textLinkB--redMountainB {
  padding-left: calc(9px + 10px);
}

.co-textLinkB--redMountainB::before {
  top: calc(0.5em - 6px / 2);
  width: 9px;
  height: 6px;
  background-image: url("/assets/img/common/icon-mountainB--red.svg");
}

/*------------------------------
  ** テキストリンク一覧
------------------------------*/
.co-textLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.co-textLinkList__item {
  margin-right: 24px;
  margin-bottom: 16px;
}

@media screen and (max-width: 960px) {
  .co-textLinkList__item {
    width: calc(50% - 10px * (2 - 1) / 2);
    margin-right: 10px;
    margin-bottom: 0;
  }
  .co-textLinkList__item:nth-child(2n), .co-textLinkList__item:last-child {
    margin-right: 0;
  }
  .co-textLinkList__item:nth-child(-n+2) {
    border-top: 1px solid #B2B2B2;
  }
}

.co-textLinkList__link {
  position: relative;
  padding-left: calc(6px + 10px);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #262626;
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .co-textLinkList__link {
    font-size: 0.875rem;
  }
}

.co-textLinkList__link::before {
  position: absolute;
  left: 0;
  top: 7px;
  content: '';
  width: 6px;
  height: 9px;
  background-image: url("/assets/img/common/icon-mountainR--red.svg");
  background-repeat: no-repeat;
}

.co-textLinkList__link:hover {
  text-decoration: none;
}

@media screen and (max-width: 960px) {
  .co-textLinkList__link {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid #B2B2B2;
  }
  .co-textLinkList__link::before {
    left: auto;
    right: 12px;
    top: calc(50% - 9px / 2);
  }
}

.co-textLinkList__modalTrigger {
  position: relative;
  top: -1px;
  padding-left: calc(10px + 8px);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #262626;
  text-decoration: underline;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .co-textLinkList__modalTrigger {
    font-size: 0.875rem;
  }
}

.co-textLinkList__modalTrigger:hover {
  text-decoration: none;
}

.co-textLinkList__modalTrigger::before {
  position: absolute;
  left: 0;
  top: 16px;
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background-color: #E60012;
}

.co-textLinkList__modalTrigger::after {
  position: absolute;
  left: 0;
  top: 16px;
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background-color: #E60012;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 960px) {
  .co-textLinkList__modalTrigger {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid #B2B2B2;
  }
  .co-textLinkList__modalTrigger::before {
    left: auto;
    right: 12px;
    top: calc(50% - 1px / 2);
  }
  .co-textLinkList__modalTrigger::after {
    left: auto;
    right: 12px;
    top: calc(50% - 1px / 2);
  }
}

.co-textLinkList--vertical {
  display: block;
}

.co-textLinkList--vertical .co-textLinkList__item {
  margin-right: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .co-textLinkList--vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .co-textLinkList--vertical .co-textLinkList__item {
    width: calc(50% - 10px * (2 - 1) / 2);
    margin-right: 10px;
    margin-bottom: 0;
  }
  .co-textLinkList--vertical .co-textLinkList__item:nth-child(2n), .co-textLinkList--vertical .co-textLinkList__item:last-child {
    margin-right: 0;
  }
}

/*------------------------------
  ** QAテキスト
------------------------------*/
.co-textQA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.co-textQA__mark {
  width: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.co-textQA__mark--Q {
  color: #E60012;
}

.co-textQA__mark--A {
  color: #4E575C;
}

.co-textQA__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  top: -2px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .co-textQA__text {
    font-size: 0.875rem;
  }
}

/*------------------------------
  ** YouTubeの埋め込み
------------------------------*/
.co-youtube {
  margin-top: 6px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.co-youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*==========================================================================================
  ** page
  * 各ページ固有のスタイル。
==========================================================================================*/
/*------------------------------------------------------------
  ** 次の100年をめざして
------------------------------------------------------------*/
/*------------------------------
  ** 次の100年をめざしてレイアウト
------------------------------*/
.pg-100th-layout .st-lower-breadCrumb {
  margin-bottom: 0px;
}

/*------------------------------
  ** メインビジュアル
------------------------------*/
.pg-100th-mv {
  position: relative;
  overflow: hidden;
  height: 760px;
  background-image: url("/assets/img/100th/mv-bg.jpg");
  background-repeat: repeat;
  background-size: 100px;
}

@media screen and (max-width: 640px) {
  .pg-100th-mv {
    overflow: hidden;
    margin-bottom: 16px;
    height: auto;
  }
}

.pg-100th-mv__headingBox {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100%;
  color: #E70A18;
  font-family: "Noto Serif JP", serif;
  margin-left: 90px;
}

@media screen and (max-width: 960px) {
  .pg-100th-mv__headingBox {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__headingBox {
    background: none;
    display: block;
    position: relative;
    margin: 0;
    padding: 165px 20px 0;
    z-index: 10;
  }
}

.pg-100th-mv__mainImageBox {
  width: 1600px;
  margin-left: calc(50vw - 800px);
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__mainImage {
    display: none;
  }
}

.pg-100th-mv__mainImageSP {
  display: none;
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__mainImageSP {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.pg-100th-mv__headingInnerBox {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .pg-100th-mv__headingInnerBox {
    text-align: left;
  }
}

.pg-100th-mv__logo {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__logo {
    text-align: left;
  }
}

.pg-100th-mv__logoImage {
  display: inline-block;
  max-width: 260px;
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__logoImage {
    max-width: 100px;
  }
}

.pg-100th-mv__headingBefore {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.pg-100th-mv__headingBefore:after {
  content: "";
  border-top: 1px solid #E70A18;
  display: inline-block;
  margin: 0 0 12px 23px;
  width: 246px;
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__headingBefore {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
  .pg-100th-mv__headingBefore:after {
    content: "";
    border-top: 1px solid #E70A18;
    display: inline-block;
    margin: 0 0 8px 16px;
    width: calc(100% - 200px);
  }
}

.pg-100th-mv__heading {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 3px;
}

@media screen and (max-width: 1200px) {
  .pg-100th-mv__heading {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__heading {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
}

.pg-100th-mv__description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .pg-100th-mv__description {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__description {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-mv__movie {
    display: none;
  }
}

/*------------------------------
  ** トップ動画
------------------------------*/
@media screen and (max-width: 680px) {
  .pg-100th-top-movie iframe {
    width: 400px;
    height: 240px;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-top-movie {
    position: relative;
    width: 100%;
    padding-top: 53.578%;
  }
  .pg-100th-top-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*------------------------------
  ** ご挨拶
------------------------------*/
.pg-100th-block1 {
  position: relative;
  overflow: hidden;
  height: 680px;
  background-color: #E70A18;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.pg-100th-block1__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__visual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 42.5%;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-block1__visual {
    display: block;
    width: 100%;
  }
}

.pg-100th-block1__visualRed {
  position: relative;
  z-index: 1;
  width: calc((100vw - 1024px)/2 + 632px);
  background-color: #E70A18;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__visualRed {
    display: none;
  }
}

.pg-100th-block1__visualImage {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
}

.pg-100th-block1__image {
  position: absolute;
  top: 0;
  left: calc(50% - 340px);
  height: 680px;
  width: 680px;
  max-width: none;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__image {
    height: auto;
    position: static;
    width: 100%;
  }
}

.pg-100th-block1__textWrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__textWrap {
    background-color: #E70A18;
    position: static;
    width: 57.5%;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .pg-100th-block1__textWrap {
    display: block;
    width: 100%;
  }
}

.pg-100th-block1__textWrapInner {
  color: #fff;
  background-image: url("/assets/img/100th/bg-block1.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 425px auto;
  width: 670px;
  margin-left: calc((100vw - 1024px)/2 - 90px);
  margin-right: 52px;
  padding-left: 90px;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__textWrapInner {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 32px 32px;
  }
}

.pg-100th-block1__heading {
  font-size: 2.25rem;
  line-height: 1;
  margin-top: 120px;
  margin-bottom: 32px;
}

@media screen and (max-width: 1040px) {
  .pg-100th-block1__heading {
    margin-top: 60px;
  }
}

.pg-100th-block1__mainText {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.pg-100th-block1__sign {
  line-height: 1.7;
  margin-top: 52px;
  text-align: right;
}

/*------------------------------------------------------------
  ** 立花エレテック挑戦の軌跡
------------------------------------------------------------*/
/*------------------------------
  ** 立花エレテック挑戦の軌跡レイアウト
------------------------------*/
.pg-100thChallenge-layout .co-col5__item:nth-child(n+6) {
  margin-top: 16px;
}

@media screen and (max-width: 960px) {
  .pg-100thChallenge-layout .co-col5__item {
    width: calc(25% - 25px * (4 - 1) / 4);
    margin-right: 25px;
  }
  .pg-100thChallenge-layout .co-col5__item:nth-child(4n), .pg-100thChallenge-layout .co-col5__item:last-child {
    margin-right: 0;
  }
  .pg-100thChallenge-layout .co-col5__item:nth-child(n+3) {
    margin-top: 0px;
  }
  .pg-100thChallenge-layout .co-col5__item:nth-child(n+5) {
    margin-top: 28px;
  }
}

@media screen and (max-width: 640px) {
  .pg-100thChallenge-layout .co-col5__item {
    width: calc(50% - 25px * (2 - 1) / 2);
    margin-right: 25px;
  }
  .pg-100thChallenge-layout .co-col5__item:nth-child(2n), .pg-100thChallenge-layout .co-col5__item:last-child {
    margin-right: 0;
  }
  .pg-100thChallenge-layout .co-col5__item:nth-child(n+3) {
    margin-top: 28px;
  }
}

.pg-100thChallenge-layout__block1 {
  margin-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .pg-100thChallenge-layout__block1 {
    margin-bottom: 40px;
  }
}

/*------------------------------
  ** モーダルボタン
------------------------------*/
.pg-100thChallenge-modalButton {
  border: 1px solid #E70A18;
  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;
  margin-top: 24px;
  position: relative;
  text-decoration: none;
  width: 100%;
  max-width: 192px;
  height: 192px;
}

@media screen and (min-width: 641px) {
  .pg-100thChallenge-modalButton {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-100thChallenge-modalButton:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1040px) {
  .pg-100thChallenge-modalButton__block1 {
    margin-bottom: 50px;
  }
}

.pg-100thChallenge-modalButton__number {
  position: absolute;
  background-color: #fff;
  color: #E70A18;
  font-family: "Barlow", sans-serif;
  font-size: 2.25rem;
  text-align: center;
  top: -20px;
  left: 66px;
  width: 60px;
}

.pg-100thChallenge-modalButton__label {
  color: #E70A18;
  font-size: 1.125rem;
  font-weight: 700;
}

.pg-100thChallenge-modalButton__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("/assets/img/100th/challenge/icon-modalButton.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 48px;
  width: 48px;
}

/*------------------------------
  ** モーダル
------------------------------*/
.page-100thChallenge .co-modal__overlay {
  background: rgba(231, 10, 24, 0.8);
}

.page-100thChallenge .co-modal__close {
  right: calc(50% - 15px);
  top: auto;
  bottom: -52px;
  width: 30px;
  height: 30px;
}

.page-100thChallenge .co-modal__closeButton {
  background-color: inherit;
}

.page-100thChallenge .co-modal__closeIcon {
  width: 45px;
  height: 45px;
}

.page-100thChallenge .co-modal__closeIcon::before {
  left: -14px;
  width: 45px;
}

.page-100thChallenge .co-modal__closeIcon::after {
  left: -14px;
  width: 45px;
}

.page-100thChallenge .co-modal__prev {
  position: absolute;
  top: 50%;
  left: -70px;
  width: 50px;
  height: 80px;
  display: block;
}

@media screen and (max-width: 640px) {
  .page-100thChallenge .co-modal__prev {
    left: -45px;
  }
}

.page-100thChallenge .co-modal__prev:before {
  content: '';
  position: absolute;
  top: calc(25% + 2px);
  display: block;
  width: 45px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
}

.page-100thChallenge .co-modal__prev:after {
  content: '';
  position: absolute;
  top: calc(75% - 3px);
  display: block;
  width: 45px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(52deg);
          transform: rotate(52deg);
}

.page-100thChallenge .co-modal__next {
  position: absolute;
  top: 50%;
  right: -70px;
  width: 50px;
  height: 80px;
  display: block;
}

@media screen and (max-width: 640px) {
  .page-100thChallenge .co-modal__next {
    right: -45px;
  }
}

.page-100thChallenge .co-modal__next:before {
  content: '';
  position: absolute;
  left: 3px;
  top: calc(25% + 2px);
  display: block;
  width: 45px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(52deg);
          transform: rotate(52deg);
}

.page-100thChallenge .co-modal__next:after {
  content: '';
  position: absolute;
  left: 3px;
  top: calc(75% - 3px);
  display: block;
  width: 45px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
}

.page-100thChallenge .co-modal__inner {
  padding: 40px 80px;
  width: calc(100% - 90px * 2);
  max-height: calc(100% - 70px * 2);
}

@media screen and (max-width: 640px) {
  .page-100thChallenge .co-modal__inner {
    padding: 20px;
    width: calc(100% - 40px * 2);
  }
}

.page-100thChallenge .co-modal__content {
  max-height: calc(100vh - 70px * 2 - 40px * 2);
}

/*------------------------------
  ** モーダル中身
------------------------------*/
.pg-100thChallenge-modal {
  display: none;
}

.pg-100thChallenge-modal__number {
  color: #E70A18;
  font-family: "Barlow", sans-serif;
  font-weight: ExtraLight;
  font-size: 2.75rem;
  margin-bottom: 30px;
  padding-bottom: 18px;
  position: relative;
  text-align: center;
}

.pg-100thChallenge-modal__number:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  border: 2px solid #E70A18;
  width: 20px;
}

.pg-100thChallenge-modal__heading {
  color: #E70A18;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .pg-100thChallenge-modal__heading {
    font-size: 1.5rem;
  }
}

.pg-100thChallenge-modal__subHeading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 41px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .pg-100thChallenge-modal__subHeading {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}

.pg-100thChallenge-modal__text {
  margin-bottom: 40px;
}

.pg-100thChallenge-modal__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------------------------------------
  ** 立花エレテックの歩み
------------------------------------------------------------*/
/*------------------------------
  ** 立花エレテックの歩みレイアウト
------------------------------*/
.pg-100thHistory-layout__block1 {
  margin-bottom: 105px;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-layout__block1 {
    margin-bottom: 50px;
  }
}

/*------------------------------
  ** 立花エレテックの歩み
------------------------------*/
.pg-100thHistory-tree {
  position: relative;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree {
    padding-top: 71px;
  }
}

.pg-100thHistory-tree__start {
  background-image: url("/assets/img/100th/history/bg-block1-1.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 140px auto;
  color: #fff;
  font-size: 1.25rem;
  line-height: 100px;
  margin: 0 auto;
  text-align: center;
  width: 140px;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__start {
    position: absolute;
    right: 0;
    top: 0;
    background-size: 100px auto;
    line-height: 71px;
    margin: 0 0;
    width: 100px;
  }
}

.pg-100thHistory-tree__arrow {
  position: absolute;
  border-left: 1px solid #E70A18;
  top: 0;
  left: 50%;
  height: calc(100% - 50px);
  width: 12px;
}

.pg-100thHistory-tree__arrowIcon {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__arrow {
    left: auto;
    right: 38px;
    height: calc(100% - 65px);
  }
}

.pg-100thHistory-tree__title {
  border-bottom: 1px solid #E70A18;
  color: #E70A18;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
}

.pg-100thHistory-tree__title:after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 13px;
  height: 13px;
  background-color: #E70A18;
  border-radius: 6px;
}

.pg-100thHistory-tree__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 16px;
  margin-right: 30px;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__text {
    margin-right: 16px;
  }
}

.pg-100thHistory-tree__image {
  margin-right: 16px;
}

.pg-100thHistory-tree__image img {
  max-height: 120px;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__image img {
    max-height: 100px;
  }
}

.pg-100thHistory-tree__inner {
  position: relative;
  height: 300px;
}

.pg-100thHistory-tree__inner.lastItem {
  height: 200px;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__inner {
    height: auto;
  }
}

.pg-100thHistory-tree__right, .pg-100thHistory-tree__left {
  position: absolute;
  top: 0px;
  left: 0%;
  width: 50%;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__right, .pg-100thHistory-tree__left {
    position: inherit;
    width: auto;
    margin-right: 50px;
    margin-bottom: 30px;
  }
}

.pg-100thHistory-tree__right {
  top: 150px;
  left: 50%;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__right {
    top: auto;
    left: auto;
    text-align: left;
  }
}

.pg-100thHistory-tree__right .pg-100thHistory-tree__title:after {
  right: auto;
  left: -6px;
}

.pg-100thHistory-tree__right .pg-100thHistory-tree__text {
  margin-right: 0;
}

.pg-100thHistory-tree__right .pg-100thHistory-tree__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 0;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__right .pg-100thHistory-tree__title:after {
    right: -6px;
    left: auto;
  }
  .pg-100thHistory-tree__right .pg-100thHistory-tree__text {
    margin-right: 16px;
  }
  .pg-100thHistory-tree__right .pg-100thHistory-tree__image {
    display: block;
    margin-right: 16px;
  }
}

.pg-100thHistory-tree__next100years {
  color: #E70A18;
  font-size: 2.25rem;
  font-family: NotoSerif;
  margin-top: 16px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .pg-100thHistory-tree__next100years {
    font-size: 2rem;
  }
}

.pg-100thShashi {
  margin-top: -64px;
  overflow-x: hidden;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi {
    margin-top: -6px;
  }
}

.pg-100thShashi__inner {
  max-width: calc(1024px + 24px * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 0;
  padding-top: 5em;
  padding-bottom: 5.35em;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__inner {
    padding-top: 0;
    padding-bottom: 2.65em;
  }
}

.pg-100thShashi__inner::before {
  content: '';
  display: block;
  width: 149.25373%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(/assets/img/100th/100th-shashi/shashi_back.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__inner::before {
    content: none;
  }
}

.pg-100thShashi__head {
  background-image: -webkit-gradient(linear, left top, right top, from(#F9DBD3), to(#C9DEFC));
  background-image: linear-gradient(to right, #F9DBD3, #C9DEFC);
  padding-top: 0.68em;
  padding-bottom: 0.68em;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__head {
    padding-top: 0.471em;
    padding-bottom: 0.471em;
  }
}

.pg-100thShashi__head-inner {
  font-size: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 0.65em;
  padding-right: 1em;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__head-inner {
    font-size: 1.375rem;
    padding-left: 0.25em;
  }
}

.pg-100thShashi__head-inner::before {
  content: '';
  height: 3px;
  width: 12px;
  -webkit-transform: translateY(17.7px);
          transform: translateY(17.7px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  background-color: #E70A18;
  margin-right: 0.35em;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__head-inner::before {
    -webkit-transform: translateY(16.1px);
            transform: translateY(16.1px);
  }
}

.pg-100thShashi__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__body {
    display: block;
  }
}

.pg-100thShashi__image {
  max-width: 241px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 3.125%;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__list {
    margin-top: 29px;
  }
}

.pg-100thShashi__list li:not(:first-child) {
  margin-top: .7em;
}

@media screen and (max-width: 640px) {
  .pg-100thShashi__list li:not(:first-child) {
    margin-top: 0.37em;
  }
}

/*------------------------------------------------------------
  ** 立花エレテック早わかり
------------------------------------------------------------*/
/*------------------------------
  ** 立花エレテック早わかり用レイアウト
------------------------------*/
.pg-aglance-layout__block1 {
  padding-bottom: 80px;
}

.pg-aglance-layout__block1:first-of-type {
  padding-bottom: 40px;
}

.pg-aglance-layout__block2, .pg-aglance-layout__block3, .pg-aglance-layout__block4, .pg-aglance-layout__block5 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pg-aglance-layout__block2, .pg-aglance-layout__block4 {
  background-color: #F0F0F0;
}

.pg-aglance-layout__img-wrap {
  padding-bottom: 40px;
}

.pg-aglance-layout__img-wrap .co-image {
  margin: 0;
}

.pg-aglance-layout__index {
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .pg-aglance-layout__block1 {
    padding-bottom: 40px;
  }
  .pg-aglance-layout__block2, .pg-aglance-layout__block3, .pg-aglance-layout__block4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pg-aglance-layout__block5 {
    padding-top: 40px;
  }
  .pg-aglance-layout__img-wrap {
    padding-bottom: 20px;
  }
}

.pg-aglance-siteLink__button {
  width: 100%;
  max-width: 238px;
  margin: 0 auto;
}

/*------------------------------
  ** 事業領域
------------------------------*/
.pg-aglance-block3Item__dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.pg-aglance-block3Item__dt .co-image {
  width: 70px;
  margin: 0;
}

.pg-aglance-block3Item__heading {
  color: #E70A18;
  font-size: 1.125rem;
  margin-left: 16px;
}

.pg-aglance-block3Item__subHeading {
  border-bottom: 2px solid #E70A18;
  color: #E70A18;
  font-size: 0.9375rem;
  margin-top: 12px;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

@media screen and (max-width: 640px) {
  .pg-aglance-block3Item__dt {
    margin-bottom: 15px;
  }
  .pg-aglance-block3Item__subHeading {
    margin-bottom: 12px;
  }
}

/*------------------------------------------------------------
  ** ごあいさつ
------------------------------------------------------------*/
/*------------------------------
  ** 写真キャプション
------------------------------*/
.pg-greeting-figCaption {
  font-size: 1.125rem;
  font-weight: 700;
}

.pg-greeting-figCaption span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

/*------------------------------------------------------------
  ** 社名の由来・ロゴマークについて
------------------------------------------------------------*/
/*------------------------------
  ** コーポレートカラー
------------------------------*/
.pg-logo-redBox {
  width: 100px;
  height: 100px;
  background: #E60012;
  margin-bottom: 24px;
}

.pg-logo-redBox + .co-text {
  margin-bottom: 32px;
}

.pg-logo-grayBox {
  width: 100px;
  height: 100px;
  background: #818181;
  margin-bottom: 24px;
}

.pg-companyOverviewLogo-logo {
  margin-top: 40px;
}

/*------------------------------------------------------------
  ** 電子機器製造受託サービス(EMS)
  * 20210326：旧サイトから移植（分割ファイルを統合、画像のパスを変更）
------------------------------------------------------------*/
/*------------------------------
  ** slick.css
------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*------------------------------
  ** slick-theme.css
------------------------------*/
/* Icons */
@font-face {
  font-weight: 400;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 10;
  font-weight: 700;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: rgba(234, 47, 26, 0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 10px;
}

[dir='rtl'] .slick-prev {
  right: 0;
  left: auto;
}

.slick-prev:before {
  content: '＜';
}

[dir='rtl'] .slick-prev:before {
  content: '＞';
}

.slick-next {
  right: 10px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: 0;
}

.slick-next:before {
  content: '＞';
}

[dir='rtl'] .slick-next:before {
  content: '＜';
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 5px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 10;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  color: rgba(234, 47, 26, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #f00;
}

/* 見出し
/*+---------------------------------*/
/* --- 見出しlevel2 --- */
.heading-level2 {
  width: 1200px;
  margin: 0 auto 32px;
  padding-left: 30px;
  background: url("/assets/img/company/prospectus/manufacturing/ems/icon_h2.png") no-repeat center left;
  font-size: 24px;
  font-weight: 400;
  text-align: left;
}

/* --- 見出しlevel3 --- */
.heading-level3 {
  margin-bottom: 72px;
  color: #cc1414;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.heading-level3.is-white {
  color: #fff;
}

.heading-level3.is-left {
  text-align: left;
}

.heading-level3.mb-64 {
  margin-bottom: 64px;
}

.heading-level3 img {
  display: inline-block;
  vertical-align: middle;
}

/* --- 見出しlevel4 --- */
.heading-level4 {
  margin-bottom: 40px;
  padding: 16px 29px;
  background: url("/assets/img/company/prospectus/manufacturing/ems/bg_h4.png") no-repeat top left;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

/* ボックスレイアウト
/*+---------------------------------*/
/* --- コンテンツ全体のwrap --- */
.content-wrap {
  width: 100%;
}

/* --- 見出しレベル2用ボックス --- */
.content-box {
  width: 100%;
}

/* --- 見出しレベル2用ボックス --- */
.content-box-2 {
  width: 100%;
  padding: 160px 0 176px;
}

.content-box-2#flow {
  background: url("/assets/img/company/prospectus/manufacturing/ems/bg_flow.jpg") no-repeat top center;
  background-size: cover;
}

.content-box-2#solution {
  padding: 120px 0 160px;
}

.content-box-2#case {
  background-image: url("/assets/img/company/prospectus/manufacturing/ems/bg-triangle_right.png"), url("/assets/img/company/prospectus/manufacturing/ems/bg_case.jpg");
  background-repeat: no-repeat;
  background-position: top right, top center;
  background-size: 800px 500px, cover;
}

.content-box-2#contact {
  background: url("/assets/img/company/prospectus/manufacturing/ems/bg-triangle_left.png") no-repeat top left;
}

/* --- 見出しレベル4用ボックス --- */
.content-box-3 {
  width: 100%;
}

.content-box-3 + .content-box-3 {
  margin-top: 64px;
}

/* --- ボックスの左右余白 --- */
.content-inner {
  width: 1200px;
  margin: 0 auto;
}

.content-inner.prl-24 {
  padding: 0 24px;
}

/* --- リード文--- */
.lead-text {
  margin-bottom: 40px;
  color: #cc1414;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.lead-text.is-white {
  color: #fff;
}

.lead-text.is-left {
  text-align: left;
}

/* コンテンツナビゲーション
/*+---------------------------------*/
/* --- ページ内リンク用 --- */
.nav {
  width: 100%;
  min-width: 1520px;
}

.nav.is-fixed {
  position: fixed;
  top: calc(90px + 10px + 40px);
  z-index: 1;
}

.nav-inner {
  width: 1200px;
  margin: -40px auto;
  text-align: center;
}

.nav-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.nav-list > li a {
  display: block;
  padding: 20px 0;
  background: #cc1414 url("/assets/img/company/prospectus/manufacturing/ems/nav_arrow.png") no-repeat bottom 16px center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.nav-list > li a:link, .nav-list > li a:visited {
  color: #fff;
  text-decoration: none;
}

.nav-list > li a:hover {
  background: #faaaaa url("/assets/img/company/prospectus/manufacturing/ems/nav_arrow_hover.png") no-repeat bottom 16px center;
  color: #cc1414;
  text-decoration: none;
}

.nav-list > li a span {
  display: block;
  height: 40px;
  padding: 0 72px;
}

.nav-list > li + li span {
  border-left: #fff 1px solid;
}

/* ボタン
/*+---------------------------------*/
/* --- 標準ボタン --- */
.basic-button {
  display: block;
  width: 320px;
  margin: 48px auto 0;
  padding: 20px;
  background: #fff url("/assets/img/company/prospectus/manufacturing/ems/btn_arrow.png") no-repeat center right 16px;
  border: #cc1414 1px solid;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  color: #cc1414;
  text-decoration: none;
  text-align: center;
}

.basic-button:link, .basic-button:visited {
  color: #cc1414;
  text-decoration: none;
}

.basic-button:hover {
  background: #fad2d2 url("/assets/img/company/prospectus/manufacturing/ems/btn_arrow.png") no-repeat center right 16px;
  text-decoration: none;
}

/* リンク
/*+---------------------------------*/
/* --- 矢印付きリンク --- */
.link-arrow {
  padding-right: 16px;
  background: url("/assets/img/company/prospectus/manufacturing/ems/icon_arrow.png") no-repeat center right;
  color: #333;
  text-decoration: none;
}

.link-arrow:link, .link-arrow:visited {
  color: #333;
  text-decoration: none;
}

.link-arrow:hover {
  color: #cc1414;
  text-decoration: underline;
}

/* リスト
/*+---------------------------------*/
/* --- 箇条書きリスト --- */
.list {
  margin-bottom: 24px;
}

.list > li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.8;
}

.list > li::before {
  content: '・';
}

.list > li + li {
  margin-top: 8px;
}

/* --- ※印箇条書きリスト --- */
.attention-list {
  margin-bottom: 24px;
}

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

.attention-list > li::before {
  content: '※';
}

.attention-list > li + li {
  margin-top: 8px;
}

/* --- (数字)リスト --- */
.number-list {
  margin-bottom: 24px;
}

.number-list > li {
  position: relative;
  padding-left: 1.6em;
  font-size: 16px;
  line-height: 1.8;
}

.number-list > li > span {
  position: absolute;
  left: -0.8em;
}

.number-list > li + li {
  margin-top: 8px;
}

/* --- 横並びリスト --- */
.flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-list > li {
  display: inline-block;
  margin: 8px 16px 0 0;
}

/* パーツ
/*+---------------------------------*/
/* --- メインビジュアル --- */
.mv {
  padding: 80px 0 104px;
  background: url("/assets/img/company/prospectus/manufacturing/ems/bg-triangle_left.png") no-repeat top left;
}

.mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1520px;
  margin: 0 auto;
  background: #f0f0f0;
}

.mv-image {
  width: 760px;
  height: 520px;
  overflow: hidden;
}

.mv-box {
  width: calc(100% - 760px);
  padding: 0 88px;
}

.mv-box .mv-box__title {
  margin-bottom: 24px;
  color: #cc1414;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
}

.mv-box .mv-box__lead {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.mv-box .mv-box__text {
  line-height: 1.8;
}

/* その他
/*+---------------------------------*/
#main {
  float: none;
  width: 100%;
  min-width: 1520px;
  padding-top: 32px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

#main * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ビジネスフロー */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flow-list > li {
  width: 128px;
  padding: 24px 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.flow-list > li + li {
  position: relative;
}

.flow-list > li + li::before {
  position: absolute;
  top: 50%;
  left: -16px;
  content: url("/assets/img/company/prospectus/manufacturing/ems/flow_arrow.png");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow-list > li img {
  display: inline-block;
  margin-bottom: 16px;
}

/* ソリューション */
.solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.solution-list > li {
  width: 224px;
  margin-right: 20px;
  font-size: 16px;
}

.solution-list > li:nth-child(5n) {
  margin-right: 0;
}

.solution-list > li:nth-child(n+6) {
  margin-top: 20px;
}

.solution-list > li a {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.solution-list > li a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: url("/assets/img/company/prospectus/manufacturing/ems/link_solution.png");
}

.solution-list > li a:hover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: url("/assets/img/company/prospectus/manufacturing/ems/link_solution_hover.png");
}

.solution-list > li a img {
  display: inline-block;
  width: 100%;
  height: auto;
}

/* 生産事例 */
.case-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;
}

.case-box {
  width: 560px;
  padding: 37px 40px 56px;
  background: #fff;
  border-top: #cc1414 3px solid;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.case-box:nth-child(n+3) {
  margin-top: 32px;
}

.case-box .case-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.case-box .case-box__title span {
  display: block;
  width: calc(100% - 62px);
  padding-left: 24px;
  color: #cc1414;
  font-size: 24px;
  font-weight: 700;
}

.case-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 480px;
  margin-bottom: 16px;
}

.case-data > dt {
  background: #262626;
  padding: 8px;
  color: #fff;
  line-height: 1;
  text-align: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.case-data > dd {
  border-top: #f0f0f0 1px solid;
  border-bottom: #f0f0f0 1px solid;
}

.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 450px;
  padding: 4px 12px 12px;
}

.case-list > li {
  display: inline-block;
  margin: 8px 8px 0 0;
  background: #f0f0f0 url("/assets/img/company/prospectus/manufacturing/ems/arrow_small.png") no-repeat bottom right;
}

.case-list > li a {
  display: inline-block;
  padding: 8px;
  color: #333;
  text-decoration: none;
  line-height: 1;
}

.case-list > li a:link, .case-list > li a:visited {
  color: #333;
  text-decoration: none;
}

.case-list > li a:hover {
  background: #fad2d2 url("/assets/img/company/prospectus/manufacturing/ems/arrow_small.png") no-repeat bottom right;
  text-decoration: none;
}

/* お問い合わせ */
.info-box {
  background: url("/assets/img/company/prospectus/manufacturing/ems/bg_contact.jpg") no-repeat top center;
  background-size: cover;
  padding: 16px;
}

.info-box .info-box__deco {
  padding: 104px 0 112px;
  border: rgba(255, 255, 255, 0.48) 1px solid;
  text-align: center;
}

.info-text {
  margin-bottom: 48px;
}

.info-text p {
  color: #fff;
  font-size: 20px;
  line-height: 1.8;
}

.info-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info-list {
  padding-right: 46px;
}

.info-list .info-list__tel {
  margin-bottom: 20px;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  text-align: right;
  line-height: 1;
}

.info-list .info-list__tel::before {
  position: relative;
  top: 5px;
  left: -10px;
  content: url("/assets/img/company/prospectus/manufacturing/ems/icon_tel.png");
}

.info-list .info-list__mail {
  text-align: right;
  line-height: 1;
}

.info-list .info-list__mail::before {
  position: relative;
  top: 5px;
  left: -10px;
  content: url("/assets/img/company/prospectus/manufacturing/ems/icon_mail.png");
}

.info-list .info-list__mail a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.info-list .info-list__mail a:link, .info-list .info-list__mail a:visited {
  color: #fff;
  text-decoration: none;
}

.info-list .info-list__mail a:hover {
  text-decoration: underline;
}

.info-button {
  width: 440px;
}

.info-button .basic-button {
  width: 100%;
  margin: 0;
  padding: 30px;
  font-size: 18px;
  font-weight: 700;
}

/*------------------------------
  ** モーダル
------------------------------*/
.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 120%;
  background-color: rgba(51, 51, 51, 0.98);
}

.modal-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.modal-box.is-show {
  display: block;
}

.modal-box .modal-inner {
  position: relative;
  width: 1276px;
  height: 584px;
  margin: 160px auto;
  padding: 0 78px;
}

.modal-box .modal-inner.is-movie {
  width: 956px;
  height: 450px;
}

.modal-box .modal-box__close-button {
  position: absolute;
  display: inline-block;
  top: 96px;
  right: 96px;
  padding: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

.modal-box .modal-box__close-button02 {
  position: absolute;
  display: block;
  bottom: -112px;
  left: calc(50% - 160px);
  padding: 20px;
  width: 320px;
  height: 64px;
  background: none;
  border: #fff 1px solid;
  color: #fff;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.modal-box .modal-box__close-button02 img {
  position: relative;
  top: -15px;
  right: -5px;
}

.modal-box .modal-box-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1120px;
  height: 584px;
  margin: 0 auto;
  padding: 40px 0 56px;
  background-color: #fff;
}

.modal-box .modal-box-movie {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 800px;
  height: 450px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}

.modal-box .modal-arrow-control .modal-arrow-control__prev-button,
.modal-box .modal-arrow-control .modal-arrow-control__next-button {
  display: inline-block;
  position: absolute;
  top: calc(50% - 29px);
  width: 30px;
  height: 58px;
  background: none;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

.modal-box .modal-arrow-control .modal-arrow-control__prev-button {
  left: 0;
}

.modal-box .modal-arrow-control .modal-arrow-control__next-button {
  right: 0;
}

.modal-box .modal-box__title {
  margin-bottom: 46px;
  padding: 4px 0;
  background: #262626;
}

.modal-box .modal-box__title > span {
  display: block;
  padding: 16px;
  border-top: #8e8e8e 1px solid;
  border-bottom: #8e8e8e 1px solid;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.modal-box .modal-box__image {
  width: 480px;
}

.modal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 56px;
}

.modal-data {
  width: calc(100% - 480px);
  padding-left: 48px;
}

.modal-data > dt {
  color: #cc1414;
  font-size: 18px;
  font-weight: 700;
}

.modal-data > dd {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.modal-data > dd + dt {
  margin-top: 48px;
}

.modal-text {
  width: calc(100% - 480px);
  padding-left: 48px;
}

.modal-text p {
  font-size: 16px;
  line-height: 1.8;
}

.modal-text p + p {
  margin-top: 24px;
}

/*------------------------------------------------------------
  ** 事業内容
------------------------------------------------------------*/
/*------------------------------
  ** メインビジュアル
------------------------------*/
.pg-prospectus-mv {
  position: relative;
  margin-bottom: 24px;
}

.pg-prospectus-mv__heading {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-block;
  max-width: calc(100% - 20px * 2);
  padding: 10px 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #FFF;
}

@media screen and (max-width: 640px) {
  .pg-prospectus-mv__heading {
    position: static;
    margin-bottom: 10px;
    padding: 0;
  }
}

/*------------------------------
  ** FAシステム事業
------------------------------*/
.pg-prospectus-3dMonodukuri {
  display: block;
  max-width: 456px;
}

@media screen and (min-width: 641px) {
  .pg-prospectus-3dMonodukuri {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-prospectus-3dMonodukuri:hover {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------
  ** お問い合わせ
------------------------------------------------------------*/
/*------------------------------
  ** フロー
------------------------------*/
.pg-contact-flow {
  margin-bottom: 38px;
}

/*------------------------------------------------------------
  ** 立花グループについて
------------------------------------------------------------*/
/*------------------------------
  ** 立花グループについて用レイアウト
------------------------------*/
.pg-group-layout__block1 {
  margin-bottom: 90px;
}

.pg-group-layout__block2 {
  margin-bottom: 80px;
}

.pg-group-layout__block3 {
  padding-bottom: 80px;
}

.pg-group-layout__img-wrap {
  margin-bottom: 40px;
}

.pg-group-layout__img-wrap .co-image {
  margin: 0;
}

@media screen and (max-width: 640px) {
  .pg-group-layout__block1 {
    margin-bottom: 45px;
  }
  .pg-group-layout__block2 {
    margin-bottom: 40px;
  }
  .pg-group-layout__block3 {
    padding-bottom: 40px;
  }
  .pg-group-layout__img-wrap {
    padding-bottom: 20px;
  }
}

/*------------------------------------------------------------
  ** ホーム
------------------------------------------------------------*/
/*------------------------------
  ** ホーム用レイアウト
------------------------------*/
.pg-home-layout__content {
  position: relative;
  padding: 140px 0 75px 0;
  background: url("/assets/img/common/bg-wave.jpg"), -webkit-gradient(linear, left top, right top, from(#F9DBD3), to(#C9DEFC));
  background: url("/assets/img/common/bg-wave.jpg"), linear-gradient(to right, #F9DBD3, #C9DEFC);
  background-blend-mode: multiply;
  background-position: left 0 top -12.5vw, center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 960px) {
  .pg-home-layout__content {
    padding: 70px 0 75px 0;
    background-position: left 0 top 0, center;
  }
}

.pg-home-layout__content::before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  display: block;
  width: 200px;
  height: 50px;
  background-color: #E60012;
}

@media screen and (max-width: 1040px) {
  .pg-home-layout__content::before {
    width: 120px;
  }
}

.pg-home-layout__content--multilingual {
  background-size: 100% auto;
}

.pg-home-layout__newsOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 1280px) {
  .pg-home-layout__newsOuter {
    display: block;
    margin-bottom: 40px;
  }
}

.pg-home-layout__news {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1280px) {
  .pg-home-layout__news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 960px) {
  .pg-home-layout__news {
    display: block;
  }
}

.pg-home-layout__newsItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #DBDBDB;
}

.pg-home-layout__newsItem:last-child {
  border-bottom: none;
}

@media screen and (min-width: 961px) and (max-width: 1280px) {
  .pg-home-layout__newsItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: none;
  }
  .pg-home-layout__newsItem:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .pg-home-layout__newsItem:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.pg-home-layout__siteLink {
  width: 47.5vw;
  margin-left: 20px;
}

@media screen and (max-width: 1280px) {
  .pg-home-layout__siteLink {
    width: 100%;
    margin-left: 0;
  }
}

.pg-home-layout__special {
  padding: 0 84px;
}

@media screen and (max-width: 960px) {
  .pg-home-layout__special {
    padding: 0 24px;
  }
}

/*------------------------------
  ** ホーム用見出しA
  * 英語（大）＋日本語（小）の組み合わせ。
------------------------------*/
.pg-home-headingA__label {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.pg-home-headingA__label::before {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 2.125rem;
  font-weight: 600;
}

.pg-home-headingA__label--about {
  font-size: 1.125rem;
}

.pg-home-headingA__label--about::before {
  margin-bottom: 16px;
  content: 'ABOUT US';
  font-size: 2.875rem;
}

@media screen and (max-width: 960px) {
  .pg-home-headingA__label--about {
    font-size: 0.9375rem;
  }
  .pg-home-headingA__label--about::before {
    font-size: 2.375rem;
  }
}

.pg-home-headingA__label--about--cn {
  font-size: 1.125rem;
}

.pg-home-headingA__label--about--cn::before {
  margin-bottom: 16px;
  content: '关于我们';
  font-size: 2.875rem;
}

@media screen and (max-width: 960px) {
  .pg-home-headingA__label--about--cn {
    font-size: 0.9375rem;
  }
  .pg-home-headingA__label--about--cn::before {
    font-size: 2.375rem;
  }
}

.pg-home-headingA__label--news::before {
  content: 'NEWS';
}

.pg-home-headingA__label--irNews::before {
  content: 'IR NEWS';
}

/*------------------------------
  ** ホーム用テキストリンクA
  * 矢印（右）とセットで使用。
------------------------------*/
.pg-home-textLinkA {
  color: #262626;
  text-decoration: none;
}

.pg-home-textLinkA__label {
  font-size: 0.875rem;
}

.pg-home-textLinkA__arrowRight {
  position: relative;
  right: 0;
  margin-left: 10px;
}

@media screen and (min-width: 641px) {
  .pg-home-textLinkA__arrowRight {
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}

.pg-home-textLinkA:hover {
  text-decoration: underline;
}

.pg-home-textLinkA:hover .pg-home-textLinkA__arrowRight {
  right: -5px;
}

/*------------------------------
  ** ホーム用メディアリンクA
  * サムネイルとテキストが重なる。
------------------------------*/
.pg-home-mediaLinkA {
  position: relative;
  display: block;
  color: #262626;
  pointer-events: none;
}

.pg-home-mediaLinkA__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pg-home-mediaLinkA__image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  pointer-events: auto;
}

.pg-home-mediaLinkA__image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.7;
}

.pg-home-mediaLinkA__label {
  position: absolute;
  left: -10px;
  bottom: 10px;
  max-width: calc(100% - 10px);
}

@media screen and (max-width: 960px) {
  .pg-home-mediaLinkA__label {
    bottom: 12px;
  }
}

.pg-home-mediaLinkA__labelSub {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2px 5px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: #E60012;
  letter-spacing: 0.04em;
  background-color: #FFF;
}

.pg-home-mediaLinkA__labelMain {
  display: inline-block;
  padding: 4px 5px;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #FFF;
}

/*-- IE11 --*/
_:-ms-lang(x)::-ms-backdrop, .pg-home-mediaLinkA__labelMain {
  font-size: 1.125rem;
}

/*------------------------------
  ** ホーム用メディアリンクB
  * サムネイルと見出しなどが縦積み。
------------------------------*/
.pg-home-mediaLinkB {
  display: block;
  color: #262626;
  text-decoration: none;
}

@media screen and (min-width: 641px) {
  .pg-home-mediaLinkB {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-home-mediaLinkB:hover {
    opacity: 0.7;
  }
  .pg-home-mediaLinkB:hover .pg-home-mediaLinkB__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.pg-home-mediaLinkB__imageWrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 12px;
  overflow: hidden;
}

.pg-home-mediaLinkB__image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.pg-home-mediaLinkB__heading {
  margin-bottom: 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pg-home-mediaLinkB__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.625rem;
  font-style: italic;
  color: #E60012;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 641px) {
  .c-mediaLinkB:hover .c-mediaLinkB__image {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------
  ** ローディング画面
------------------------------------------------------------*/
.pg-home-loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: #FFF;
}

.pg-home-loading__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.pg-home-loadingMark {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
  -webkit-transform: rotateX(45deg) rotateZ(45deg);
          transform: rotateX(45deg) rotateZ(45deg);
  overflow: hidden;
}

.pg-home-loadingMark__vertical::before {
  position: absolute;
  left: 0;
  bottom: -100%;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #E60012;
  -webkit-animation-name: loading-left;
          animation-name: loading-left;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.pg-home-loadingMark__vertical::after {
  position: absolute;
  right: 0;
  top: -100%;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #E60012;
  -webkit-animation-name: loading-right;
          animation-name: loading-right;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.pg-home-loadingMark__horizontal::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E60012;
  -webkit-animation-name: loading-top;
          animation-name: loading-top;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.pg-home-loadingMark__horizontal::after {
  position: absolute;
  right: -100%;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E60012;
  -webkit-animation-name: loading-bottom;
          animation-name: loading-bottom;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loading-left {
  0% {
    bottom: -100%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

@keyframes loading-left {
  0% {
    bottom: -100%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

@-webkit-keyframes loading-right {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes loading-right {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@-webkit-keyframes loading-top {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes loading-top {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes loading-bottom {
  0% {
    right: -100%;
  }
  50% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}

@keyframes loading-bottom {
  0% {
    right: -100%;
  }
  50% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}

/*------------------------------
  ** メインビジュアル
------------------------------*/
.pg-home-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-home-mv__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.pg-home-mv__nav {
  width: 100px;
  background-color: #E60012;
}

@media screen and (max-width: 1040px) {
  .pg-home-mv__nav {
    width: 60px;
  }
}

/*------------------------------
  メインビジュアルのスライド
------------------------------*/
.pg-home-mvSlide {
  position: relative;
  display: block;
}

.pg-home-mvSlide__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 3.75vw;
  color: #FFF;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 1040px) {
  .pg-home-mvSlide__caption {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-mvSlide__caption {
    display: block;
  }
}

.pg-home-mvSlide__heading {
  width: 25vw;
  margin-right: 11.25vw;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .pg-home-mvSlide__heading {
    margin-right: 60px;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-mvSlide__heading {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

.pg-home-mvSlide__headingImage {
  display: inline-block;
  margin-bottom: 20px;
}

.pg-home-mvSlide__headingMain {
  display: block;
  margin-bottom: 20px;
  font-size: 1.75vw;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pg-home-mvSlide__headingMain:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .pg-home-mvSlide__headingMain {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-mvSlide__headingMain {
    font-size: 1rem;
  }
}

.pg-home-mvSlide__headingSub {
  display: block;
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 960px) {
  .pg-home-mvSlide__headingSub {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-mvSlide__headingSub {
    font-size: 0.75rem;
  }
}

.pg-home-mvSlide__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.75rem;
  line-height: 1.7143;
}

@media screen and (max-width: 1040px) {
  .pg-home-mvSlide__desc {
    margin-right: 60px;
    line-height: 2rem;
  }
  .pg-home-mvSlide__desc--multilingual {
    margin-right: 0;
  }
}

@media screen and (max-width: 960px) {
  .pg-home-mvSlide__desc {
    margin-top: 10px;
    font-size: 0.875rem;
  }
  .pg-home-mvSlide__desc br {
    display: none;
  }
}

/*------------------------------
  ** メインビジュアルのナビゲーション
------------------------------*/
.pg-home-mvNav {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 90px);
}

.pg-home-mvNav__navItem {
  position: relative;
  display: block;
}

.pg-home-mvNav__navItem::before {
  position: absolute;
  right: calc(100% - 10px);
  top: calc(50% - 1px / 2);
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #FFF;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.pg-home-mvNav__navItem--active::before {
  width: 80px;
}

.pg-home-mvNav__navButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: #FFF;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .pg-home-mvNav__navButton {
    width: 32px;
    height: 32px;
  }
}

.pg-home-mvNav__scroll {
  position: absolute;
  bottom: 0;
  left: calc(50% - 8px / 2);
}

@media screen and (max-width: 1040px) {
  .pg-home-mvNav__scroll {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-mvNav__scroll {
    display: block;
  }
}

.pg-home-mvNav__scrollImage {
  width: 8px;
  margin-bottom: 4px;
}

/*------------------------------
  ** 立花エレテックについて
------------------------------*/
.pg-home-about {
  margin-bottom: 98px;
  padding: 0 84px;
}

@media screen and (max-width: 960px) {
  .pg-home-about {
    margin-bottom: 42px;
    padding: 0 16px;
  }
}

.pg-home-about__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 43px;
}

@media screen and (max-width: 1040px) {
  .pg-home-about__main {
    display: block;
  }
}

.pg-home-about__head {
  width: 25vw;
  margin-right: 30px;
}

@media screen and (max-width: 1040px) {
  .pg-home-about__head {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

.pg-home-about__head--multilingual {
  width: 100%;
}

.pg-home-about__heading {
  margin-bottom: 56px;
}

@media screen and (max-width: 960px) {
  .pg-home-about__heading {
    margin-bottom: 20px;
  }
}

.pg-home-about__desc {
  line-height: 2.125;
}

@media screen and (max-width: 640px) {
  .pg-home-about__desc {
    text-align: left;
  }
}

.pg-home-about__links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------
  ** お知らせ
------------------------------*/
.pg-home-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 60px 30px 16px 86px;
  border-bottom: 1px solid #DBDADB;
}

@media screen and (max-width: 1280px) {
  .pg-home-news {
    display: block;
    padding: 50px 25px 16px 25px !important;
  }
}

.pg-home-news:last-child {
  padding: 42px 30px 30px 86px;
  border-bottom: none;
}

.pg-home-news__head {
  width: 200px;
}

@media screen and (max-width: 1280px) {
  .pg-home-news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 300px;
    margin-bottom: 28px;
  }
}

.pg-home-news__heading {
  margin-bottom: 42px;
}

@media screen and (max-width: 1280px) {
  .pg-home-news__heading {
    margin-bottom: 0;
  }
}

.pg-home-news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pg-home-news__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__listItem {
    display: block;
  }
}

.pg-home-news__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__listItem {
    display: block;
  }
}

.pg-home-news__info {
  width: 90px;
  margin-bottom: 4px;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.pg-home-news__date {
  display: inline-block;
  height: 20px;
  min-width: 90px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  color: #A6A1A0;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__date {
    height: auto;
    margin-right: 4px;
  }
}

.pg-home-news__category {
  display: inline-block;
  min-width: 90px;
  padding: 4px 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  color: #7D7978;
  letter-spacing: 0.075em;
  text-align: center;
  border: 1px solid #FC9190;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__category {
    min-width: 60px;
    padding: 2px 4px 0 4px;
    font-size: 0.625rem;
  }
}

.pg-home-news__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 20px;
  font-size: 1rem;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__text {
    display: block;
    padding-top: 0;
  }
}

.pg-home-news__link {
  display: inline-block;
  padding: 4px 8px;
  font-size: 1rem;
  color: #262626;
  line-height: 1.5;
  text-decoration: none;
}

.pg-home-news__link[href]:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1040px) {
  .pg-home-news__link {
    padding: 0;
    font-size: 0.8125rem;
  }
}

/*------------------------------
  ** サイトリンク
------------------------------*/
.pg-home-siteLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.pg-home-siteLink__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pg-home-siteLink__item:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1040px) {
  .pg-home-siteLink__item:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.pg-home-siteLink__item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.4);
}

.pg-home-siteLink__thumb {
  position: relative;
}

.pg-home-siteLink__desc {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 30px;
  font-size: 1vw;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 960px) {
  .pg-home-siteLink__desc {
    padding: 14px 16px;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 640px) {
  .pg-home-siteLink__desc {
    display: none;
  }
}

.pg-home-siteLink__heading {
  padding: 30px 30px 20px 30px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .pg-home-siteLink__heading {
    padding: 15px 10px 20px 10px;
  }
}

.pg-home-siteLink__name {
  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;
  margin-bottom: 10px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 1040px) {
  .pg-home-siteLink__name {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 960px) {
  .pg-home-siteLink__name {
    font-size: 0.9375rem;
  }
}

.pg-home-siteLink__logo {
  mix-blend-mode: multiply;
}

.pg-home-siteLink__nameEn {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: #E60012;
  letter-spacing: 0.04em;
}

.pg-home-siteLink__button {
  width: 100%;
  max-width: 208px;
  margin: 0 auto;
}

/*-- IE11 --*/
_:-ms-lang(x)::-ms-backdrop, .pg-home-siteLink__item:nth-child(odd) {
  background-color: #FFF !important;
}

_:-ms-lang(x)::-ms-backdrop, .pg-home-siteLink__item:nth-child(even) {
  background-color: #F5F5F5 !important;
}

/*------------------------------------------------------------
  ** トップメッセージ
------------------------------------------------------------*/
/*------------------------------
  ** 写真キャプション
------------------------------*/
.pg-irMessage-figCaption {
  font-size: 1.125rem;
  font-weight: 700;
}

.pg-irMessage-figCaption span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.pg-irMessage-rightName {
  text-align: right;
}

/*------------------------------------------------------------
  ** 個人投資家の皆様へ
------------------------------------------------------------*/
/*------------------------------
  ** 2カラムグレー　＋アイコン
------------------------------*/
.pg-irPersonal-grayCol2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 40px;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-grayCol2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 0;
  }
}

.pg-irPersonal-grayCol2__item {
  width: 49.21875%;
  background: #f4f3f0;
  padding: 64px 40px 32px;
  margin-right: 1.5625%;
}

.pg-irPersonal-grayCol2__item:last-child {
  margin-right: 0;
  position: relative;
}

.pg-irPersonal-grayCol2__item:last-child:before {
  content: url(../img/ir/personal/fig-circle-plus.svg);
  display: inline-block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: -32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pg-irPersonal-grayCol2__item .co-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-grayCol2__item {
    width: 100%;
    padding: 24px 20px 16px;
    margin: 30px 0 16px 0;
  }
  .pg-irPersonal-grayCol2__item:last-child {
    margin: 80px 0 0 0;
  }
  .pg-irPersonal-grayCol2__item:last-child:before {
    content: url(../img/ir/personal/fig-circle-plus.svg);
    display: inline-block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .pg-irPersonal-grayCol2__item .co-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.pg-irPersonal-grayCol2__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  width: 63.49206%;
  background: #434c51;
  border-radius: 26px;
  margin: -90px auto 32px;
  padding: 18px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-grayCol2__heading {
    font-size: 1rem;
    width: 90%;
    margin: -42px auto 16px;
    padding: 12px;
  }
}

/*------------------------------
  ** 赤背景2カラムボックス
------------------------------*/
.pg-irPersonal-redCol2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px;
  background: #E60012;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-redCol2 {
    padding: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pg-irPersonal-redCol2__item {
  width: 49.21875%;
  background: #fff;
  padding: 24px 30px 30px;
  margin-right: 1.5625%;
}

.pg-irPersonal-redCol2__item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-redCol2__item {
    width: 100%;
    padding: 24px 30px 30px;
    margin: 0 0 8px 0;
  }
  .pg-irPersonal-redCol2__item:last-child {
    margin: 0;
  }
}

.pg-irPersonal-redCol2__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #262626;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #E60012;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-redCol2__heading {
    font-size: 1rem;
  }
}

/*------------------------------
  ** 赤ボックス＋テキスト
------------------------------*/
.pg-irPersonal-redBox {
  font-size: 1.375rem;
  font-weight: 700;
  background: #E60012;
  color: #fff;
  padding: 42px 60px;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .pg-irPersonal-redBox {
    font-size: 1.125rem;
    font-weight: 700;
    background: #E60012;
    color: #fff;
    padding: 21px 30px;
    line-height: 1.8;
  }
}

/*------------------------------
  ** 赤矢印アイコン
------------------------------*/
.pg-irPersonal-redArrow {
  margin: 20px 0;
  text-align: center;
}

.pg-irPersonal-redArrow img {
  display: inline-block;
}

/*------------------------------
  ** 見出しリンク
------------------------------*/
.pg-irPersonal-headingLink {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 500;
}

.pg-irPersonal-headingLink a {
  color: #262626;
}

.pg-irPersonal-headingLink a:hover {
  text-decoration: none;
}

/*------------------------------
  ** 株式ガイド テキスト部分
------------------------------*/
.pg-irPersonal-Col2Text {
  line-height: 1.6;
  font-size: 0.875rem;
}

/*------------------------------------------------------------
  ** 投資家情報
------------------------------------------------------------*/
/*------------------------------
  ** ニュースリスト
------------------------------*/
.pg-ir-news__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__listItem {
    display: block;
  }
}

.pg-ir-news__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__listItem {
    display: block;
  }
}

.pg-ir-news__info {
  width: 72px;
  margin-bottom: 4px;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.pg-ir-news__date {
  display: inline-block;
  height: 20px;
  min-width: 72px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  color: #262626;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__date {
    height: auto;
    margin-right: 4px;
  }
}

.pg-ir-news__category {
  display: inline-block;
  min-width: 72px;
  padding: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  color: #7D7978;
  letter-spacing: 0.075em;
  text-align: center;
  border: 1px solid #FC9190;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__category {
    min-width: 53px;
    padding: 2px 4px 0 4px;
    font-size: 0.625rem;
  }
}

.pg-ir-news__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 20px;
  font-size: 1rem;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__text {
    display: block;
    padding-top: 0;
  }
}

.pg-ir-news__link {
  display: inline-block;
  padding: 4px 8px;
  font-size: 1rem;
  color: #262626;
  line-height: 1.5;
  text-decoration: underline;
}

.pg-ir-news__link:hover {
  text-decoration: none;
}

@media screen and (max-width: 1040px) {
  .pg-ir-news__link {
    padding: 0;
    font-size: 0.8125rem;
  }
}

/*------------------------------------------------------------
  ** 協働ロボットレンタルサービス
------------------------------------------------------------*/
.pg-kyodo-robot-layout {
  background: #fff;
}

/*------------------------------
  ** 協働ロボットレンタルサービス header
------------------------------*/
.pg-kyodo-robot-header {
  background: #fff;
}

.pg-kyodo-robot-header .pg-kyodo-robot-logo {
  width: 286px;
  position: absolute;
  top: 40px;
  left: 80px;
  z-index: 3;
}

@media screen and (min-width: 641px) {
  .pg-kyodo-robot-header .pg-kyodo-robot-logo {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-kyodo-robot-header .pg-kyodo-robot-logo:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-header {
    padding: 20px 0 24px 20px;
  }
  .pg-kyodo-robot-header .pg-kyodo-robot-logo {
    width: 189px;
    position: relative;
    top: auto;
    left: auto;
  }
}

/*------------------------------
  ** 協働ロボットレンタルサービス footer
------------------------------*/
.pg-kyodo-robot-footer {
  padding: 50px 24px 120px;
  background: #fff;
}

.pg-kyodo-robot-footer .pg-kyodo-robot-logo {
  width: 286px;
  margin: 0 auto 35px;
}

@media screen and (min-width: 641px) {
  .pg-kyodo-robot-footer .pg-kyodo-robot-logo {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-kyodo-robot-footer .pg-kyodo-robot-logo:hover {
    opacity: 0.7;
  }
}

.pg-kyodo-robot-footer .pg-kyodo-robot-copyright {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #727272;
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-footer {
    padding: 25px 20px 40px;
  }
  .pg-kyodo-robot-footer .pg-kyodo-robot-logo {
    width: 189px;
    margin: 0 auto 17px;
  }
  .pg-kyodo-robot-footer .pg-kyodo-robot-copyright {
    font-size: 1rem;
  }
}

/*------------------------------
  ** 協働ロボットレンタルサービス MV
------------------------------*/
.pg-kyodo-robot-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  position: relative;
}

.pg-kyodo-robot-mv:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 480px 0 0 275px;
  border-color: transparent transparent transparent #e70a18;
  position: absolute;
  left: 0;
  bottom: 0;
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox {
  width: 870px;
  padding-left: 13.54167%;
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__sub-heading {
  font-size: 1.25rem;
  font-weight: 900;
  color: #e70a18;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__heading {
  font-size: 4.125rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 38px;
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__description {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(2, 1, 1, 0.5);
  margin-bottom: 54px;
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__button {
  font-size: 1.125rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  height: 74px;
  padding: 12px 24px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  color: #fff;
  background: #e70a18;
  padding-right: 36px;
  background-image: url("/assets/img/common/icon-mountainR--white.svg");
  background-position: right 16px center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 641px) {
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__button:hover {
    color: #e70a18;
    border: 1px solid #e70a18;
    background: #fff;
    background-image: url("/assets/img/common/icon-mountainR--red.svg");
    background-position: right 16px center;
    background-repeat: no-repeat;
  }
}

.pg-kyodo-robot-mv .pg-kyodo-robot-mv__image {
  width: 54.6875%;
  height: 100%;
  background: url("/assets/img/kyodo-robot/fig-mv.png") no-repeat left bottom;
  background-size: cover;
}

.pg-kyodo-robot-mv.is-products {
  width: 100%;
  height: 612px;
  padding: 0 280px;
}

.pg-kyodo-robot-mv.is-products:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 386px 0 0 223px;
  border-color: transparent transparent transparent #e70a18;
  position: absolute;
  left: 0;
  bottom: 0;
}

.pg-kyodo-robot-mv.is-products:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 354px 612px 0;
  border-color: transparent #e70a18 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
}

.pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox {
  width: 100%;
  padding-left: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__sub-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e70a18;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 0px;
}

.pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__description {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 700;
  color: #020101;
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-mv {
    display: block;
    width: 100%;
    height: auto;
  }
  .pg-kyodo-robot-mv:before {
    display: none;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 37px;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__sub-heading {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__heading {
    font-size: 2.0625rem;
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__button {
    font-size: 1rem;
    width: 100%;
    max-width: none;
    height: 60px;
    padding: 12px 24px;
  }
  .pg-kyodo-robot-mv .pg-kyodo-robot-mv__image {
    width: 100%;
    height: auto;
    padding-top: 89.86666666666667%;
    background: url("/assets/img/kyodo-robot/fig-mv-sp.png") no-repeat left bottom;
    background-size: 100% auto;
  }
  .pg-kyodo-robot-mv.is-products {
    width: 100%;
    height: 100%;
    padding: 0 20px 60px;
  }
  .pg-kyodo-robot-mv.is-products:before {
    display: none;
  }
  .pg-kyodo-robot-mv.is-products:after {
    border-width: 0 0 140px 100px;
    border-color: transparent transparent #e70a18 transparent;
    top: auto;
    bottom: 0;
  }
  .pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    text-align: center;
  }
  .pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__sub-heading {
    font-size: 0.9375rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__heading {
    font-size: 2.0625rem;
    line-height: 1.3;
    margin-bottom: 0px;
  }
  .pg-kyodo-robot-mv.is-products .pg-kyodo-robot-mv__headingBox .pg-kyodo-robot-mv__description {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/*------------------------------
  ** こんなお悩みありませんか？
------------------------------*/
.pg-kyodo-robot-worries {
  background: #e70a18;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner {
  max-width: 1448px;
  margin: auto;
  padding: 56px 24px 180px;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__heading {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 100px;
  padding-top: 240px;
  background: url("/assets/img/kyodo-robot/fig-worries-heading.png") no-repeat center top;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item {
  margin-right: 2.85714%;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item:nth-child(3) {
  margin-right: 0;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item:nth-child(7) {
  margin-right: 0;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item.is-col3 {
  width: 31.42857%;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item.is-col4 {
  width: 22.85714%;
  margin-top: 90px;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box {
  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;
  text-align: center;
  width: calc(100% - 20px);
  min-height: 296px;
  height: 100%;
  border: 1px solid #fff;
  -webkit-box-shadow: 20px 20px 0px 0px #ba000c;
          box-shadow: 20px 20px 0px 0px #ba000c;
  padding: 0 16px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 1280px) {
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box {
    font-size: 1.25rem;
  }
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num {
  display: inline-block;
  width: 100px;
  height: 87px;
  background: #e70a18;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  top: -24px;
  left: -1px;
  line-height: 1;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num .pg-kyodo-robot-worries__list-num-big {
  font-size: 3rem;
  padding-left: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num .pg-kyodo-robot-worries__list-num-small {
  font-size: 0.875rem;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner {
    padding: 28px 20px 40px;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-top: 180px;
    background: url("/assets/img/kyodo-robot/fig-worries-heading.png") no-repeat center top;
    background-size: 180px auto;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item {
    margin-right: 0;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item.is-col3 {
    width: 100%;
    margin-top: 45px;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item.is-col4 {
    width: 100%;
    margin-top: 45px;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box {
    width: calc(100% - 10px);
    min-height: auto;
    height: auto;
    border: 1px solid #fff;
    -webkit-box-shadow: 10px 10px 0px 0px #ba000c;
            box-shadow: 10px 10px 0px 0px #ba000c;
    padding: 32px 16px;
    font-size: 1.125rem;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num {
    width: 67px;
    height: 67px;
    top: -24px;
    left: -2px;
    text-align: left;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num .pg-kyodo-robot-worries__list-num-big {
    font-size: 2.25rem;
    padding-left: 6px;
    display: inline-block;
    margin-bottom: 4px;
  }
  .pg-kyodo-robot-worries .pg-kyodo-robot-worries__inner .pg-kyodo-robot-worries__list .pg-kyodo-robot-worries__list-item .pg-kyodo-robot-worries__list-box .pg-kyodo-robot-worries__list-num .pg-kyodo-robot-worries__list-num-small {
    font-size: 0.75rem;
  }
}

/*------------------------------
  ** 3つのポイント
------------------------------*/
.pg-kyodo-robot-point .pg-kyodo-robot-point__inner {
  max-width: 1448px;
  margin: auto;
  padding: 164px 24px;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__heading {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 95px;
  line-height: 1.4;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__heading span {
  color: #e7281c;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item {
  width: 32.14286%;
  padding: 40px 2.85714%;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(2) {
  width: 35.71429%;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(1) {
  padding: 40px 2.85714% 40px 0;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(3) {
  padding: 40px 0 40px 2.85714%;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-image {
  text-align: center;
  margin-bottom: 40px;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-image img {
  display: inline;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num {
  width: 80px;
  text-align: center;
  color: #e7281c;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #e7281c transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num .pg-kyodo-robot-point__list-num-big {
  font-size: 3rem;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num .pg-kyodo-robot-point__list-num-small {
  font-size: 0.875rem;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num-text {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 10px;
  line-height: 1.4;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-text {
  font-size: 1rem;
  line-height: 2.2;
}

.pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-notice {
  font-size: 0.9375rem;
  line-height: 2.2;
  margin-top: 43px;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner {
    padding: 40px 20px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__heading {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item {
    width: 100%;
    padding: 40px 20px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(2) {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(1) {
    padding: 40px 20px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item:nth-child(3) {
    padding: 40px 20px 0;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-image {
    margin-bottom: 20px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading {
    margin-bottom: 16px;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-heading .pg-kyodo-robot-point__list-num-text {
    font-size: 1.25rem;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-text {
    font-size: 0.9375rem;
  }
  .pg-kyodo-robot-point .pg-kyodo-robot-point__inner .pg-kyodo-robot-point__list .pg-kyodo-robot-point__list-item .pg-kyodo-robot-point__list-box .pg-kyodo-robot-point__list-notice {
    font-size: 0.875rem;
    margin-top: 21px;
  }
}

/*------------------------------
  ** 立花エレテック独自のソリューション
------------------------------*/
.pg-kyodo-robot-solution .pg-kyodo-robot-solution__heading {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 95px;
  padding: 0 24px;
  line-height: 1.4;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution__heading span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #e7281c;
  margin-top: 45px;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box {
  background: #f2f2f2;
  position: relative;
  margin-top: 189px;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box-image {
  width: 920px;
  position: absolute;
  left: calc(50% - 953px);
  top: -107px;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1448px;
  margin: auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-preferred-size: 820px;
      flex-basis: 820px;
  background: #fff;
  padding: 80px;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item {
  width: 318px;
  margin: 0 24px 45px 0;
  padding: 0 0 20px 40px;
  background: url("/assets/img/kyodo-robot/icon-checked.svg") no-repeat left 8px top 6px;
  border-bottom: 1px solid #e7281c;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item:nth-child(2n) {
  margin-right: 0;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item:nth-last-child(1) {
  margin-bottom: 0;
}

.pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item:nth-last-child(2) {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution__heading {
    font-size: 1.5rem;
    margin-bottom: 47px;
    padding: 0 20px;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution__heading span {
    font-size: 1.125rem;
    margin-top: 27px;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box {
    background: #f2f2f2;
    position: relative;
    margin-top: 60px;
    padding: 20px;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box-image {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner {
    display: block;
    padding: 0;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list {
    display: block;
    padding: 40px 20px;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item {
    width: 100%;
    margin: 0 0 27px 0;
    padding: 0 0 20px 40px;
    background: url("/assets/img/kyodo-robot/icon-checked.svg") no-repeat left 6px top 2px;
    font-size: 1.25rem;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .pg-kyodo-robot-solution .pg-kyodo-robot-solution-box .pg-kyodo-robot-solution-box__inner .pg-kyodo-robot-solution-box__list .pg-kyodo-robot-solution-box__list-item:nth-last-child(2) {
    margin-bottom: 27px;
  }
}

/*------------------------------
  ** 取扱商品
------------------------------*/
.pg-kyodo-robot-products {
  padding: 164px 24px;
  background: #fff;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__heading {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 95px;
  line-height: 1.4;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__heading span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #e7281c;
  margin-top: 45px;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner {
  max-width: 1400px;
  margin: auto;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 82px;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item {
  width: 19.42857%;
  margin-right: 0.71429%;
  line-height: 1.4;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item:last-child {
  margin-right: 0;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box {
  display: inline-block;
  color: #262626;
  text-decoration: none;
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-image {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-image img {
  width: 100%;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-name {
  font-size: 1rem;
  padding: 20px;
  background: #f2f2f2;
  position: relative;
  z-index: 2;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-name .pg-kyodo-robot-products__list-name-arrow {
  display: block;
  background: url("/assets/img/common/icon-mountainR--red.svg") no-repeat left top 8px;
  font-weight: bold;
  padding-left: calc(6px + 10px);
  margin-bottom: 8px;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-name .pg-kyodo-robot-products__list-name-sub {
  display: block;
  padding-left: 16px;
}

@media screen and (min-width: 641px) {
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item:hover {
    opacity: 0.7;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item:hover .pg-kyodo-robot-products__list-image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 0 24px;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact span {
  position: relative;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact span:before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 22px;
  background: url("/assets/img/kyodo-robot/icon-bottom-arrow.png") no-repeat center center;
  position: absolute;
  top: 8px;
  left: -90px;
}

.pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact span:after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 22px;
  background: url("/assets/img/kyodo-robot/icon-bottom-arrow.png") no-repeat center center;
  position: absolute;
  top: 8px;
  right: -90px;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-products {
    padding: 40px 20px;
    background: #fff;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__heading {
    font-size: 1.5rem;
    padding: 0 20px;
    margin-bottom: 47px;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__heading span {
    display: inline-block;
    font-size: 1.125rem;
    margin-top: 27px;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 41px;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item:first-child {
    margin: 0;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-name {
    font-size: 0.9375rem;
    padding: 20px;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__list .pg-kyodo-robot-products__list-item .pg-kyodo-robot-products__list-box .pg-kyodo-robot-products__list-name .pg-kyodo-robot-products__list-name-arrow {
    margin-bottom: 4px;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact {
    font-size: 1.125rem;
    padding: 0 20px;
    line-height: 1.4;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact span:before {
    width: 42px;
    height: 21px;
    background: url("/assets/img/kyodo-robot/icon-bottom-arrow.png") no-repeat center center;
    top: 16px;
    left: -50px;
    background-size: 100% auto;
  }
  .pg-kyodo-robot-products .pg-kyodo-robot-products__inner .pg-kyodo-robot-products__contact span:after {
    width: 42px;
    height: 21px;
    background: url("/assets/img/kyodo-robot/icon-bottom-arrow.png") no-repeat center center;
    top: 16px;
    right: -70px;
    background-size: 100% auto;
  }
}

/*------------------------------
  ** お問い合わせ・お見積り
------------------------------*/
.pg-kyodo-robot-contact {
  background: #e70a18;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner {
  max-width: 1448px;
  margin: auto;
  padding: 82px 24px;
  color: #fff;
  text-align: center;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__heading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 56px;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__desc {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 85px;
  line-height: 1.4;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__button {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 45px;
  padding: 30px;
  color: #e7281c;
  border: 1px solid #e7281c;
  border-radius: 5px;
  background: #fff url("/assets/img/common/icon-mountainR--red.svg") no-repeat right 26px center;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__button:hover {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #e7281c url("/assets/img/common/icon-mountainR--white.svg") no-repeat right 26px center;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__tel {
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}

.pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__tel span {
  padding-left: 60px;
  background: url("/assets/img/kyodo-robot/icon-tel.svg") no-repeat left center;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner {
    padding: 40px 20px;
  }
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__heading {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__button {
    max-width: none;
    width: 100%;
    margin: 0 auto 27px;
    padding: 20px;
    font-size: 1.125rem;
    background: #fff url("/assets/img/common/icon-mountainR--red.svg") no-repeat right 13px center;
  }
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__tel {
    font-size: 2.25rem;
    margin-bottom: 10px;
  }
  .pg-kyodo-robot-contact .pg-kyodo-robot-contact__inner .pg-kyodo-robot-contact__tel span {
    padding-left: 40px;
    background-size: 30px auto;
  }
}

/*------------------------------
  ** 商品詳細
------------------------------*/
.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner {
  max-width: 1448px;
  margin: 0 auto;
  padding: 170px 24px 70px;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 80px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e70a18;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading .pg-kyodo-robot-detail__heading-robot {
  font-size: 2.25rem;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading .pg-kyodo-robot-detail__heading-name {
  font-size: 2rem;
  padding-left: 30px;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image {
  width: 35.71429%;
  margin-right: 5.71429%;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image figure img {
  width: 100%;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image figure figcaption {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.4;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image figure + figure {
  margin-top: 18px;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content {
  width: 58.57143%;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-feature {
  font-size: 2rem;
  margin-bottom: 18px;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-text {
  font-size: 1rem;
  margin-bottom: 38px;
  line-height: 2.2;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-heading-red {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: bold;
  color: #e70a18;
  line-height: 1.4;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec {
  background: #f2f2f2;
  padding: 48px 40px;
  margin-top: 58px;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec .pg-kyodo-robot-detail-box__content-spec-list li {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-left: 14px;
  line-height: 1.4;
  position: relative;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec .pg-kyodo-robot-detail-box__content-spec-list li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #e70a18;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 0;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec .pg-kyodo-robot-detail-box__content-spec-list li:last-child {
  margin-bottom: 0;
}

.pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec + .pg-kyodo-robot-detail-box__content-text {
  margin-top: 38px;
}

@media screen and (max-width: 960px) {
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner {
    padding: 35px 20px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading .pg-kyodo-robot-detail__heading-robot {
    font-size: 1.125rem;
    width: 100%;
    margin-bottom: 5px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail__heading .pg-kyodo-robot-detail__heading-name {
    font-size: 1rem;
    padding-left: 0;
    width: 100%;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__image figure figcaption {
    font-size: 1.125rem;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content {
    width: 100%;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-feature {
    font-size: 1.5rem;
    margin-bottom: 9px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-text {
    font-size: 0.9375rem;
    margin-bottom: 19px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-heading-red {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec {
    padding: 24px 20px;
    margin-top: 29px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec .pg-kyodo-robot-detail-box__content-spec-list li {
    font-size: 0.9375rem;
    margin-bottom: 7px;
  }
  .pg-kyodo-robot-detail .pg-kyodo-robot-detail__inner .pg-kyodo-robot-detail-box .pg-kyodo-robot-detail-box__content .pg-kyodo-robot-detail-box__content-spec + .pg-kyodo-robot-detail-box__content-text {
    margin-top: 19px;
  }
}

/*------------------------------------------------------------
  ** 戦略ビジネス／製品
------------------------------------------------------------*/
/*------------------------------
  ** 戦略ビジネス／製品用レイアウト
------------------------------*/
.pg-number-layout__block1, .pg-number-layout__block2 {
  margin-bottom: 80px;
}

.pg-number-layout__block3 {
  margin-bottom: 50px;
}

.pg-number-layout__block4 {
  margin-bottom: 17px;
}

.pg-number-layout__block5 {
  padding-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .pg-number-layout__block1, .pg-number-layout__block2 {
    margin-bottom: 40px;
  }
  .pg-number-layout__block3 {
    margin-bottom: 30px;
  }
  .pg-number-layout__block5 {
    padding-bottom: 20px;
  }
}

/*------------------------------
  ** 数字用ボックス
------------------------------*/
.pg-number-numBox {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 340px;
  border: 1px solid #E70A18;
  position: relative;
}

.pg-number-numBox.box1 {
  background-image: url("/assets/img/number/bg-block1-box1.png");
  background-size: 150px auto;
}

.pg-number-numBox.box2 {
  background-image: url("/assets/img/number/bg-block1-box2.png");
  background-size: 168px auto;
}

.pg-number-numBox.box3 {
  background-image: url("/assets/img/number/bg-block1-box3.png");
  background-size: 203px auto;
}

.pg-number-numBox.box4 {
  background-image: url("/assets/img/number/bg-block1-box4.png");
  background-size: 177px auto;
}

.pg-number-numBox.box5 {
  background-image: url("/assets/img/number/bg-block1-box5.png");
  background-size: 150px auto;
}

.pg-number-numBox.box6 {
  background-image: url("/assets/img/number/bg-block1-box6.png");
  background-size: 156px auto;
}

.pg-number-numBox.box7 {
  background-image: url("/assets/img/number/bg-block1-box7.png");
  background-size: 145px auto;
}

.pg-number-numBox.box8 {
  background-image: url("/assets/img/number/bg-block1-box8.png");
  background-size: 145px auto;
}

.pg-number-numBox.box9 {
  background-image: url("/assets/img/number/bg-block2-box1.png");
  background-size: 179px auto;
}

.pg-number-numBox.box10 {
  background-image: url("/assets/img/number/bg-block2-box2.png");
  background-size: 173px auto;
}

.pg-number-numBox.box11 {
  background-image: url("/assets/img/number/bg-block2-box3.png");
  background-size: 200px auto;
}

.pg-number-numBox.box12 {
  background-image: url("/assets/img/number/bg-block2-box4.png");
  background-size: 172px auto;
}

.pg-number-numBox__title {
  border-bottom: 1px solid #E70A18;
  color: #E70A18;
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
}

.pg-number-numBox__body {
  padding: 16px;
}

.pg-number-numBox__subTitle {
  background-color: rgba(231, 10, 24, 0.5);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}

.pg-number-numBox__number {
  color: #434C51;
  font-size: 1.5rem;
  text-align: center;
}

.pg-number-numBox__number strong {
  font-family: "Barlow", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}

.pg-number-numBox__number.big {
  margin-top: 20px;
}

.pg-number-numBox__number.big strong {
  font-size: 5rem;
}

.pg-number-numBox__number.medium {
  margin-bottom: 8px;
}

.pg-number-numBox__number.medium strong {
  font-size: 3.75rem;
}

.pg-number-numBox__text {
  font-size: 0.8125rem;
  line-height: 1.76;
  margin-bottom: 13px;
}

.pg-number-numBox__text.center {
  text-align: center;
}

.pg-number-numBox__siteLink {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0px 15px 16px;
}

.pg-number-numBox__siteLink .co-buttonA__label {
  font-size: 0.875rem;
}

/*------------------------------------------------------------
  ** ロボットスクール
------------------------------------------------------------*/
.pg-robot-school-layout {
  background: #fff;
}

/*------------------------------
  ** ロボットスクール header
------------------------------*/
.pg-robot-school-header {
  background: #fff;
  height: 125px;
}

.pg-robot-school-header .pg-robot-school-logo {
  width: 286px;
  position: absolute;
  top: 40px;
  left: 80px;
  z-index: 3;
}

@media screen and (min-width: 641px) {
  .pg-robot-school-header .pg-robot-school-logo {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-robot-school-header .pg-robot-school-logo:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .pg-robot-school-header {
    padding: 20px 0 24px 20px;
  }
  .pg-robot-school-header .pg-robot-school-logo {
    width: 189px;
    position: relative;
    top: auto;
    left: auto;
  }
}

/*------------------------------
  ** ロボットスクール footer
------------------------------*/
.pg-robot-school-footer {
  padding: 50px 24px 120px;
  background: #fff;
}

.pg-robot-school-footer .pg-robot-school-logo {
  width: 286px;
  margin: 0 auto 35px;
}

@media screen and (min-width: 641px) {
  .pg-robot-school-footer .pg-robot-school-logo {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .pg-robot-school-footer .pg-robot-school-logo:hover {
    opacity: 0.7;
  }
}

.pg-robot-school-footer .pg-robot-school-copyright {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #727272;
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-footer {
    padding: 25px 20px 40px;
  }
  .pg-robot-school-footer .pg-robot-school-logo {
    width: 189px;
    margin: 0 auto 17px;
  }
  .pg-robot-school-footer .pg-robot-school-copyright {
    font-size: 1rem;
  }
}

/*------------------------------
  ** お問い合わせ・お見積り
------------------------------*/
.pg-robot-school-contact {
  background: #e70a18;
  background-image: url("/assets/img/robot-school/footer_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.pg-robot-school-contact .pg-robot-school-contact__inner {
  max-width: 1448px;
  margin: auto;
  padding: 82px 24px;
  color: #fff;
  text-align: center;
}

.pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__heading {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 50px;
}

.pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__desc {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
}

.pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__button {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 45px;
  padding: 30px;
  color: #e7281c;
  border: 1px solid #e7281c;
  border-radius: 5px;
  background: #fff url("/assets/img/common/icon-mountainR--red.svg") no-repeat right 26px center;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__button:hover {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #e7281c url("/assets/img/common/icon-mountainR--white.svg") no-repeat right 26px center;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-contact .pg-robot-school-contact__inner {
    padding: 40px 20px;
  }
  .pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__heading {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  .pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .pg-robot-school-contact .pg-robot-school-contact__inner .pg-robot-school-contact__button {
    max-width: none;
    width: 100%;
    margin: 0 auto 27px;
    padding: 20px;
    font-size: 1.125rem;
    background: #fff url("/assets/img/common/icon-mountainR--red.svg") no-repeat right 13px center;
  }
}

/*------------------------------
  ** ロボットスクール MV
------------------------------*/
.pg-robot-school-mv {
  padding: 94px 0 560px;
  background-image: url("/assets/img/robot-school/fig-mv.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  text-align: center;
}

.pg-robot-school-mv .pg-robot-school-mv__sub-heading {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 20px;
  background-color: #E7281C;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.pg-robot-school-mv .pg-robot-school-mv__heading {
  font-size: 4.125rem;
  font-weight: 900;
}

.pg-robot-school-mv .pg-robot-school-mv__lead {
  margin: 94px auto 0;
  width: 930px;
  text-align: left;
}

.pg-robot-school-mv .pg-robot-school-mv__lead::after {
  content: '';
  clear: both;
  display: block;
}

.pg-robot-school-mv .pg-robot-school-mv__lead li {
  float: left;
  margin-top: 38px;
  width: 450px;
  font-size: 1.25rem;
  font-weight: 900;
}

.pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(1), .pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(2) {
  margin-top: 0;
}

.pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(2), .pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(4) {
  width: 480px;
}

.pg-robot-school-mv .pg-robot-school-mv__lead li::before {
  position: relative;
  top: 8px;
  margin-right: 14px;
  content: '';
  display: inline-block;
  width: 33px;
  height: 30px;
  background-image: url("/assets/img/robot-school/icon-check.svg");
  background-repeat: no-repeat;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-mv {
    padding: 0 24px 240px;
    background-size: auto 50%;
  }
  .pg-robot-school-mv .pg-robot-school-mv__sub-heading {
    font-size: 0.875rem;
  }
  .pg-robot-school-mv .pg-robot-school-mv__heading {
    font-size: 2rem;
  }
  .pg-robot-school-mv .pg-robot-school-mv__lead {
    margin-top: 40px;
    width: 100%;
  }
  .pg-robot-school-mv .pg-robot-school-mv__lead li {
    float: none;
    margin-top: 16px;
    padding-left: 24px;
    width: 100%;
    text-indent: -24px;
    line-height: 1.6;
    font-size: 1rem;
  }
  .pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(2) {
    margin-top: 16px;
  }
  .pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(2), .pg-robot-school-mv .pg-robot-school-mv__lead li:nth-child(4) {
    width: 100%;
  }
  .pg-robot-school-mv .pg-robot-school-mv__lead li::before {
    margin-right: 6px;
    top: 0;
    width: 16px;
    height: 15px;
    background-size: 16px 15px;
  }
}

/*------------------------------
  ** ロボットスクール 教育メニュー
------------------------------*/
.pg-robot-school-education {
  padding: 170px 24px 160px;
  background-color: #E7281C;
  color: #fff;
}

.pg-robot-school-education .pg-robot-school-education__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
}

.pg-robot-school-education .pg-robot-school-education__inner .pg-robot-school-education__menu {
  width: 480px;
  padding-right: 56px;
  border-right: 1px solid #F3938D;
}

.pg-robot-school-education .pg-robot-school-education__inner .pg-robot-school-education__course {
  padding-left: 56px;
  max-width: 920px;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-education {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pg-robot-school-education .pg-robot-school-education__inner {
    display: block;
  }
  .pg-robot-school-education .pg-robot-school-education__inner .pg-robot-school-education__menu {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
  .pg-robot-school-education .pg-robot-school-education__inner .pg-robot-school-education__course {
    margin-top: 32px;
    padding-left: 0;
  }
}

.pg-robot-school-menu .pg-robot-school-menu__heading {
  font-size: 3rem;
  font-weight: 900;
}

.pg-robot-school-menu .pg-robot-school-menu__heading span {
  display: block;
  margin-top: 32px;
  font-size: 1.375rem;
}

.pg-robot-school-menu .pg-robot-school-menu__campaign {
  margin-top: 48px;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-menu .pg-robot-school-menu__heading {
    font-size: 1.5rem;
  }
  .pg-robot-school-menu .pg-robot-school-menu__heading span {
    margin-top: 16px;
    font-size: 0.75rem;
  }
  .pg-robot-school-menu .pg-robot-school-menu__campaign {
    margin-top: 24px;
  }
}

.pg-robot-school-campaign {
  padding: 35px 22px;
  width: 422px;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
}

.pg-robot-school-campaign .pg-robot-school-campaign__heading {
  position: relative;
  margin-bottom: 18px;
  width: 270px;
  height: 28px;
  font-size: 1.5rem;
  font-weight: 900;
}

.pg-robot-school-campaign .pg-robot-school-campaign__heading span {
  position: absolute;
  top: 0;
  left: 2px;
}

.pg-robot-school-campaign .pg-robot-school-campaign__heading::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 100%;
  height: 9px;
  background-color: #FEDD3B;
}

.pg-robot-school-campaign .pg-robot-school-campaign__price .price {
  text-shadow: 3px 3px 0px #C3C3C3;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  color: #E7281C;
}

.pg-robot-school-campaign .pg-robot-school-campaign__price .yen {
  text-shadow: 3px 3px 0px #C3C3C3;
  font-size: 1.5rem;
  font-weight: 900;
  color: #E7281C;
}

.pg-robot-school-campaign .pg-robot-school-campaign__price .tax {
  font-size: 0.875rem;
  font-weight: bold;
}

.pg-robot-school-campaign .pg-robot-school-campaign__price .text {
  font-size: 1.125rem;
  font-weight: bold;
}

.pg-robot-school-campaign .pg-robot-school-campaign__option {
  display: block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-campaign {
    padding: 16px;
    width: 100%;
    max-width: 320px;
  }
  .pg-robot-school-campaign .pg-robot-school-campaign__heading {
    position: relative;
    margin-bottom: 18px;
    width: 270px;
    height: 28px;
    font-size: 1.5rem;
    font-weight: 900;
  }
  .pg-robot-school-campaign .pg-robot-school-campaign__price .price {
    font-size: 2.25rem;
  }
  .pg-robot-school-campaign .pg-robot-school-campaign__price .yen {
    font-size: 1.25rem;
  }
  .pg-robot-school-campaign .pg-robot-school-campaign__price .tax {
    font-size: 0.875rem;
  }
  .pg-robot-school-campaign .pg-robot-school-campaign__price .text {
    font-size: 0.875rem;
  }
}

.pg-robot-school-course .pg-robot-school-course__heading {
  margin-bottom: 50px;
  font-size: 2.375rem;
  font-weight: 900;
  line-height: 1.8;
}

.pg-robot-school-course .pg-robot-school-course__text {
  font-size: 1.25rem;
  line-height: 2.4;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-course .pg-robot-school-course__heading {
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .pg-robot-school-course .pg-robot-school-course__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/*------------------------------
  ** ロボットスクール 画像イメージ
------------------------------*/
/*------------------------------
  ** ロボットスクール テキストリンク
------------------------------*/
.pg-robot-school-link {
  color: #E7281C;
}

/*------------------------------
  ** ロボットスクール 講習内容 コンテンツ
------------------------------*/
.pg-robot-school-contents {
  padding: 140px 24px;
  background-color: #F2F2F2;
}

.pg-robot-school-contents .pg-robot-school-contents__inner {
  margin: 0 auto;
  padding: 80px 56px;
  border: 4px solid #E7281C;
  border-radius: 10px;
  background-color: #fff;
  max-width: 1400px;
}

.pg-robot-school-contents .pg-robot-school-contents__button {
  margin: 0 auto;
  display: block;
  padding: 30px;
  width: 450px;
  border-radius: 5px;
  border: 1px solid #E7281C;
  background-color: #E7281C;
  background-image: url("/assets/img/common/icon-mountainR--white.svg");
  background-repeat: no-repeat;
  background-position: right 40px center;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pg-robot-school-contents .pg-robot-school-contents__button:hover {
  background-color: #fff;
  background-image: url("/assets/img/common/icon-mountainR--red.svg");
  color: #E7281C;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-contents {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pg-robot-school-contents .pg-robot-school-contents__inner {
    padding: 24px;
  }
  .pg-robot-school-contents .pg-robot-school-contents__button {
    padding: 20px;
    width: 100%;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 セクション
------------------------------*/
.pg-robot-school-section {
  margin-bottom: 70px;
}

.pg-robot-school-section .pg-robot-school-section__heading {
  margin-bottom: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 2rem;
}

.pg-robot-school-section .pg-robot-school-section__textBox p {
  line-height: 2.0;
}

.pg-robot-school-section .pg-robot-school-section__textBox + .pg-robot-school-columns {
  margin-top: 65px;
}

.pg-robot-school-section .pg-robot-school-section__textBox .pg-robot-school-section__textBox-campaign {
  font-size: 1.5rem;
  color: #E7281C;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-section {
    margin-bottom: 40px;
  }
  .pg-robot-school-section .pg-robot-school-section__heading {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 1.5rem;
  }
  .pg-robot-school-section .pg-robot-school-section__textBox p {
    line-height: 1.6;
  }
  .pg-robot-school-section .pg-robot-school-section__textBox + .pg-robot-school-columns {
    margin-top: 32px;
  }
  .pg-robot-school-section .pg-robot-school-section__textBox .pg-robot-school-section__textBox-campaign {
    font-size: 1.25rem;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 カラム
------------------------------*/
.pg-robot-school-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.pg-robot-school-columns + .pg-robot-school-columns {
  margin-top: 50px;
}

.pg-robot-school-columns .pg-robot-school-columns__box {
  margin-right: 2.42188%;
  width: 31.71875%;
}

.pg-robot-school-columns .pg-robot-school-columns__box:nth-child(3) {
  margin-right: 0;
}

.pg-robot-school-columns.has-two .pg-robot-school-columns__box {
  margin-right: 3.125%;
  width: 48.4375%;
}

.pg-robot-school-columns.has-two .pg-robot-school-columns__box:nth-child(2) {
  margin-right: 0;
}

.pg-robot-school-columns .pg-robot-school-columns__heading {
  margin-bottom: 28px;
  font-size: 1.625rem;
  font-weight: bold;
}

.pg-robot-school-columns .pg-robot-school-columns__heading::before {
  position: relative;
  top: -10px;
  display: inline-block;
  content: '';
  margin-right: 16px;
  width: 20px;
  height: 2px;
  background-color: #E7281C;
}

.pg-robot-school-columns .pg-robot-school-columns__text {
  min-height: 100px;
  line-height: 2.0;
}

.pg-robot-school-columns .pg-robot-school-columns__button {
  display: block;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #E7281C;
  background-color: #E7281C;
  color: #fff;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pg-robot-school-columns .pg-robot-school-columns__button::after {
  display: inline-block;
  margin-left: 14px;
  content: '';
  background-image: url("/assets/img/robot-school/icon-blank.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
}

.pg-robot-school-columns .pg-robot-school-columns__button:hover {
  background-color: #fff;
  color: #E7281C;
}

.pg-robot-school-columns .pg-robot-school-columns__button:hover::after {
  background-image: url("/assets/img/robot-school/icon-blank-red.svg");
}

.pg-robot-school-columns .pg-robot-school-columns__map {
  position: relative;
  margin-top: 32px;
  padding-bottom: 66.74%;
  height: 0;
  border: 1px solid #ddd;
  overflow: hidden;
}

.pg-robot-school-columns .pg-robot-school-columns__map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-columns {
    display: block;
    margin-top: 24px;
  }
  .pg-robot-school-columns + .pg-robot-school-columns {
    margin-top: 24px;
  }
  .pg-robot-school-columns .pg-robot-school-columns__box {
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
  }
  .pg-robot-school-columns.has-two .pg-robot-school-columns__box {
    margin-right: 0;
    width: 100%;
  }
  .pg-robot-school-columns .pg-robot-school-columns__heading {
    margin-bottom: 14px;
    font-size: 1.125rem;
  }
  .pg-robot-school-columns .pg-robot-school-columns__heading::before {
    top: -6px;
    margin-right: 8px;
    width: 10px;
  }
  .pg-robot-school-columns .pg-robot-school-columns__text {
    min-height: inherit;
    line-height: 1.8;
  }
  .pg-robot-school-columns .pg-robot-school-columns__button {
    margin-top: 8px;
    padding: 10px 16px;
  }
  .pg-robot-school-columns .pg-robot-school-columns__map {
    margin-top: 9px;
    padding-bottom: 40%;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 リスト
------------------------------*/
.pg-robot-school-list li {
  margin-top: 16px;
  margin-left: 20px;
  text-indent: -20px;
  line-height: 1.6;
}

.pg-robot-school-list li::before {
  position: relative;
  top: -4px;
  display: inline-block;
  content: '';
  margin-right: 15px;
  width: 5px;
  height: 5px;
  background-color: #000;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-list li {
    margin-top: 8px;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 1日目・2日目
------------------------------*/
.pg-robot-school-days {
  padding: 35px;
  border: 2px solid #E7281C;
  border-radius: 8px;
}

.pg-robot-school-days .pg-robot-school-days__heading {
  margin-bottom: 32px;
  font-size: 1.375rem;
  font-weight: bold;
}

.pg-robot-school-days .pg-robot-school-days__heading span {
  padding-left: 17px;
  font-size: 1rem;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-days {
    padding: 16px;
  }
  .pg-robot-school-days .pg-robot-school-days__heading {
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
  .pg-robot-school-days .pg-robot-school-days__heading span {
    padding-left: 12px;
    font-size: 0.875rem;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 補足テキスト
------------------------------*/
.pg-robot-school-option-text {
  margin-top: 28px;
  font-size: 0.875rem;
}

@media screen and (max-width: 960px) {
  .pg-robot-school-option-text {
    margin-top: 14px;
  }
}

/*------------------------------
  ** ロボットスクール 講習内容 PDFアイコン
------------------------------*/
.robot-school-icon-pdf {
  position: relative;
  top: -3px;
  display: inline-block;
  vertical-align: middle;
}

/*------------------------------------------------------------
  ** 戦略ビジネス／製品
------------------------------------------------------------*/
/*------------------------------
  ** 戦略ビジネス／製品用レイアウト
------------------------------*/
.pg-stbusiness-layout__block1 {
  margin-bottom: 80px;
}

.pg-stbusiness-layout__block2 {
  padding-bottom: 40px;
}

.pg-stbusiness-layout__block4 {
  background-color: #F0F0F0;
  padding-top: 40px;
}

.pg-stbusiness-layout__block5 {
  margin-top: 40px;
  padding-bottom: 74px;
}

.pg-stbusiness-layout__img-wrap {
  margin-bottom: 40px;
}

.pg-stbusiness-layout__img-wrap .co-image {
  margin: 0;
}

@media screen and (max-width: 640px) {
  .pg-stbusiness-layout__block4 {
    background-color: #F0F0F0;
    padding-top: 30px;
  }
  .pg-stbusiness-layout__block5 {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .pg-stbusiness-layout__img-wrap {
    margin-bottom: 20px;
  }
}

/*------------------------------
  ** 製品情報
------------------------------*/
.pg-stbusiness-block4Item {
  margin-bottom: 40px;
}

.pg-stbusiness-block4Item__title {
  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;
  background-color: #E70A18;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
  padding: 11px;
  text-align: center;
}

.pg-stbusiness-block4Item__image {
  margin-bottom: 24px;
}

.pg-stbusiness-block4Item__text {
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .pg-stbusiness-block4Item {
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------
  ** 戦略ビジネス／製品
------------------------------------------------------------*/
/*------------------------------
  ** 戦略ビジネス／製品用レイアウト
------------------------------*/
.pg-strength-layout__block1, .pg-strength-layout__block2 {
  margin-bottom: 80px;
}

.pg-strength-layout__block3 {
  margin-bottom: 50px;
}

.pg-strength-layout__block4 {
  margin-bottom: 17px;
}

.pg-strength-layout__block5 {
  padding-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .pg-strength-layout__block1, .pg-strength-layout__block2 {
    margin-bottom: 40px;
  }
  .pg-strength-layout__block3 {
    margin-bottom: 30px;
  }
  .pg-strength-layout__block5 {
    padding-bottom: 40px;
  }
}

/*------------------------------
  ** 右寄せテキスト
------------------------------*/
.pg-strength-block1textwrap {
  background-color: #434C51;
  background-image: url("/assets/img/strength/bg-block1.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 40px 40px 42px 440px;
  color: #fff;
}

.pg-strength-block1textwrap__heading {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pg-strength-block1textwrap__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media screen and (max-width: 960px) {
  .pg-strength-block1textwrap {
    padding-left: 50%;
  }
}

@media screen and (max-width: 640px) {
  .pg-strength-block1textwrap {
    background-image: none;
    padding: 20px 20px 5px;
  }
}

/*------------------------------
  ** POINT
------------------------------*/
.pg-strength-pointBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.pg-strength-pointBox__leftContent, .pg-strength-pointBox__rightContent {
  width: calc(50% - 12px);
}

.pg-strength-pointBox__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

.pg-strength-pointBox__headingNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #E70A18;
  color: #E70A18;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  width: 66px;
  min-height: 66px;
}

.pg-strength-pointBox__headingNumber * {
  width: 100%;
}

.pg-strength-pointBox__headingNumber strong {
  font-size: 1.5rem;
}

.pg-strength-pointBox__headingText {
  background-color: #E70A18;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 22px 16px 22px;
  width: calc(100% - 68px);
}

.pg-strength-pointBox:not(:first-child) {
  border-top: 1px dashed #434C51;
  padding-top: 40px;
}

@media screen and (max-width: 640px) {
  .pg-strength-pointBox {
    display: block;
    margin-bottom: 30px;
  }
  .pg-strength-pointBox__leftContent, .pg-strength-pointBox__rightContent {
    width: 100%;
  }
}

/*------------------------------
  ** 幅広いラインナップ
------------------------------*/
.pg-strength-lineupBox__title {
  background-color: #E70A18;
  color: #fff;
  font-size: 1.25rem;
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
}

.pg-strength-lineupBox__image {
  margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
  .pg-strength-lineupBox {
    padding-bottom: 30px;
  }
}

/*==========================================================================================
  ** structure
  * サイト構造に関わるスタイル。
==========================================================================================*/
/*------------------------------------------------------------
  ** 下層共通
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-100th-layout {
  background-color: #FFF;
}

.st-100th-layout .co-col2__item:nth-child(n+3) {
  margin-top: 24px;
}

.st-100th-layout .co-text {
  line-height: 1.7;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .st-100th-layout .co-text {
    margin-bottom: 20px;
  }
}

/*------------------------------
  ** メインビジュアル
------------------------------*/
.st-100th-mv {
  position: relative;
}

@media screen and (max-width: 640px) {
  .st-100th-mv {
    overflow: hidden;
    margin-bottom: 16px;
  }
}

.st-100th-mv__headingBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .st-100th-mv__headingBox {
    background: none;
    display: block;
    position: relative;
    padding: 155px 20px 0;
    z-index: 10;
  }
}

@media screen and (max-width: 640px) {
  .st-100th-mv__headingInnerBox {
    background-color: #E60012;
    padding: 33px 20px 30px;
  }
}

@media screen and (max-width: 640px) {
  .st-100th-mv__mainImage {
    display: none;
  }
}

.st-100th-mv__mainImageSP {
  display: none;
}

@media screen and (max-width: 640px) {
  .st-100th-mv__mainImageSP {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.st-100th-mv__heading {
  text-align: center;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
  .st-100th-mv__heading {
    font-size: 1.5rem;
  }
}

.st-100th-mv__description {
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .st-100th-mv__description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

/*------------------------------
  ** リンクボックス
------------------------------*/
.st-100th-siteLink__inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 641px) {
  .st-100th-siteLink__inner .st-100th-siteLink__mainImageBox {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    pointer-events: auto;
  }
  .st-100th-siteLink__inner:hover .st-100th-siteLink__mainImageBox {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

@media screen and (max-width: 640px) {
  .st-100th-siteLink__inner {
    height: auto;
  }
}

.st-100th-siteLink__textBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-100th-siteLink__textInnerBox {
  width: 100%;
}

.st-100th-siteLink__heading {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
  .st-100th-siteLink__heading {
    font-size: 1.5rem;
  }
}

.st-100th-siteLink__description {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .st-100th-siteLink__description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.st-100th-siteLink__mainImageBox {
  display: block;
}

@media screen and (max-width: 640px) {
  .st-100th-siteLink__mainImageBox {
    margin-left: -20%;
    width: 200%;
  }
}

/*------------------------------------------------------------
  ** 下層共通
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-aboutus {
  padding-bottom: 80px;
  background-color: #FFF;
}

@media screen and (max-width: 640px) {
  .st-aboutus {
    padding-bottom: 40px;
  }
}

/*------------------------------
** 見出し
* ABOUT USがつく
------------------------------*/
.st-aboutus-heading {
  border-top: 1px solid #E60012;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.st-aboutus-heading__toptext {
  background-image: url("/assets/img/common/st-aboutus__heading.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  display: block;
  font-family: "Futura", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 16px;
}

.st-aboutus-heading__label {
  color: #E60012;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .st-aboutus-heading__label {
    font-size: 1.25rem;
  }
}

/*------------------------------
** メディアリンク
* 文字が画像に重なる、矢印付き
------------------------------*/
.st-aboutus-mediaLink {
  position: relative;
  display: block;
  color: #262626;
  pointer-events: none;
}

.st-aboutus-mediaLink__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.st-aboutus-mediaLink__image {
  display: block;
}

@media screen and (min-width: 641px) {
  .st-aboutus-mediaLink__image {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    pointer-events: auto;
  }
  .st-aboutus-mediaLink__image:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.st-aboutus-mediaLink__labelBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  z-index: 10;
}

.st-aboutus-mediaLink__labelMain {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.st-aboutus-mediaLink__labelSub {
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  font-style: bold;
}

.st-aboutus-mediaLink__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("/assets/img/common/icon-st-aboutus-mediaLink.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 48px;
  width: 48px;
}

/*------------------------------------------------------------
  ** フッター
------------------------------------------------------------*/
/*------------------------------
  ** フッター用レイアウト
------------------------------*/
.st-footer__pageTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  padding: 0 32px;
  background-color: #E60012;
}

@media screen and (max-width: 640px) {
  .st-footer__pageTop {
    padding: 0 16px;
  }
}

.st-footer__content {
  padding: 48px 24px;
  background-color: #4E575C;
}

@media screen and (max-width: 640px) {
  .st-footer__content {
    padding: 40px 24px;
  }
}

.st-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1150px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .st-footer__inner {
    display: block;
  }
}

.st-footer__inner--multilingual {
  display: block;
}

.st-footer__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 640px) {
  .st-footer__link {
    margin-bottom: 50px;
  }
}

.st-footer__info {
  width: 250px;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .st-footer__info {
    width: 100%;
  }
}

.st-footer__info--multilingual {
  margin: auto;
}

.st-footer__contact {
  display: inline-block;
  width: 188px;
  margin-bottom: 26px;
}

@media screen and (max-width: 640px) {
  .st-footer__copyright {
    text-align: center;
  }
}

.st-footer__spLogo {
  max-width: 236px;
  margin: 0 auto 35px auto;
}

.st-footer__spButton {
  max-width: 240px;
  margin: 0 auto 44px auto;
}

/*------------------------------
  ** ページトップリンク
------------------------------*/
.st-footer-pageTopLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  text-decoration: none;
}

@media screen and (min-width: 641px) {
  .st-footer-pageTopLink {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-footer-pageTopLink:hover {
    opacity: 0.7;
  }
}

.st-footer-pageTopLink__label {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  letter-spacing: 0.06em;
  text-decoration: none;
}

@media screen and (max-width: 640px) {
  .st-footer-pageTopLink__label {
    font-size: 0.71875rem;
  }
}

/*------------------------------
  ** メインリンク
------------------------------*/
.st-footer-mainLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .st-footer-mainLink {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.st-footer-mainLink__item {
  margin-bottom: 20px;
  padding-right: 40px;
}

@media screen and (max-width: 640px) {
  .st-footer-mainLink__item {
    width: calc(50% - 11px);
    margin-bottom: 0;
    padding-right: 0;
  }
  .st-footer-mainLink__item:nth-child(n+3) {
    margin-top: -1px;
  }
}

.st-footer-mainLink__link {
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
}

.st-footer-mainLink__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .st-footer-mainLink__link {
    display: block;
    padding: 30px 10px;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
  }
}

.st-footer-mainLink__linkArrow {
  display: none;
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
}

@media screen and (max-width: 640px) {
  .st-footer-mainLink__linkArrow {
    display: block;
  }
}

@media screen and (max-width: 320px) {
  .st-footer-mainLink__linkArrow {
    display: none;
  }
}

.st-footer-mainLink--multilingual {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.st-footer-mainLink--multilingual .st-footer-mainLink__item {
  display: inline-block;
  padding: 0 30px;
}

@media screen and (max-width: 640px) {
  .st-footer-mainLink--multilingual {
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .st-footer-mainLink--multilingual .st-footer-mainLink__item {
    width: calc(50% - 11px);
    display: block;
    padding: 0;
  }
  .st-footer-mainLink--multilingual .st-footer-mainLink__item .st-footer-mainLink__linkLabel {
    font-size: 0.78125rem;
  }
}

/*------------------------------
  ** サブリンク
------------------------------*/
.st-footer-subLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .st-footer-subLink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.st-footer-subLink__item {
  position: relative;
  margin-top: 20px;
  padding-right: 36px;
}

.st-footer-subLink__item::after {
  position: absolute;
  right: 18px;
  top: 4px;
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  background-color: #FFF;
}

.st-footer-subLink__item:last-child::after {
  content: none;
}

@media screen and (max-width: 640px) {
  .st-footer-subLink__item {
    padding-right: 18px;
  }
  .st-footer-subLink__item::after {
    right: 9px;
  }
}

.st-footer-subLink__link {
  font-size: 0.75rem;
  color: #FFF;
  text-decoration: none;
}

.st-footer-subLink__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .st-footer-subLink__link {
    font-size: 0.625rem;
  }
}

/*------------------------------
  ** コピーライト
------------------------------*/
.st-footer-copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  color: #FFF;
  letter-spacing: 0.1em;
}

/*------------------------------------------------------------
  ** ヘッダー
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 90px;
  background-color: #FFF;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1040px) {
  .st-header {
    height: 60px;
  }
}

.st-header__logo {
  width: 268px;
  margin-left: 30px;
}

@media screen and (max-width: 1280px) {
  .st-header__logo {
    width: 189px;
    margin-right: 12px;
    margin-left: 12px;
  }
}

.st-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .st-header__menu {
    display: none;
  }
}

@media screen and (min-width: 1041px) {
  .st-header__spMenuTrigger {
    display: none;
  }
}

.st-header__pcMenu {
  position: absolute;
  left: 0;
  top: 90px;
  display: none;
  width: 100%;
}

/*------------------------------
  ** ロゴ
------------------------------*/
.st-header-logo__link {
  display: block;
}

@media screen and (min-width: 641px) {
  .st-header-logo__link {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-logo__link:hover {
    opacity: 0.7;
  }
}

/*------------------------------
  ** ナビゲーションリスト
------------------------------*/
.st-header-nav {
  height: 100%;
}

.st-header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.st-header-nav__listItem {
  height: 100%;
}

.st-header-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 20px;
  font-weight: 700;
  color: #262626;
  text-decoration: none;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .st-header-nav__link {
    -webkit-transition-property: color background-color;
    transition-property: color background-color;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-nav__link:hover {
    color: #FFF;
    background-color: #4E575C;
  }
}

@media screen and (max-width: 1280px) {
  .st-header-nav__link {
    padding: 0 15px;
    font-size: 0.875rem;
  }
}

.st-header-nav__link[aria-expanded="true"] {
  color: #FFF;
  background-color: #4E575C;
}

.st-header-nav__link[aria-expanded="true"]::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4E575C;
}

/*------------------------------
  ** 言語選択
------------------------------*/
.st-header-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 20px;
}

.st-header-lang__item {
  position: relative;
  padding-right: 18px;
}

.st-header-lang__item::after {
  position: absolute;
  right: 6px;
  top: 0;
  content: '/';
  display: inline-block;
  font-weight: 400;
  color: #BEBEBE;
}

.st-header-lang__item:last-child {
  padding-right: 0;
}

.st-header-lang__item:last-child::after {
  content: none;
}

.st-header-lang__link {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #BEBEBE;
  text-decoration: none;
}

.st-header-lang__link--active {
  color: #262626;
}

@media screen and (min-width: 641px) {
  .st-header-lang__link {
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-lang__link:hover {
    color: #262626;
  }
}

/*------------------------------
  ** 検索
------------------------------*/
.st-header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100%;
  background-color: #E60012;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .st-header-search {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-search:hover {
    opacity: 0.7;
  }
}

.st-header-search__inner {
  display: block;
  text-align: center;
}

.st-header-search__icon {
  display: block;
  width: 21px;
  margin: 0 auto 13px auto;
}

.st-header-search__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFF;
}

/*------------------------------
  ** お問い合わせ
------------------------------*/
.st-header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100%;
  text-decoration: none;
  background-color: #4E575C;
}

@media screen and (min-width: 641px) {
  .st-header-contact {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-contact:hover {
    opacity: 0.7;
  }
}

.st-header-contact__icon {
  width: 23px;
  margin: 4px auto 17px auto;
}

.st-header-contact__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFF;
}

/*------------------------------
  ** SPメニュートリガー
------------------------------*/
.st-header-spMenuTrigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  background-color: #4E575C;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .st-header-spMenuTrigger {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-header-spMenuTrigger:hover {
    opacity: 0.7;
  }
}

.st-header-spMenuTrigger__inner {
  display: block;
  width: 23px;
  height: calc(2px * 3 + 4px * 2);
}

.st-header-spMenuTrigger__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.st-header-spMenuTrigger__iconBar {
  position: absolute;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.st-header-spMenuTrigger__iconBar:nth-child(1) {
  top: 0;
}

.st-header-spMenuTrigger__iconBar:nth-child(2) {
  top: calc(2px + 4px);
}

.st-header-spMenuTrigger__iconBar:nth-child(3) {
  top: calc(2px + 4px + 2px + 4px);
}

.st-header-spMenuTrigger[aria-expanded="true"] .st-header-spMenuTrigger__iconBar:nth-child(1) {
  top: calc(2px + 4px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.st-header-spMenuTrigger[aria-expanded="true"] .st-header-spMenuTrigger__iconBar:nth-child(2) {
  top: calc(2px + 4px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.st-header-spMenuTrigger[aria-expanded="true"] .st-header-spMenuTrigger__iconBar:nth-child(3) {
  top: 200%;
  opacity: 0;
}

/*------------------------------------------------------------
  ** ローディング画面
------------------------------------------------------------*/
.st-loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: #FFF;
}

.st-loading__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

/*------------------------------
  ** 菱形
------------------------------*/
.st-loading-diamond {
  position: relative;
  display: none;
  width: 64px;
  height: 64px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
  -webkit-transform: rotateX(45deg) rotateZ(45deg);
          transform: rotateX(45deg) rotateZ(45deg);
  overflow: hidden;
}

.st-loading-diamond--active {
  display: block;
}

.st-loading-diamond--active .st-loading-diamond__vertical::before {
  position: absolute;
  left: 0;
  bottom: -100%;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #E60012;
  -webkit-animation-name: loading-left;
          animation-name: loading-left;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.st-loading-diamond--active .st-loading-diamond__vertical::after {
  position: absolute;
  right: 0;
  top: -100%;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #E60012;
  -webkit-animation-name: loading-right;
          animation-name: loading-right;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.st-loading-diamond--active .st-loading-diamond__horizontal::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E60012;
  -webkit-animation-name: loading-top;
          animation-name: loading-top;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.st-loading-diamond--active .st-loading-diamond__horizontal::after {
  position: absolute;
  right: -100%;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E60012;
  -webkit-animation-name: loading-bottom;
          animation-name: loading-bottom;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@keyframes loading-left {
  0% {
    bottom: -100%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

@keyframes loading-right {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes loading-top {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes loading-bottom {
  0% {
    right: -100%;
  }
  50% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}

/*------------------------------------------------------------
  ** 下層共通
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-lower-layout {
  padding-bottom: 64px;
  background-color: #FFF;
}

/*------------------------------
  ** メインビジュアル
------------------------------*/
.st-lower-mv {
  position: relative;
  height: 15vw;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .st-lower-mv {
    height: 53.3334vw;
    margin-bottom: 16px;
  }
}

.st-lower-mv__heading {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.st-lower-mv__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.st-lower-mv__visualRed {
  position: relative;
  z-index: 1;
  width: calc((100vw - 1024px) / 2 + 350px);
  background-color: #E60012;
}

@media screen and (max-width: 1040px) {
  .st-lower-mv__visualRed {
    width: 350px;
  }
}

@media screen and (max-width: 960px) {
  .st-lower-mv__visualRed {
    display: none;
  }
}

.st-lower-mv__visualImage {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .st-lower-mv__visualImage {
    margin-bottom: 45px;
  }
}

.st-lower-mv__image {
  position: absolute;
}

.st-lower-mv__image--company {
  top: -6.25vw;
  left: -2.5vw;
  max-width: calc(100% + 2.5vw);
}

@media screen and (max-width: 960px) {
  .st-lower-mv__image--company {
    top: -1vw;
  }
}

.st-lower-mv__image--products {
  top: -15vw;
  left: -0.5vw;
  max-width: calc(100% + 0.5vw);
}

@media screen and (max-width: 960px) {
  .st-lower-mv__image--products {
    top: -1vw;
  }
}

.st-lower-mv__image--csr {
  top: -10vw;
  left: -1vw;
  max-width: calc(100% + 1vw);
}

@media screen and (max-width: 960px) {
  .st-lower-mv__image--csr {
    top: -1vw;
  }
}

.st-lower-mv__image--recruit {
  top: -9vw;
  left: -6vw;
  max-width: calc(100% + 6vw);
}

@media screen and (max-width: 960px) {
  .st-lower-mv__image--recruit {
    top: -1vw;
  }
}

.st-lower-mvHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #FFF;
}

.st-lower-mvHeading__label {
  width: 350px;
  padding-right: 32px;
  font-size: 2.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  .st-lower-mvHeading {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .st-lower-mvHeading__label {
    bottom: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-height: 90px;
    padding: 24px;
    font-size: 2rem;
    color: #FFF;
    background-color: #E60012;
  }
}

/*------------------------------
  ** パンくず
------------------------------*/
.st-lower-breadCrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  margin-bottom: 64px;
  background-color: #F0F0F0;
  overflow-x: auto;
}

@media screen and (max-width: 960px) {
  .st-lower-breadCrumb {
    margin-bottom: 43px;
    background-color: #FFF;
  }
}

.st-lower-breadCrumb__list {
  width: 100%;
  white-space: nowrap;
  font-size: 0.8125rem;
}

.st-lower-breadCrumb__listItem {
  display: inline-block;
}

.st-lower-breadCrumb__listItem::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 9px;
  background-image: url("/assets/img/common/icon-mountainR--black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 9px;
}

.st-lower-breadCrumb__listItem:last-child::after {
  content: none;
}

.st-lower-breadCrumb__link {
  color: #262626;
  text-decoration: none;
}

.st-lower-breadCrumb__link:hover {
  text-decoration: underline;
}

.st-lower-breadCrumb--white {
  margin-bottom: 40px;
  background-color: #FFF;
}

/*------------------------------------------------------------
  ** PCメニュー
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-pcMenu {
  padding: 20px 0;
  background-color: #4E575C;
}

.st-pcMenu__inner {
  position: relative;
  margin: 0 200px;
}

.st-pcMenu__item {
  display: none;
}

.st-pcMenu__head {
  height: 56px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #FFF;
}

.st-pcMenu__heading {
  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;
  height: 100%;
}

.st-pcMenu__closer {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

/*------------------------------
  ** 閉じるボタン
------------------------------*/
.st-pcMenu-closeButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #E60012;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .st-pcMenu-closeButton {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-pcMenu-closeButton:hover {
    opacity: 0.7;
  }
}

.st-pcMenu-closeButton__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.st-pcMenu-closeButton__icon::before {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.st-pcMenu-closeButton__icon::after {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*------------------------------
  ** トップリンク
------------------------------*/
.st-pcMenu-topLink {
  position: relative;
  padding-left: 16px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
}

.st-pcMenu-topLink::before {
  position: absolute;
  left: 0;
  top: 4px;
  content: '';
  width: 7px;
  height: 11px;
  background-image: url("/assets/img/common/icon-arrowRightLarge--white.svg");
  background-repeat: no-repeat;
}

.st-pcMenu-topLink:hover {
  text-decoration: underline;
}

.st-pcMenu-topLink--notLink {
  pointer-events: none;
}

.st-pcMenu-topLink--notLink::before {
  background: none;
}

/*------------------------------
  ** サブメニューリスト
------------------------------*/
.st-pcMenu-subList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 90px;
}

.st-pcMenu-subList__item {
  margin-right: 64px;
  margin-bottom: 24px;
}

.st-pcMenu-subList__item:last-child {
  margin-bottom: 12px;
}

.st-pcMenu-subList__link {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
}

.st-pcMenu-subList__link::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: '';
  width: 6px;
  height: 9px;
  background-image: url("/assets/img/common/icon-arrowRightSmall--white.svg");
  background-repeat: no-repeat;
}

.st-pcMenu-subList__link:hover {
  text-decoration: underline;
}

/*------------------------------
  ** 検索
------------------------------*/
.st-pcMenu-search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------------------------------
  ** サイト
------------------------------------------------------------*/
.st-site {
  padding-top: 90px;
}

@media screen and (max-width: 1040px) {
  .st-site {
    padding-top: 60px;
  }
}

/*------------------------------------------------------------
  ** スペシャルコンテンツ共通
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-special-layout {
  background-color: #FFF;
}

.st-special-layout .co-col2__item:nth-child(n+3) {
  margin-top: 24px;
}

.st-special-layout .co-text {
  line-height: 1.7;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .st-special-layout .co-text {
    margin-bottom: 20px;
  }
}

/*------------------------------
  ** メインビジュアル
------------------------------*/
.st-special-mv {
  position: relative;
}

@media screen and (max-width: 640px) {
  .st-special-mv {
    overflow: hidden;
    margin-bottom: 16px;
  }
}

.st-special-mv__headingBox {
  background-image: url("/assets/img/common/stSpecialMV.png");
  background-size: 260px auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .st-special-mv__headingBox {
    background: none;
    display: block;
    position: relative;
    padding: 155px 20px 0;
    z-index: 10;
  }
}

@media screen and (max-width: 640px) {
  .st-special-mv__headingInnerBox {
    background-color: #E60012;
    padding: 33px 20px 30px;
  }
}

@media screen and (max-width: 640px) {
  .st-special-mv__mainImage {
    display: none;
  }
}

.st-special-mv__mainImageSP {
  display: none;
}

@media screen and (max-width: 640px) {
  .st-special-mv__mainImageSP {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.st-special-mv__heading {
  text-align: center;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
  .st-special-mv__heading {
    font-size: 1.5rem;
  }
}

.st-special-mv__description {
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .st-special-mv__description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

/*------------------------------
  ** リンクボタン
------------------------------*/
.st-special-siteLink__button {
  width: 100%;
  max-width: 238px;
  margin: 0 auto;
}

/*------------------------------
  ** 見出しA
  * TOPICS00がつく
------------------------------*/
.st-special-headingA {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.st-special-headingA__toptext {
  background-image: url("/assets/img/common/spHeadingA.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.st-special-headingA__label {
  color: #E70A18;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .st-special-headingA {
    margin-bottom: 20px;
  }
  .st-special-headingA__toptext {
    margin-bottom: 8px;
  }
}

/*------------------------------
  ** 見出しB
  * 赤上下線あり。
------------------------------*/
.st-special-headingB {
  border-top: 1px solid #E70A18;
  border-bottom: 1px solid #E70A18;
  color: #E70A18;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 40px;
  padding-bottom: 2px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .st-special-headingB {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}

/*------------------------------
  ** 見出しC
  * 赤文字のみ。
------------------------------*/
.st-special-headingC {
  color: #E70A18;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 16px;
  padding-bottom: 2px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .st-special-headingC {
    font-size: 1.125rem;
  }
}

/*------------------------------
  ** 見出しD
  * 黒文字のみ。
------------------------------*/
.st-special-headingD {
  color: #262626;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 10px;
  text-align: center;
}

/*------------------------------
  ** テーブルA
  * 画面サイズが小さい時は、thとtdが縦積み。
------------------------------*/
.st-special-tableA table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.st-special-tableA th,
.st-special-tableA td {
  padding: 20px 18px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .st-special-tableA th,
  .st-special-tableA td {
    font-size: 0.875rem;
  }
}

.st-special-tableA th {
  width: 280px;
}

.st-special-tableA thead {
  text-align: center;
  color: #fff;
}

.st-special-tableA thead th {
  background-color: #434C51;
  border-right: 1px solid #fff;
}

.st-special-tableA thead td {
  border-right: 1px solid #fff;
  background-color: rgba(67, 76, 81, 0.75);
}

.st-special-tableA thead td:last-child {
  border-right-color: rgba(67, 76, 81, 0.75);
}

.st-special-tableA tbody th {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background-color: #F0F0F0;
}

.st-special-tableA tbody th:last-of-type {
  border-right: none;
}

.st-special-tableA tbody td {
  border-right: 1px solid #D4D7D9;
  border-bottom: 1px solid #D4D7D9;
  background-color: #FFF;
}

.st-special-tableA tbody tr:last-child th {
  border-bottom-color: #F0F0F0;
}

.st-special-tableA.js-scrollable table {
  width: 1024px;
}

@media screen and (max-width: 640px) {
  .st-special-tableA:not(.js-scrollable) {
    display: block;
  }
  .st-special-tableA:not(.js-scrollable) tbody,
  .st-special-tableA:not(.js-scrollable) tr,
  .st-special-tableA:not(.js-scrollable) th,
  .st-special-tableA:not(.js-scrollable) td {
    display: block;
    width: 100%;
  }
  .st-special-tableA:not(.js-scrollable) thead {
    display: none;
  }
  .st-special-tableA:not(.js-scrollable) tbody th,
  .st-special-tableA:not(.js-scrollable) tbody td {
    padding: 10px 12px;
  }
  .st-special-tableA:not(.js-scrollable) tbody th {
    text-align: left;
    border: none;
  }
  .st-special-tableA:not(.js-scrollable) tbody td {
    border-right: 1px solid #D4D7D9;
    border-left: 1px solid #D4D7D9;
    border-bottom: none;
  }
  .st-special-tableA:not(.js-scrollable) tbody tr:last-child td {
    border-bottom: 1px solid #D4D7D9;
  }
}

/*------------------------------------------------------------
  ** SPメニュー
------------------------------------------------------------*/
/*------------------------------
  ** レイアウト
------------------------------*/
.st-spMenu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  display: none;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #4E575C;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.st-spMenu__head {
  padding: 30px 16px;
  border-top: 1px solid #4E575C;
  background-color: #E9E9E9;
}

.st-spMenu__headMenu {
  margin-bottom: 20px;
}

.st-spMenu__body {
  padding: 0 16px 30px 16px;
  background-color: #4E575C;
}

.st-spMenu__listBody {
  display: none;
}

.st-spMenu__searchForm {
  display: none;
}

/*------------------------------
  ** 上部メニュー
------------------------------*/
.st-spMenu-headMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 60px;
}

.st-spMenu-headMenu__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

/*------------------------------
  ** 検索フォーム
------------------------------*/
.st-spMenu-searchForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.st-spMenu-searchForm__keyword {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.st-spMenu-searchForm__input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 1px solid #B3B3B3;
  border-right: none;
}

.st-spMenu-searchForm__button {
  width: 60px;
  height: 60px;
}

/*------------------------------
  ** 言語選択
------------------------------*/
.st-spMenu-lang {
  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;
  height: 85px;
  padding: 0 20px;
}

.st-spMenu-lang__item {
  position: relative;
  padding-right: 18px;
}

.st-spMenu-lang__item::after {
  position: absolute;
  right: 6px;
  top: 0;
  content: '/';
  display: inline-block;
  font-weight: 400;
  color: #BEBEBE;
}

.st-spMenu-lang__item:last-child {
  padding-right: 0;
}

.st-spMenu-lang__item:last-child::after {
  content: none;
}

.st-spMenu-lang__link {
  font-size: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #BEBEBE;
  text-decoration: none;
}

.st-spMenu-lang__link--active {
  color: #FFF;
}

/*------------------------------
  ** ナビゲーション
------------------------------*/
.st-spMenu-nav__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: -1px;
  padding: 16px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFF;
  border: none;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.st-spMenu-nav__button::before {
  position: absolute;
  right: 10px;
  top: calc(50% - 2px / 2);
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #FFF;
}

.st-spMenu-nav__button::after {
  position: absolute;
  right: 10px;
  top: calc(50% - 2px / 2);
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.st-spMenu-nav__button[aria-expanded="true"]::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.st-spMenu-nav__inner {
  display: none;
}

.st-spMenu-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-spMenu-nav__listItem {
  width: calc(50% - 15px * (2 - 1) / 2);
  margin-right: 15px;
  border-bottom: 1px solid #E6E6E6;
}

.st-spMenu-nav__listItem:nth-child(2n), .st-spMenu-nav__listItem:last-child {
  margin-right: 0;
}

.st-spMenu-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 10px;
  font-size: 0.75rem;
  color: #FFF;
  text-decoration: none;
}

/*------------------------------------------------------------
  ** WordPressの投稿で構築する領域
  * WordPressのデフォルトCSSに、必要なスタイルのみを追加・オーバーライドしています。
------------------------------------------------------------*/
.st-wp h2:is(not([class]), .st-wp h2.wp-block-heading) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  padding-bottom: 11px;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #E60012;
  margin-top: 56px;
}

@media screen and (max-width: 781px) {
  .st-wp h2:not([class]), .st-wp h2.wp-block-heading) {
    padding-bottom: 14px;
    font-size: 1.375rem;
  }
}


.st-wp h3:is(not([class]), .st-wp h3.wp-block-heading) {
  position: relative;
  margin-bottom: 18px;
  padding-left: 24px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #262626;
  text-decoration: none;
  margin-top: 35px;
}

.st-wp h3:is(not([class]), .wp-block-heading)::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #E60012;
}

.st-wp h3:is(not([class])[href], .wp-block-heading)::hover {
  text-decoration: underline;
}

.st-wp h4:is(not([class]), .st-wp h4.wp-block-heading) {
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #E60012;
  margin-top: 20px;
}

.st-wp h5:is(not([class]), .st-wp h5.wp-block-heading) {
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
}

.st-wp p:not([class]) {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .st-wp p:not([class]) {
    font-size: 0.875rem;
  }
}

.st-wp p:not([class]) + .st-wp p:not([class]) {
  margin-top: 13px;
}

.st-wp a:not([class]) {
  color: #262626;
}

.st-wp a:not([class]):hover {
  text-decoration: none;
}

.st-wp a:not([class])[target="_blank"]::after {
  position: relative;
  top: 2px;
  content: '';
  display: inline-block;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  margin: 0 8px;
  background-image: url("/assets/img/common/icon-blank--black.png");
  background-repeat: no-repeat;
  background-size: 16px;
}

.st-wp a:not([class])[target="_blank"].is-style-pdf::after {
  min-width: 13px;
  max-width: 13px;
  height: 16px;
  margin: 0 8px;
  background-image: url("/assets/img/common/icon-pdf--red.svg");
  background-repeat: no-repeat;
  background-size: 13px;
}

.st-wp ul:not([class]) {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .st-wp ul:not([class]) {
    font-size: 0.875rem;
  }
}

.st-wp ul:not([class]) li:not([class]) {
  position: relative;
  margin-top: 2px;
  padding-left: 1.2em;
  font-size: inherit;
  line-height: 2;
}

.st-wp ul:not([class]) li:not([class]):last-child {
  margin-bottom: 0;
}

.st-wp ul:not([class]) li:not([class])::before {
  position: absolute;
  left: calc(0.5em - 10px / 2);
  top: calc(0.5em * 2 - 10px / 2);
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #E60012;
  border-radius: 50%;
}

.st-wp ol:not([class]) {
  margin-top: 24px;
  margin-bottom: 24px;
  counter-reset: number 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .st-wp ol:not([class]) {
    font-size: 0.875rem;
  }
}

.st-wp ol:not([class]) li:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}

.st-wp ol:not([class]) li:not([class])::before {
  display: inline-block;
  min-width: 1.8em;
  counter-increment: number 1;
  content: counter(number) ". ";
}

.st-wp .wp-block-table {
  margin-top: 56px;
  margin-bottom: 56px;
  overflow: auto;
}

.st-wp .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .st-wp .wp-block-table table {
    min-width: 640px;
  }
}

.st-wp .wp-block-table table th, .st-wp .wp-block-table table td {
  padding: 12px 24px;
  font-size: 0.9375rem;
  line-height: 2.125;
  vertical-align: middle;
}

@media screen and (max-width: 960px) {
  .st-wp .wp-block-table table th, .st-wp .wp-block-table table td {
    font-size: 0.875rem;
    line-height: 1.875;
  }
}

.st-wp .wp-block-table table th {
  color: #FFF;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #4E575C;
  border-right-color: #FFF;
  background-color: #4E575C;
}

.st-wp .wp-block-table table th:last-child {
  border-right-color: #4E575C;
}

.st-wp .wp-block-table table td {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #B2B2B2;
  background-color: #FFF;
}

.st-wp .wp-block-table table thead + tbody td {
  border-width: 0 1px 1px 1px;
}

.st-wp .wp-block-table figcaption {
  margin-top: 7px;
  font-size: 0.9375rem;
  line-height: 2.125;
}

@media screen and (max-width: 600px) {
  .st-wp .wp-block-table figcaption {
    font-size: 0.875rem;
    line-height: 1.875;
  }
}

.st-wp .wp-block-table.is-style-row thead th:first-child {
  border-width: 0 1px 1px 1px;
  border-bottom-color: #FFF;
}

.st-wp .wp-block-table.is-style-row td {
  border-width: 1px;
}

.st-wp .wp-block-table.is-style-row td:first-child {
  width: 240px;
  font-weight: 700;
  color: #FFF;
  border-width: 0 0 1px 0;
  border-bottom-color: #FFF;
  background-color: #4E575C;
}

.st-wp .wp-block-table.is-style-row td:nth-child(2) {
  border-left: none;
}

.st-wp .wp-block-table.is-style-row tr:first-child > td:first-child {
  border-width: 1px 0 1px 0;
  border-top-color: #4E575C;
}

.st-wp .wp-block-table.is-style-row tr:last-child > td:first-child {
  border-bottom-color: #4E575C;
}

.st-wp .wp-block-table.is-style-matrix thead th {
  border-bottom: 1px solid #FFF;
}

.st-wp .wp-block-table.is-style-matrix td {
  border-width: 1px;
}

.st-wp .wp-block-table.is-style-matrix td:first-child {
  width: 200px;
  font-weight: 700;
  color: #FFF;
  border-width: 0 0 1px 0;
  border-bottom-color: #FFF;
  background-color: #4E575C;
}

.st-wp .wp-block-table.is-style-matrix td:nth-child(2) {
  border-left: none;
}

.st-wp .wp-block-table.is-style-matrix tr:last-child > td:first-child {
  border-bottom-color: #4E575C;
}

.st-wp .wp-block-table.is-style-matrix tr:first-child td:first-child {
  border-width: 1px 0 1px 0;
  border-top-color: #4E575C;
}

.st-wp .wp-block-table.is-style-matrix thead + tbody tr:first-child td:first-child {
  border-width: 0 0 1px 0;
  border-top: 1px solid #4E575C;
}

.st-wp h5 + .wp-block-table {
  margin-top: 16px;
}

.st-wp h3 + .wp-block-table {
  margin-top: 18px;
}

.st-wp .wp-block-button {
  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: 32px;
}

.st-wp .wp-block-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 440px;
  min-height: 42px;
  padding: 12px 24px;
  text-decoration: none;
  color: #FFF;
  border: none;
  border-radius: 2em;
  background-color: #E60012;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 782px) {
  .st-wp .wp-block-button__link {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .st-wp .wp-block-button__link:hover {
    opacity: 0.7;
  }
}

.st-wp .wp-block-button__link[target="_blank"]::after {
  top: -2px;
  content: '';
  display: inline-block;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  margin: 0 8px;
  background-image: url("/assets/img/common/icon-blank--white.png");
  background-repeat: no-repeat;
  background-size: 16px;
}

.st-wp .wp-block-image {
  margin-top: 24px;
}

.st-wp .wp-block-image figucaption {
  display: block;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .st-wp .wp-block-image figucaption {
    font-size: 0.875rem;
  }
}

.st-wp .wp-block-media-text {
  grid-template-columns: 320px 1fr;
  margin-top: 56px;
  margin-bottom: 56px;
}

@media screen and (max-width: 600px) {
  .st-wp .wp-block-media-text {
    display: block;
  }
}

.st-wp .wp-block-media-text__content {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
  padding: 0 0 0 20px !important;
}

@media screen and (max-width: 600px) {
  .st-wp .wp-block-media-text__content {
    padding: 0 !important;
  }
}

.st-wp .wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 320px;
}

.st-wp .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 20px 0 0 !important;
}

@media screen and (max-width: 600px) {
  .st-wp .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    margin-top: 12px;
    padding: 0;
  }
}

.st-wp h5 + .wp-block-media-text {
  margin-top: 16px;
}

.st-wp .wp-block-columns {
  margin-top: 56px;
  margin-bottom: 56px;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .st-wp .wp-block-columns .wp-block-column:nth-child(n+3) {
    margin-top: 24px;
  }
}

@media screen and (max-width: 600px) {
  .st-wp .wp-block-columns .wp-block-column:nth-child(n+2) {
    margin-top: 24px;
  }
}

.st-wp .wp-block-columns .wp-block-image {
  margin: 0;
}

.st-wp .co-mediaLayoutA {
  margin-top: 56px;
  margin-bottom: 24px;
}

/*==========================================================================================
  ** utility
  * 単体のclassで機能するスタイル。
==========================================================================================*/
/*------------------------------
  ** ブロック要素の中央寄せ
------------------------------*/
.ut-centering-block {
  margin-right: auto;
  margin-left: auto;
}

/*------------------------------
  ** 横幅100%画像
------------------------------*/
.ut-full-image {
  width: 100%;
}

/*------------------------------
  ** インラインブロック
------------------------------*/
.ut-inline-block {
  display: inline-block;
}

/*------------------------------
  ** エラー時のインプット部品
------------------------------*/
.ut-input-error {
  border-color: #E60012;
}

/*------------------------------
  上余白「大」
------------------------------*/
.ut-marginTop-L {
  margin-top: 64px;
}

/*------------------------------
  上余白「大」（行間考慮ver.）
------------------------------*/
.ut-marginTop-L2 {
  margin-top: 48px;
}

/*------------------------------
  上余白「中」
------------------------------*/
.ut-marginTop-M {
  margin-top: 32px;
}

/*------------------------------
  上余白「中」（行間考慮ver.）
------------------------------*/
.ut-marginTop-M2 {
  margin-top: 24px;
}

/*------------------------------
  ** 上余白「小」A
------------------------------*/
.ut-marginTop-S {
  margin-top: 16px;
}

/*------------------------------
  ** 上余白「小」（行間考慮ver.）
------------------------------*/
.ut-marginTop-S2 {
  margin-top: 8px;
}

/*------------------------------
  ** 非表示
------------------------------*/
.ut-none {
  display: none;
}

/*------------------------------
  ** 端末サイズ「極小」以下で非表示
------------------------------*/
@media screen and (max-width: 320px) {
  .ut-none-maxXS {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「小」以下で非表示
------------------------------*/
@media screen and (max-width: 640px) {
  .ut-none-maxS {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「小」より上で非表示
------------------------------*/
@media screen and (min-width: 321px) {
  .ut-none-minS {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「中」以下で非表示
------------------------------*/
@media screen and (max-width: 960px) {
  .ut-none-maxM {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「中」より上で非表示
------------------------------*/
@media screen and (min-width: 641px) {
  .ut-none-minM {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「大」以下で非表示
------------------------------*/
@media screen and (max-width: 1040px) {
  .ut-none-maxL {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「大」より上で非表示
------------------------------*/
@media screen and (min-width: 961px) {
  .ut-none-minL {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「極大」以下で非表示
------------------------------*/
@media screen and (max-width: 1280px) {
  .ut-none-maxXL {
    display: none;
  }
}

/*------------------------------
  ** 端末サイズ「極大」より上で非表示
------------------------------*/
@media screen and (min-width: 1041px) {
  .ut-none-minXL {
    display: none;
  }
}

/*------------------------------
  ** サイトの横幅
------------------------------*/
.ut-site-inner {
  max-width: calc(1024px + 24px * 2);
  margin: 0 auto;
  padding: 0 24px;
}

/*------------------------------
  ** 中央寄せテキスト
------------------------------*/
.ut-text-center {
  text-align: center;
}

/*------------------------------
  ** 強調テキスト
------------------------------*/
.ut-text-focus {
  color: #E60012;
}

/*------------------------------
  ** 左寄せテキスト
------------------------------*/
.ut-text-left {
  text-align: left;
}

/*==========================================================================================
  ** vendor
  * JSライブラリなどで必要な外部から持ってきたスタイル。
==========================================================================================*/
/*------------------------------------------------------------
  ** ScrollHint
------------------------------------------------------------*/
@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*------------------------------------------------------------
  ** Swiper
------------------------------------------------------------*/
/**
 * Swiper 6.4.11
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 6, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s transform,.2s top;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s right;
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
